Shop OBEX P1 Docs P2 Docs Learn Events
My RTC clock set program seems to be corrupted — Parallax Forums

My RTC clock set program seems to be corrupted

I been using DS3231 RTCs for a long time but now even after a lot of checking I can't seem to make the setting program work. It just wants to read out zeros after programming. Don't know if I accidentally changed something. I had a computer crash in January and been rewriting a lot of things. Help would be appreciated. It is using 5 volts!

CON

  _clkmode = xtal1 + pll16x      '80 MHz system clock
  _xinfreq = 5_000_000

  SCL = 28
  SDA = 29

  RTC = %1101000




'Timbuf address registers
Seconds = 0
Minutes = 1
Hours   = 2
Day     = 3
Date    = 4
Month   = 5
Year    = 6

'Useful assignments

Sunday    = $01
Monday    = $02
Tuesday   = $03
Wednesday = $04
Thursday  = $05
Friday    = $06
Saturday  = $07

January   = $01
February  = $02
March     = $03
April     = $04
May       = $05
June      = $06
July      = $07
August    = $08
September = $09
October   = $10
November  = $11
December  = $12

OBJ

   PST  :   "Parallax Serial Terminal.spin"
   i2c  :   "I2C SPIN driver v1.4od"
VAR
  byte  Timbuf[7]
  byte answer

PUB  init

'  rtc.startx(sclpin, sdapin)      'startx(sclpin, sdapin)
  PST.start(115_200)
  waitcnt(clkfreq * 3 + cnt)

  I2C.init(SCL,SDA)


    PST.clear
    PST.str(string("Enter 'y' before 3 seconds if you want to set clock:"))
    answer := PST.CharIn
    if answer == "y"
      Settime
    PST.clear  'clear screen          ?????????
    waitcnt(clkfreq / 100 + cnt)
    time
PUB  settime | Idx, t, n      'probably don't need Idx or t


  PST.clear     'clear screen

  n:= 0
  PST.str(string("Enter year (00-99): "))
  repeat until n == $0D
    n := PST.CharIn
    if n => "0" and n =< "9"
      Timbuf[year] := Timbuf[year] << 4 + (n - "0")


  n := 0
  PST.str(string("Enter month (01-12): "))
  repeat until n == $0D
    n := PST.CharIn
    if n => "0" and n =< "9"
      Timbuf[month] := Timbuf[month] << 4 + (n - "0")

  n := 0
  PST.str(string("Enter date (01-31): "))
  repeat until n == $0D
    n := PST.CharIn
    if n => "0" and n =< "9"
      Timbuf[date] := Timbuf[date] << 4 + (n - "0")

  n:= 0
  PST.str(string("Enter hour (01-12) for 12 hr or (01- 23) for 24 hr): "))
  repeat until n == $0D
    n := PST.CharIn
    if n => "0" and n =< "9"
      Timbuf[hours] := (Timbuf[hours] << 4 + (n - "0"))


  PST.str(string("if 12 hour clock desired, press 'y' before 3 seconds:"))
                            'IF NOT PRESS ENTER
    answer := PST.CharIn
    if answer == "y"
      twelve_hour
    Else
      PST.newLine

  PST.str(string("if PM, press 'y' before 3 seconds:"))
 '                                 'IF NOT PRESS ENTER
    answer := PST.CharIn
    if answer == "y"
      afternoon
    Else
      PST.newLine

  n:= 0
  PST.str(string("Enter minutes (00-59): "))
  repeat until n == $0D
    n := PST.CharIn
    if n => "0" and n =< "9"
      Timbuf[minutes] := Timbuf[minutes] << 4 + (n - "0")

  n:= 0
  PST.str(string("Enter seconds (00-59): "))
  repeat until n == $0D
    n := PST.CharIn
    if n => "0" and n =< "9"
      Timbuf[seconds] := Timbuf[seconds] << 4 + (n - "0")

  n := 0
  PST.str(string("Enter Day of Week. Sun=01,M=02,T=03,W=04,TH=05,F=06,Sat=07 : "))
  repeat until n == $0D
    n := PST.CharIn
    if n => "0" and n =< "9"
      Timbuf[Day] := Timbuf[Day] << 4 + (n - "0")



  Timbuf := I2C.writebytes(RTC,Seconds,@Timbuf[seconds],7) '(device,address,dataAddress,bytes)
 ' PST.bin(timbuf,16)
  waitcnt(clkfreq/2+cnt)


PUB  time

  Repeat
    waitcnt(clkfreq/2+cnt)
    PST.clear    'clear screen
    I2C.readbytes(RTC,0,@Timbuf,7) '(device,address,dataAddress,bytes)
    PST.str(lookup(Timbuf[Day]:string("Sunday"),string("Monday"),string("Tuesday"),string("Wednesday"),string("Thursday"),string("Friday"),string("Saturday")))
    PST.str(string(" "))
    if Timbuf[Month] => $10
      Timbuf[month] -= $06
    PST.str(lookup(Timbuf[Month]:string("January"),string("February"),string("March"),string("April"),string("May"),string("June"),string("July"),string("August"),string("September"),string("October"),string("November"),string("December")))
    PST.str(string(" "))
    PST.hex(Timbuf[Date],2)
    PST.str (string(", "))
    PST.hex($2000 + (Timbuf[year]),4)
    PST.str(string(" "))
    if Timbuf[hours] & %0100_0000   'is true (ie not 0)         'if set for  12-hour time
      PST.hex(Timbuf[hours] & %0001_1111,2)
      PST.str(string(":"))
      PST.hex(Timbuf[minutes],2)
      PST.str(string(":"))
      PST.hex(Timbuf[seconds],2)
      PST.str(string(" "))
      if Timbuf[hours] & %0010_0000
        PST.str(string("pm"))
      else
        PST.str(string("am"))
    else     'if set for 23-hour time
      PST.hex(Timbuf[hours] & %0011_1111,2)
      PST.str(string(":"))
      PST.hex(Timbuf[minutes],2)
      PST.str(string(":"))
      PST.hex(Timbuf[seconds],2)

PUB  twelve_hour
  Timbuf[hours] += $40    'for 12 hour clock

PUB  afternoon
  Timbuf[hours] += $20      'for PM

 {
PRI Prompt(msg, CR)
  PST.str(msg)
  if CR
    PSTclear
 }

Comments

  • JonnyMacJonnyMac Posts: 9,256

    If you want to try another code set to verify that it's not a hardware problem, I've attached my DS3231 object. I've included my I2C object as well.

  • AGCBAGCB Posts: 340

    Can I use this on a Prop 1?

  • LtechLtech Posts: 383

    Yes it is for P1

    File extensions:

    .spin = P1
    .spin2 = P2

  • AGCBAGCB Posts: 340

    I tried to use your 'jm_ds3231_demo.spin2' from the library demos but get an error. Is there a spin1 version?

  • LtechLtech Posts: 383

    in post #2 you have it in the zip file

  • AGCBAGCB Posts: 340

    Is there a demo to go along with it?

  • JonnyMacJonnyMac Posts: 9,256
    edited 2025-04-03 18:45

    Why would you try to use Spin2 code on a P1? You could have spent 10 minutes converting it to Spin1 and would have learned a lot in the process....

  • JonnyMacJonnyMac Posts: 9,256
    edited 2025-03-31 17:37

    I fixed, refreshed, and uploaded DS3231 drivers and demos for the P1 and the P2 to ObEx.

    This is running on the P1:

  • AGCBAGCB Posts: 340

    We've been without power for 27 hours due to ice storm.

    I've tried everything and can't get it. 3 different Quickstart boards, 4 RTC modules Nothing works. I give up!

  • JonnyMacJonnyMac Posts: 9,256
    edited 2025-04-01 16:29

    Since I'm human, hence fallible, I downloaded the P1 archive from ObEx, unzipped it to a folder and ran it from there -- this would mean running all of the code that you have. The project tree shows all local files -- nothing from my master library.

    It works fine, so I don't think it's on my end.

    Things to check

    • Are you plugging into the correct pins? (The QuickStart can be difficult this way -- Parallax used to make plastic guides with the pin numbers.
    • Do you have SCL and SDA swapped? (I always use white for SCL and yellow for SDA to prevent problems.)
    • Are you running from a local folder? (Start there, them move the objects into your main library when you know things are working.)

  • RaymanRayman Posts: 15,051

    Guess one could also hook up a pullup resistor to 32kHz output pin and see if it has a pulse?
    If one put a 10 kOhm resistor between 3.3V and 32 kHz, guess I'd expect the DC voltage there to be 1.65 VDC.
    Just guessing, but seems like that's how it should be...

    Seems like we need a P1 board with a QWIIC connector to make this kind of thing easier for people...

  • RaymanRayman Posts: 15,051

    Guess should also make sure the RES\ pin isn't being pulled down somehow...

  • RaymanRayman Posts: 15,051

    @AGCB is it the Adafruit module you are using or something else?

  • JonnyMacJonnyMac Posts: 9,256
    edited 2025-04-03 19:10

    Seems like we need a P1 board with a QWIIC connector to make this kind of thing easier for people....

    I do that for myself, and agree that it would be good for Parallax to build accessories with the Qwiic socket.

    Attached is my latest P1 dev board. It's compatible with P2 accessory modules (I build a lot of custom boards in that format), and it has SAO (Silly Add-On for the hacker #BadgeLife community, Qwiic, Grove, and JST connectors. I changed from a standard 40-pin DIP socket on V1 to this double 2x20 arrangement so I can plug in the FLiP and have a female socket for every pin. This is not my idea -- I liberated it from an RPi Pico dev board.

    The second image is my V1 dev board with a DS3231 module I bought from Amazon.

    1920 x 1030 - 319K
    800 x 800 - 486K
  • AGCBAGCB Posts: 340

    I have genuine Parallax Quickstart boards sold by Radio Shack when they were still in business.

  • JonnyMacJonnyMac Posts: 9,256

    Yeah, me too -- and it still works. You're doing something wrong.

    800 x 800 - 314K
Sign In or Register to comment.