Mizar32/RTC

Introduction

The Real Time Clock chip on Mizar32's add-on ethernet board keeps track of the time of day and the date, whether the Mizar32 is powered on or not. It does this using a crystal that vibrates at 32768 cycles per second, which it divides down to get a pulse that beats exactly once per second and uses this signal to keep the seconds, minutes and hours up to date, as well as the date, month and year.

Hardware view

The ethernet board has a 32768 HZ crystal and a DS1337 or a PCF8563 chip which is connected on the I2C bus. The two different chips have the same pin-out and almost identical functions; the reason we support both is due to a production error by one of our suppliers who printed DS1337 on the casing of a batch of PCF8563 chips.

Which actual chip is present is identified by the slave address that it responds to in the main I2C bus: the DS1337 responds to 7-bit decimal address 104, while the PCF8563 responds to slave address 81.

Both chips respond up to a speed of up to 400kHz on the I2C bus. We recommend using 100kHz, the default I2C that is set in eLua.

For the register layout and how to address the devices, please see their datasheets.

eLua view

Simplemachines has added a module to eLua to set the time and to read it.

This new module is not included in the standard 2012-01-23 Mizar32 eLua firmware and will be included in the next release.

Setting the time

You set the time using the function mizar32.rtc.set(t) where t is a table which can have any of the following fields present:

Field Value Meaning
sec 0-59 Seconds
min 0-59 Minutes
hour 0-23 Hours (24-hour clock)
day 1-31 Day of month
month 1-12 Calendar month
year 1900-2099 Year
wday 1-7 Day of week

When some fields are present but not others, mizar32.rtc.set() sets those parts of the time and date and leaves the other parts with the same value as they had before.

The day of the week field, wday, uses the following values to represent the seven days of the week:

Value Meaning
1 Sunday
2 Monday
3 Tuesday
4 Wednesday
5 Thursday
6 Friday
7 Saturday

It is up to you to write the correct value into this field; it is not set automatically from the date.

↑Jump back a section

Reading the current time and date

The function mizar32.rtc.get() returns a table with the seven fields described above.

The following code example makes a clock appear on the LCD display.

local t
mizar32.lcd.reset()
while true do
  t = mizar32.rtc.get()
  mizar32.lcd.goto( 1, 5 )
  mizar32.lcd.print( string.format("%02d:%02d:%02d",
                     t.hour, t.min, t.sec ) )
  mizar32.lcd.goto( 2, 4 )
  mizar32.lcd.print( string.format("%02d/%02d/%04d",
                     t.day, t.month, t.year ) )
end

Further reading

↑Jump back a section
Last modified on 23 August 2012, at 22:27