diff options
author | iabdalkader <i.abdalkader@gmail.com> | 2024-01-17 12:05:57 +0200 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-02-16 10:45:34 +1100 |
commit | 1e8cc6c5034f161bfed29002e5bd70eb4aeccbd6 (patch) | |
tree | b1670bb392931c7b7fcd7eff3dc4ea112ab9f8c7 | |
parent | 4c7d955a62f35818f73ca8a569d8fd70920023be (diff) | |
download | micropython-1e8cc6c5034f161bfed29002e5bd70eb4aeccbd6.tar.gz micropython-1e8cc6c5034f161bfed29002e5bd70eb4aeccbd6.zip |
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 52346dedc4..f28deb0ceb 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) |