Merge pull request #2932 from simmel-project/nrf-rtc-reset

nrf: reset rtc as part of port_reset()
This commit is contained in:
Scott Shawcroft 2020-05-20 11:39:16 -07:00 committed by GitHub
commit c32214ccc7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -161,6 +161,10 @@ void reset_port(void) {
pulsein_reset();
#endif
#if CIRCUITPY_RTC
rtc_reset();
#endif
timers_reset();
#if CIRCUITPY_BLEIO