mbed-os/targets/TARGET_STM/TARGET_STM32F3
Laurent MEUNIER be8024de28 STM32: serial: use proper GET_IT macro
Depending on families, different HAL macros are defined to check the
state of serial interrupts. In several cases, we can find only 1 macro:
__HAL_UART_GET_IT_SOURCE
Checks whether the specified UART interrupt has occurred or not

But in F0, F3, F7, L0, L4 there are 2 different macros
__HAL_UART_GET_IT
Checks whether the specified UART interrupt has occurred or not
__HAL_UART_GET_IT_SOURCE
Checks whether the specified UART interrupt source is enabled.

In the later case, __HAL_UART_GET_IT_SOURCE was being used so far,
but actually needs to be replaced by __HAL_UART_GET_IT. Using the right
macro, we also check the proper flags accordingly.
2017-07-11 17:22:33 +02:00
..
TARGET_STM32F302x8 STM32: analog_out: generalize code for multiple instance handling 2017-06-27 09:27:46 +02:00
TARGET_STM32F303x8 STM32: analog_out: generalize code for multiple instance handling 2017-06-27 09:27:46 +02:00
TARGET_STM32F303xC STM32: analog_out: generalize code for multiple instance handling 2017-06-27 09:27:46 +02:00
TARGET_STM32F303xE STM32: analog_out: generalize code for multiple instance handling 2017-06-27 09:27:46 +02:00
TARGET_STM32F334x8 STM32: analog_out: generalize code for multiple instance handling 2017-06-27 09:27:46 +02:00
device Introduce stm32_assert.h for MBED port 2017-05-29 13:48:29 +02:00
analogin_api.c Renamed files in platform to match source names 2017-02-22 18:17:54 -06:00
analogout_device.c STM32: analog_out: generalize code for multiple instance handling 2017-06-27 09:27:46 +02:00
can_device.h Give access to HAL_GetTick function 2017-05-29 10:24:03 +02:00
common_objects.h STM32: analog_out: generalize code for multiple instance handling 2017-06-27 09:27:46 +02:00
device.h restructure - Moved targets out to top level 2016-09-30 19:18:09 -05:00
gpio_irq_device.c STM32: move pin_lines_desc to c file 2017-02-16 19:34:11 +01:00
gpio_irq_device.h STM32: move pin_lines_desc to c file 2017-02-16 19:34:11 +01:00
i2c_device.h Fixes linking errors when building with debug profile 2017-01-12 15:09:28 -06:00
pin_device.h stm32: use default in switch case 2017-02-16 19:34:01 +01:00
pwmout_device.c STM32: move pwmout device tables to C file 2017-02-27 17:07:01 +01:00
pwmout_device.h STM32: move pwmout device tables to C file 2017-02-27 17:07:01 +01:00
serial_device.c STM32: serial: use proper GET_IT macro 2017-07-11 17:22:33 +02:00
spi_api.c Fix alignements 2017-01-27 16:00:39 +01:00
spi_device.h STM32 SPI specific mode for higher performance 2017-06-16 10:23:48 +02:00