Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shared-bindings/alarm/time/TimeAlarm.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include "shared-bindings/time/__init__.h"

#if MICROPY_LONGINT_IMPL != MICROPY_LONGINT_IMPL_NONE
NORETURN mp_obj_t MP_WEAK rtc_get_time_source_time(void) {
mp_obj_t MP_WEAK rtc_get_time_source_time(void) {
mp_raise_RuntimeError(MP_ERROR_TEXT("RTC is not supported on this board"));
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion shared-bindings/time/__init__.c
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ MP_DEFINE_CONST_FUN_OBJ_0(time_not_implemented_obj, time_not_implemented);
#endif

#if MICROPY_LONGINT_IMPL != MICROPY_LONGINT_IMPL_NONE
NORETURN mp_obj_t MP_WEAK rtc_get_time_source_time(void) {
mp_obj_t MP_WEAK rtc_get_time_source_time(void) {
mp_raise_RuntimeError(MP_ERROR_TEXT("RTC is not supported on this board"));
}

Expand Down
Loading