Updated readme, small fix.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@13036 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
This commit is contained in:
Giovanni Di Sirio 2019-09-28 15:18:43 +00:00
parent bcc03038e5
commit ebeef10896
2 changed files with 5 additions and 4 deletions

View File

@ -47,10 +47,6 @@
#error "STM32_HAS_TIM17 not defined in registry"
#endif
#if !defined(STM32_IRQ_TIM1_BRK_TIM15_PRIORITY)
#error "STM32_IRQ_TIM1_BRK_TIM15_PRIORITY not defined in mcuconf.h"
#endif
#if STM32_HAS_TIM1 == FALSE
#error "TIM1 not present"
#endif
@ -68,6 +64,10 @@
#endif
/* Priority settings checks.*/
#if !defined(STM32_IRQ_TIM1_BRK_TIM15_PRIORITY)
#error "STM32_IRQ_TIM1_BRK_TIM15_PRIORITY not defined in mcuconf.h"
#endif
#if !defined(STM32_IRQ_TIM1_UP_TIM16_PRIORITY)
#error "STM32_IRQ_TIM1_UP_TIM16_PRIORITY not defined in mcuconf.h"
#endif

View File

@ -74,6 +74,7 @@
*****************************************************************************
*** Next ***
- NEW: Initial STM32G4xx support in HAL.
- HAL: Added script to generate board files from command line, just run
./os/hal/boards/genboard.sh with the board directory name as
parameter.