RTC initialisation and wakeup from external events
If the Pyboard is woken from standby by the tamper pin X18, the RTC is reset to 1st January 2014 regardless of any setting performed in code.
It appears impossible to prevent this from Python as it occurs in rtc_init() which is called from main.c. The problem occurs because rtc_init() checks backup register 0 for a specific value 0x32f2 to see if the RTC has already been set. If the value is not correct it assumes the Pyboard has been powered up, sets the RTC to that date, and sets the value of backup register 0 to 0x32f2 to ensure that the RTC continues to run through reset events.
Unfortunately the tamper pin clears the backup registers, so on recovery from standby rtc_init() runs again, detects that the register does not hold 0x32f2 and resets the RTC.
I have produced a build where RTC initialisation occurs in the constructor. This has a boolean argument defaulting True: if present and set False, initialisation is inhibited. This allows the user to take control of the detection of boot events and initialisation of the RTC (power up can be detected by checking the contents of backup RAM which are unaffected by tamper events).
If the argument is absent or True initialisation and boot detection work as at present so existing code should be unaffected.
If this approach meets with approval I can submit a PR.
rtc.wakeup() behaves anomalously
The following sample does not behave as expected. The first and last LED flashes are of the correct duration, but the middle one is about 25% of that programmed. The problem seems to occur when a short delay is followed by a long one. Note that if in line 6 True is changed to False, the duration of the long flash is correct.
import pyb
rtc = pyb.RTC()
leds = tuple(pyb.LED(x) for x in range(1, 5)) # rgyb
for led in leds:
led.off()
if True:
x = 0
leds[x].on()
rtc.wakeup(1000)
pyb.stop()
rtc.wakeup(None)
leds[x].off()
x = 1
leds[x].on()
rtc.wakeup(15000) # far too short
pyb.stop()
rtc.wakeup(None)
leds[x].off()
x = 2
leds[x].on()
rtc.wakeup(400)
pyb.stop()
rtc.wakeup(None)
leds[x].off()
[edit]
The error is on this line
// set WUTIE to enable wakeup interrupts
// set WUTE to enable wakeup
// program WUCKSEL
RTC->CR |= (1 << 14) | (1 << 10) | (wucksel & 7);
Oring wucksel & 7 is leaving some bits set. This fixes it.
RTC->CR &= ~7;
RTC->CR |= (1 << 14) | (1 << 10) | (wucksel & 7);