Skip to content

Commit 57e2d31

Browse files
committed
Clean file
Signed-off-by: Frederic.Pillon <[email protected]>
1 parent f50acbd commit 57e2d31

File tree

1 file changed

+1
-58
lines changed

1 file changed

+1
-58
lines changed

cores/arduino/stm32/uart.c

+1-58
Original file line numberDiff line numberDiff line change
@@ -57,38 +57,7 @@
5757
extern "C" {
5858
#endif
5959

60-
/**
61-
* @}
62-
*/
63-
64-
/** @addtogroup STM32F4xx_System_Private_Defines
65-
* @{
66-
*/
67-
68-
/**
69-
* @}
70-
*/
71-
72-
/** @addtogroup STM32F4xx_System_Private_TypesDefinitions
73-
* @{
74-
*/
75-
76-
/**
77-
* @}
78-
*/
79-
80-
/** @addtogroup STM32F4xx_System_Private_Macros
81-
* @{
82-
*/
83-
84-
/**
85-
* @}
86-
*/
87-
88-
/** @addtogroup STM32F4xx_System_Private_Variables
89-
* @{
90-
*/
91-
/// @brief uart caracteristics
60+
// @brief uart caracteristics
9261
#define UART_NUM (8)
9362
static UART_HandleTypeDef *uart_handlers[UART_NUM] = {NULL};
9463
static void (*rx_callback[UART_NUM])(serial_t*);
@@ -97,21 +66,6 @@ static int (*tx_callback[UART_NUM])(serial_t*);
9766
static serial_t *tx_callback_obj[UART_NUM];
9867

9968
static uint8_t rx_buffer[1] = {0};
100-
/**
101-
* @}
102-
*/
103-
104-
/** @addtogroup STM32F4xx_System_Private_FunctionPrototypes
105-
* @{
106-
*/
107-
108-
/**
109-
* @}
110-
*/
111-
112-
/** @addtogroup STM32F4xx_System_Private_Functions
113-
* @{
114-
*/
11569

11670
/**
11771
* @brief Function called to initialize the uart interface
@@ -659,17 +613,6 @@ void UART8_IRQHandler(void)
659613
}
660614
#endif
661615

662-
/**
663-
* @}
664-
*/
665-
666-
/**
667-
* @}
668-
*/
669-
670-
/**
671-
* @}
672-
*/
673616
#ifdef __cplusplus
674617
}
675618
#endif

0 commit comments

Comments
 (0)