Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-dev by
Diff: targets/TARGET_STM/TARGET_STM32F3/serial_device.c
- Revision:
- 181:96ed750bd169
- Parent:
- 177:d650f5d4c87a
diff -r b0033dcd6934 -r 96ed750bd169 targets/TARGET_STM/TARGET_STM32F3/serial_device.c
--- a/targets/TARGET_STM/TARGET_STM32F3/serial_device.c Thu Dec 07 14:01:42 2017 +0000
+++ b/targets/TARGET_STM/TARGET_STM32F3/serial_device.c Wed Jan 17 15:23:54 2018 +0000
@@ -1,6 +1,6 @@
/* mbed Microcontroller Library
*******************************************************************************
- * Copyright (c) 2014, STMicroelectronics
+ * Copyright (c) 2017, STMicroelectronics
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -27,179 +27,21 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*******************************************************************************
*/
-#include "mbed_assert.h"
-#include "serial_api.h"
-#include "serial_api_hal.h"
#if DEVICE_SERIAL
-#include "cmsis.h"
-#include "pinmap.h"
-#include <string.h>
-#include "PeripheralPins.h"
-#include "mbed_error.h"
-
-#define UART_NUM (5)
-
-static uint32_t serial_irq_ids[UART_NUM] = {0};
-UART_HandleTypeDef uart_handlers[UART_NUM];
-
-uart_irq_handler irq_handler;
-
-int stdio_uart_inited = 0;
-serial_t stdio_uart;
-
-void serial_init(serial_t *obj, PinName tx, PinName rx)
-{
- struct serial_s *obj_s = SERIAL_S(obj);
-
- // Determine the UART to use (UART_1, UART_2, ...)
- UARTName uart_tx = (UARTName)pinmap_peripheral(tx, PinMap_UART_TX);
- UARTName uart_rx = (UARTName)pinmap_peripheral(rx, PinMap_UART_RX);
-
- // Get the peripheral name (UART_1, UART_2, ...) from the pin and assign it to the object
- obj_s->uart = (UARTName)pinmap_merge(uart_tx, uart_rx);
- MBED_ASSERT(obj_s->uart != (UARTName)NC);
+#include "serial_api_hal.h"
- // Enable USART clock + switch to SystemClock
- if (obj_s->uart == UART_1) {
- __USART1_FORCE_RESET();
- __USART1_RELEASE_RESET();
- __USART1_CLK_ENABLE();
-#if defined(RCC_USART1CLKSOURCE_SYSCLK)
- __HAL_RCC_USART1_CONFIG(RCC_USART1CLKSOURCE_SYSCLK);
-#endif
- obj_s->index = 0;
- }
-#if defined(USART2_BASE)
- if (obj_s->uart == UART_2) {
- __USART2_FORCE_RESET();
- __USART2_RELEASE_RESET();
- __USART2_CLK_ENABLE();
-#if defined(RCC_USART2CLKSOURCE_SYSCLK)
- __HAL_RCC_USART2_CONFIG(RCC_USART2CLKSOURCE_SYSCLK);
-#endif
- obj_s->index = 1;
- }
-#endif
-#if defined(USART3_BASE)
- if (obj_s->uart == UART_3) {
- __USART3_FORCE_RESET();
- __USART3_RELEASE_RESET();
- __USART3_CLK_ENABLE();
-#if defined(RCC_USART3CLKSOURCE_SYSCLK)
- __HAL_RCC_USART3_CONFIG(RCC_USART3CLKSOURCE_SYSCLK);
-#endif
- obj_s->index = 2;
- }
-#endif
-#if defined(UART4_BASE)
- if (obj_s->uart == UART_4) {
- __UART4_FORCE_RESET();
- __UART4_RELEASE_RESET();
- __UART4_CLK_ENABLE();
-#if defined(RCC_UART4CLKSOURCE_SYSCLK)
- __HAL_RCC_UART4_CONFIG(RCC_UART4CLKSOURCE_SYSCLK);
-#endif
- obj_s->index = 3;
- }
-#endif
-#if defined(UART5_BASE)
- if (obj_s->uart == UART_5) {
- __HAL_RCC_UART5_FORCE_RESET();
- __HAL_RCC_UART5_RELEASE_RESET();
- __UART5_CLK_ENABLE();
-#if defined(RCC_UART5CLKSOURCE_SYSCLK)
- __HAL_RCC_UART5_CONFIG(RCC_UART5CLKSOURCE_SYSCLK);
-#endif
- obj_s->index = 4;
- }
+#if defined (TARGET_STM32F302x8) || defined (TARGET_STM32F303x8) || defined (TARGET_STM32F334x8)
+ #define UART_NUM (3)
+#else
+ #define UART_NUM (5) // max value
#endif
- // Configure the UART pins
- pinmap_pinout(tx, PinMap_UART_TX);
- pinmap_pinout(rx, PinMap_UART_RX);
-
- if (tx != NC) {
- pin_mode(tx, PullUp);
- }
- if (rx != NC) {
- pin_mode(rx, PullUp);
- }
-
- // Configure UART
- obj_s->baudrate = 9600;
- obj_s->databits = UART_WORDLENGTH_8B;
- obj_s->stopbits = UART_STOPBITS_1;
- obj_s->parity = UART_PARITY_NONE;
-
-#if DEVICE_SERIAL_FC
- obj_s->hw_flow_ctl = UART_HWCONTROL_NONE;
-#endif
-
- obj_s->pin_tx = tx;
- obj_s->pin_rx = rx;
-
- init_uart(obj);
-
- // For stdio management
- if (obj_s->uart == STDIO_UART) {
- stdio_uart_inited = 1;
- memcpy(&stdio_uart, obj, sizeof(serial_t));
- }
-}
+uint32_t serial_irq_ids[UART_NUM] = {0};
+UART_HandleTypeDef uart_handlers[UART_NUM];
-void serial_free(serial_t *obj)
-{
- struct serial_s *obj_s = SERIAL_S(obj);
-
- // Reset UART and disable clock
- if (obj_s->uart == UART_1) {
- __USART1_FORCE_RESET();
- __USART1_RELEASE_RESET();
- __USART1_CLK_DISABLE();
- }
- if (obj_s->uart == UART_2) {
- __USART2_FORCE_RESET();
- __USART2_RELEASE_RESET();
- __USART2_CLK_DISABLE();
- }
-#if defined(USART3_BASE)
- if (obj_s->uart == UART_3) {
- __USART3_FORCE_RESET();
- __USART3_RELEASE_RESET();
- __USART3_CLK_DISABLE();
- }
-#endif
-#if defined(UART4_BASE)
- if (obj_s->uart == UART_4) {
- __UART4_FORCE_RESET();
- __UART4_RELEASE_RESET();
- __UART4_CLK_DISABLE();
- }
-#endif
-#if defined(UART5_BASE)
- if (obj_s->uart == UART_5) {
- __UART5_FORCE_RESET();
- __UART5_RELEASE_RESET();
- __UART5_CLK_DISABLE();
- }
-#endif
-
- // Configure GPIOs
- pin_function(obj_s->pin_tx, STM_PIN_DATA(STM_MODE_INPUT, GPIO_NOPULL, 0));
- pin_function(obj_s->pin_rx, STM_PIN_DATA(STM_MODE_INPUT, GPIO_NOPULL, 0));
-
- serial_irq_ids[obj_s->index] = 0;
-}
-
-void serial_baud(serial_t *obj, int baudrate)
-{
- struct serial_s *obj_s = SERIAL_S(obj);
-
- obj_s->baudrate = baudrate;
- init_uart(obj);
-}
+static uart_irq_handler irq_handler;
/******************************************************************************
* INTERRUPTS HANDLING
@@ -785,7 +627,7 @@
}
}
-#endif
+#endif /* DEVICE_SERIAL_ASYNCH */
#if DEVICE_SERIAL_FC
@@ -844,6 +686,6 @@
init_uart(obj);
}
-#endif
+#endif /* DEVICE_SERIAL_FC */
-#endif
+#endif /* DEVICE_SERIAL */
