aboutsummaryrefslogtreecommitdiff
path: root/stmhal/storage.c
diff options
context:
space:
mode:
authorRami Ali2016-12-12 16:36:35 +1100
committerDamien George2016-12-13 16:26:13 +1100
commit8001918a896586438ed5e82a9d0a200bb61027ee (patch)
tree0c5290f4871fc8b5f4b577047d1e486045a9fee2 /stmhal/storage.c
parent3dd04dee3ef03f20da7c819c818fee41690226ee (diff)
stmhal: Add STM32F769DISC board files.
With minor changes to adc.c and storage.c to support the F769.
Diffstat (limited to 'stmhal/storage.c')
-rw-r--r--stmhal/storage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/storage.c b/stmhal/storage.c
index a18c7ebb8..14b504d71 100644
--- a/stmhal/storage.c
+++ b/stmhal/storage.c
@@ -75,7 +75,7 @@ STATIC byte flash_cache_mem[0x4000] __attribute__((aligned(4))); // 16k
#define FLASH_MEM_SEG2_START_ADDR (0x08140000) // sector 18
#define FLASH_MEM_SEG2_NUM_BLOCKS (128) // sector 18: 64k(of 128k)
-#elif defined(STM32F746xx) || defined(STM32F767xx)
+#elif defined(STM32F746xx) || defined(STM32F767xx) || defined(STM32F769xx)
// The STM32F746 doesn't really have CCRAM, so we use the 64K DTCM for this.