From 3667ae7d4ed57a503291e6830fbc8b8aa86bd6bd Mon Sep 17 00:00:00 2001 From: Sebastian Urban Date: Tue, 20 Feb 2024 16:21:50 +0100 Subject: [PATCH] STM Nucleo-F103RB board: update flash size to 128 kBytes --- openemc-firmware/src/boards/stm_nucleo_f103rb.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/openemc-firmware/src/boards/stm_nucleo_f103rb.rs b/openemc-firmware/src/boards/stm_nucleo_f103rb.rs index e6fca07..5610a8a 100644 --- a/openemc-firmware/src/boards/stm_nucleo_f103rb.rs +++ b/openemc-firmware/src/boards/stm_nucleo_f103rb.rs @@ -1,11 +1,10 @@ //! STM Nucleo-F103RB evaluation board. // // OPENEMC-BOARD-VERSION: 1 -// OPENEMC-FLASH-SIZE: 65536 +// OPENEMC-FLASH-SIZE: 131072 // OPENEMC-RAM-SIZE: 20480 // -use core::mem; use cortex_m::peripheral::SCB; use heapless::Vec; use stm32f1::stm32f103::Peripherals;