diff options
| author | iabdalkader <i.abdalkader@gmail.com> | 2024-01-17 12:05:57 +0200 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-01-21 00:19:20 +1100 |
| commit | 4fd7e456f0b850566f6e99ad1785a15e2a117636 (patch) | |
| tree | 9c3a93612132722a5d1bc81a5b94e04f267803c6 | |
| parent | 490e8e01d577247798d10fbe63860b914b9ae135 (diff) | |
renesas-ra/boards/ARDUINO_PORTENTA_C33: Fix the RTC clock source.
Switch the RTC clock source to Sub-clock (XCIN). This board has an
accurate LSE crystal, and it should be used for the RTC clock
source.
Signed-off-by: iabdalkader <i.abdalkader@gmail.com>
| -rw-r--r-- | ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h b/ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h index 52346dedc..f28deb0ce 100644 --- a/ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h +++ b/ports/renesas-ra/boards/ARDUINO_PORTENTA_C33/mpconfigboard.h @@ -28,7 +28,7 @@ // peripheral config #define MICROPY_HW_ENABLE_RNG (1) #define MICROPY_HW_ENABLE_RTC (1) -#define MICROPY_HW_RTC_SOURCE (1) +#define MICROPY_HW_RTC_SOURCE (0) #define MICROPY_HW_ENABLE_ADC (1) #define MICROPY_HW_HAS_FLASH (1) #define MICROPY_HW_ENABLE_USBDEV (1) |
