Loading...
Searching...
No Matches
ethos_params.h
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2016 Kaspar Schleiser <kaspar@schleiser.de>
3 * SPDX-License-Identifier: LGPL-2.1-only
4 */
5
6#pragma once
7
17
18#include "board.h"
19#include "ethos.h"
20
21#ifdef __cplusplus
22extern "C" {
23#endif
24
25#ifndef ETHOS_PARAMS
26#define ETHOS_PARAMS { .uart = ETHOS_UART, \
27 .baudrate = ETHOS_BAUDRATE }
28#endif
29
36static const ethos_params_t ethos_params[] = {
37 ETHOS_PARAMS
38};
39
40#ifdef __cplusplus
41}
42#endif
43
Interface definition for the ethernet-over-serial module.
static const ethos_params_t ethos_params[]
ethos configuration
Struct containing the needed configuration.
Definition ethos.h:124