blob: 224f20ea12ae83124c363d6c0c9520c958f8ed94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __STM32F7_UART_H__
#define __STM32F7_UART_H__
#include <drivers/include/device.h>
int stm32f7_uart_init(struct device *dev);
int stm32f7_uart_deinit(struct device *dev);
void stm32f7_uart_poll_out8(const struct device *dev, unsigned char ch);
void stm32f7_uart_tx_buffer(const struct device *dev, char *buffer, unsigned int len);
void stm32f7_uart_tx(const struct device *dev, char *buffer);
#endif/*__STM32F7_UART_H__*/
|