summaryrefslogtreecommitdiff
path: root/src/fmc-test/include/stm-uart.h
blob: c106d76c88e75f45f6b7ae5ecc2b76c759c0f950 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __STM32_DEV_BRIDGE_UART_H
#define __STM32_DEV_BRIDGE_UART_H

#include "stm32f4xx_hal.h"

#define USART2_BAUD_RATE	115200

extern void MX_USART2_UART_Init(void);

extern void uart_send_binary(uint32_t num, uint8_t bits);
extern void uart_send_string(char *s);
extern void uart_send_integer(uint32_t data, uint32_t mag);

extern UART_HandleTypeDef huart2;

#endif /* __STM32_DEV_BRIDGE_UART_H */