mirror of https://github.com/ARMmbed/mbed-os.git
Fix for issue #8214
Change the base time value to more realistic: START_TIME = 1537789823 # GMT: Monday, 24 September 2018 11:50:23 This fix has been proposed by STM in order to enhance test efficiency. Current test version did not detect problem with RTC reset on F1 family boards since the base time was too small.pull/8230/head
parent
ac6ca73dd8
commit
6d5e21741c
|
@ -29,7 +29,7 @@ class RtcResetTest(BaseHostTest):
|
|||
"""
|
||||
|
||||
"""Start of the RTC"""
|
||||
START_TIME = 50000
|
||||
START_TIME = 1537789823 # GMT: Monday, 24 September 2018 11:50:23
|
||||
START_TIME_TOLERANCE = 10
|
||||
"""Time to delay after sending reset"""
|
||||
DELAY_TIME = 5.0
|
||||
|
|
Loading…
Reference in New Issue