summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/app-framework/connection/native/linux/conn_uart.h
blob: 443167026e7e0fbd784637150a5987d6267293c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#ifndef CONN_LINUX_UART_H_
#define CONN_LINUX_UART_H_

#include "bh_platform.h"

#ifdef __cplusplus
extern "C" {
#endif

int
uart_open(char *device, int baudrate);

int
uart_send(int fd, const char *data, int size);

int
uart_recv(int fd, char *buffer, int buf_size);

#ifdef __cplusplus
}
#endif

#endif