diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-26 15:59:35 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-26 15:59:35 +0000 |
commit | dc94818e88c10d7bdf8542d36515e1ff5e8d546e (patch) | |
tree | 1a9f57a5ef879d3d2f4b0ffa5770d526fac6d832 /os/hal | |
parent | b7a1e045ee2bae3e097ccb9d9ddff1be8c69e36e (diff) | |
download | ChibiOS-dc94818e88c10d7bdf8542d36515e1ff5e8d546e.tar.gz ChibiOS-dc94818e88c10d7bdf8542d36515e1ff5e8d546e.tar.bz2 ChibiOS-dc94818e88c10d7bdf8542d36515e1ff5e8d546e.zip |
Added board generator for STM32H7xx.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11194 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/boards/ST_NUCLEO144_H743ZI/board.h | 8 | ||||
-rw-r--r-- | os/hal/ports/STM32/STM32H7xx/hal_lld.h | 3 |
2 files changed, 1 insertions, 10 deletions
diff --git a/os/hal/boards/ST_NUCLEO144_H743ZI/board.h b/os/hal/boards/ST_NUCLEO144_H743ZI/board.h index 2c6502c9c..72c729235 100644 --- a/os/hal/boards/ST_NUCLEO144_H743ZI/board.h +++ b/os/hal/boards/ST_NUCLEO144_H743ZI/board.h @@ -58,15 +58,9 @@ #define STM32_HSE_BYPASS
/*
- * Board voltages.
- * Required for performance limits calculation.
- */
-#define STM32_VDD 300U
-
-/*
* MCU type as defined in the ST header.
*/
-#define STM32F767xx
+#define STM32H743xx
/*
* IO pins assignments.
diff --git a/os/hal/ports/STM32/STM32H7xx/hal_lld.h b/os/hal/ports/STM32/STM32H7xx/hal_lld.h index 39db11913..e418efa5a 100644 --- a/os/hal/ports/STM32/STM32H7xx/hal_lld.h +++ b/os/hal/ports/STM32/STM32H7xx/hal_lld.h @@ -1214,9 +1214,6 @@ #if !defined(STM32_HSECLK)
#error "STM32_HSECLK not defined in board.h"
#endif
-#if !defined(STM32_VDD)
-#error "STM32_VDD not defined in board.h"
-#endif
/**
* @name Constants depending on VOS setting
|