tinyproto
|
This is UART support implementation. More...
#include <stdint.h>
#include "no_platform/noplatform_serial.h"
Go to the source code of this file.
Functions | |
tiny_serial_handle_t | tiny_serial_open (const char *name, uint32_t baud) |
Opens serial port. More... | |
void | tiny_serial_close (tiny_serial_handle_t port) |
Closes serial connection. More... | |
int | tiny_serial_send (tiny_serial_handle_t port, const void *buf, int len) |
Sends data over serial connection. More... | |
int | tiny_serial_send_timeout (tiny_serial_handle_t port, const void *buf, int len, uint32_t timeout_ms) |
Sends data over serial connection. More... | |
int | tiny_serial_read (tiny_serial_handle_t port, void *buf, int len) |
Receive data from serial connection. More... | |
int | tiny_serial_read_timeout (tiny_serial_handle_t port, void *buf, int len, uint32_t timeout_ms) |
Receive data from serial connection. More... | |
This is UART support implementation.
Tiny UART serial API