Page 3 of 6
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 15:30
by exxos
The control register seems to set 12/24H clock and DM for binary encoding..
cr.JPG
I currently have..
%00000010
So bit 1 high must mean 24H mode (hours do output 16 so must be in 24H mode currently)
DM bit 2 is low, low = shit encoding mode. So will see if I can flip it to binary mode....
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 15:31
by exxos
stephen_usher wrote: 24 Jun 2019 15:29
That's because it binary coded decimal.
I'm just calling it shit mode :)
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 15:42
by exxos
I have now set it to %00000100 for binary mode and 12H.. the values are stored (rebooted from power off to make sure) but its not changing anything time wise.. still showing 16 for the hour.. it does say I need to reinitialise for settings to work, but doesn't seem to say how to do that :roll:
EDIT:
I programed the clock to 11 Hours, 59mins, 0 seconds.. but oddly it set to 41mins.. then at some point shortly after it jumped to 12 hours, 0mins.. and now the AM/PM has changed to "-1" aka True (or logic 1) ... So not really sure its accepting being programed in binary :shrug:
EDIT2:
OK probably need to change my code now I changed the format :lol: :roll:
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 16:34
by exxos
:lol: Theres some good mistakes in the STOS manual.. confused the hell out of me this one... See who spots them ... ;) (BCLR)
IMG_4412.JPG
IMG_4413.JPG
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 16:42
by exxos
:WTF:
AM 11:59:59 to
PM 140:0:0
I've invented the 140 hour day! :excited: :excited:
IMG_4414.JPG
Guess I should clear out bit 7 :lol:
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 17:22
by JezC
Elements of this look very similar to using the NXP PCF8563 RTC that we use in our products... except that only uses BCD. :(
It has the same issues with upper (unused) bits in some registers reporting seemingly random values as the seconds/minutes values change.
What really makes it a complete swine is the I2C interface on top of the above. :mad:
You have my sympathy... hope you beat it into submission soon.
:chairsmack:
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 17:45
by exxos
JezC wrote: 24 Jun 2019 17:22
It has the same issues with upper (unused) bits in some registers reporting seemingly random values as the seconds/minutes values change.
Yeah I read something about that in the pdf.. looks like I need to check a "ready bit" before doing anything.. will get there in the end :)
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 17:46
by exxos
Behaving now 8-)
Gonna have to poke around in the NVRAM next me thinks...
IMG_4416.JPG
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 18:24
by exxos
Dang it.. need better software.. oh this gonna keep me busy for a bit.. well I'm cheating..so...
0000.jpg
Re: Reading & write to RTC 12887 ?
Posted: 24 Jun 2019 21:03
by exxos
Got a reply from Maxim finally.. Though kinda worked it out myself now..
R//W should be a 1 when preparing to Read from the address to be latched on the falling edge of AS latches the address state. R//W should be a 0 when preparing for a Write. The state of R//W should be set by the time of the falling edge of AS.
Your assumption is correct, the first part of the cycle is to set the address. The second part of the cycle is the read (for R//W=1) or write (for R//W=0).
Motorola bus timing has two parts, first setting the address then the data access. You can latch the address, using the falling edge of AS, while /CS is inactive high. To access data (read or write) you will need to drive /CS low. As long as the AS pin remains low, the address should remain latched. A rising edge on AS clears the selected address. Since you have latched the address on the previous /CS cycle, and since AS has not changed states, you should be able to process a read/write command (depending on your R//W state) on the subsequent /CS pulse.