git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_16.1.x@9246 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
Giovanni Di Sirio 2016-04-05 14:04:05 +00:00
parent 3a6e100efc
commit 221f692610
2 changed files with 2 additions and 1 deletions

View File

@ -84,7 +84,7 @@
* @brief Decodes a port identifier from a line identifier.
*/
#define PAL_PORT(line) \
((stm32_gpio_t *)(((uint32_t)(line)) & 0xFFFFFFF0U))
((GPIO_TypeDef *)(((uint32_t)(line)) & 0xFFFFFFF0U))
/**
* @brief Decodes a pad identifier from a line identifier.

View File

@ -73,6 +73,7 @@
*****************************************************************************
*** 16.1.5 ***
- HAL: Fixed PAL lines support not working for STM32 GPIOv1 (bug #730).
- RT: Fixed bug in chSchPreemption() function (bug #728).
- HAL: Fixed prescaler not initialized in STM32 ADCv1 (bug #725).
- HAL: Fixed missing DAC section in STM32F072 mcuconf.h files (bug #724).