diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-25 17:22:41 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-12-25 17:22:41 +0000 |
commit | faf6c9f25fbf74966420c2582b86114a0c55aebf (patch) | |
tree | 61fb8a91ccab2a55fb8b93e1486f43c4e3548c44 /os/hal/boards | |
parent | 72c3417c88c7133ce4e38c49e7d25befea877131 (diff) | |
download | ChibiOS-faf6c9f25fbf74966420c2582b86114a0c55aebf.tar.gz ChibiOS-faf6c9f25fbf74966420c2582b86114a0c55aebf.tar.bz2 ChibiOS-faf6c9f25fbf74966420c2582b86114a0c55aebf.zip |
LED flashing but at a wrong rate, so, still issues.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11183 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/boards')
-rw-r--r-- | os/hal/boards/ST_NUCLEO144_H743ZI/board.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/hal/boards/ST_NUCLEO144_H743ZI/board.c b/os/hal/boards/ST_NUCLEO144_H743ZI/board.c index 5ee0873d7..7173084e8 100644 --- a/os/hal/boards/ST_NUCLEO144_H743ZI/board.c +++ b/os/hal/boards/ST_NUCLEO144_H743ZI/board.c @@ -155,8 +155,8 @@ static void stm32_gpio_init(void) { /* Enabling GPIO-related clocks, the mask comes from the
registry header file.*/
- rccResetAHB1(STM32_GPIO_EN_MASK);
- rccEnableAHB1(STM32_GPIO_EN_MASK, true);
+ rccResetAHB4(STM32_GPIO_EN_MASK);
+ rccEnableAHB4(STM32_GPIO_EN_MASK, true);
/* Initializing all the defined GPIO ports.*/
#if STM32_HAS_GPIOA
|