Loading...
Searching...
No Matches
stdio_uart.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2015 Kaspar Schleiser <kaspar@schleiser.de>
3 * SPDX-FileCopyrightText: 2018 Freie Universität Berlin
4 * SPDX-License-Identifier: LGPL-2.1-only
5 */
6
7#pragma once
8
87
88/* Boards may override the default STDIO UART device */
89#include "board.h"
90#include "stdio_base.h"
91
92#ifdef __cplusplus
93extern "C" {
94#endif
95
96#ifndef STDIO_UART_DEV
100#define STDIO_UART_DEV UART_DEV(0)
101#endif
102
103#ifndef STDIO_UART_BAUDRATE
107#define STDIO_UART_BAUDRATE (115200)
108#endif
109
110#ifdef __cplusplus
111}
112#endif