summaryrefslogtreecommitdiff
path: root/firmware/src/main.c
blob: a9721efbaa14cb737154d6287353d3a51b718a53 (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
#include <stdbool.h>

#include <zephyr/kernel.h>
#include <zephyr/device.h>
#include <zephyr/drivers/uart.h>

#define UART_DEVICE_NODE DT_CHOSEN(zephyr_shell_uart)
static const struct device *const uart_dev = DEVICE_DT_GET(UART_DEVICE_NODE);

#define SLIP_END 0xC0

int main(void)
{
	if (!device_is_ready(uart_dev)) {
		printk("UART device not found!");
		return 0;
	}

	while (true) {
		k_sleep(K_MSEC(1000));
		uart_poll_out(uart_dev, SLIP_END);
	}

	return 0;
}