1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/fe310: uncrustify

This commit is contained in:
Jan Romann 2021-08-14 14:48:05 +02:00
parent 3c86b74dc6
commit bd7b277f7e
No known key found for this signature in database
GPG Key ID: 9D6F0ED2C06FDDB0

View File

@ -60,10 +60,10 @@ typedef uint8_t gpio_t;
* @brief Structure for UART configuration data
*/
typedef struct {
uint32_t addr; /**< UART control register address */
gpio_t rx; /**< RX pin */
gpio_t tx; /**< TX pin */
irqn_t isr_num; /**< ISR source number */
uint32_t addr; /**< UART control register address */
gpio_t rx; /**< RX pin */
gpio_t tx; /**< TX pin */
irqn_t isr_num; /**< ISR source number */
} uart_conf_t;
/**