mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
stdio_ethos: move to ethos_stdio
This commit is contained in:
parent
b8dab00303
commit
568be105f2
@ -48,6 +48,10 @@ ifneq (,$(filter ccs811_%,$(USEMODULE)))
|
|||||||
USEMODULE += ccs811
|
USEMODULE += ccs811
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq (,$(filter ethos_%,$(USEMODULE)))
|
||||||
|
USEMODULE += ethos
|
||||||
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter hmc5883l_%,$(USEMODULE)))
|
ifneq (,$(filter hmc5883l_%,$(USEMODULE)))
|
||||||
USEMODULE += hmc5883l
|
USEMODULE += hmc5883l
|
||||||
endif
|
endif
|
||||||
|
@ -1 +1,7 @@
|
|||||||
|
# exclude submodule sources from *.c wildcard source selection
|
||||||
|
SRC := $(filter-out stdio.c,$(wildcard *.c))
|
||||||
|
|
||||||
|
# enable submodules
|
||||||
|
SUBMODULES := 1
|
||||||
|
|
||||||
include $(RIOTBASE)/Makefile.base
|
include $(RIOTBASE)/Makefile.base
|
||||||
|
@ -3,3 +3,7 @@ USEMODULE += iolist
|
|||||||
USEMODULE += netdev_eth
|
USEMODULE += netdev_eth
|
||||||
USEMODULE += random
|
USEMODULE += random
|
||||||
USEMODULE += tsrb
|
USEMODULE += tsrb
|
||||||
|
|
||||||
|
ifneq (,$(filter ethos_stdio,$(USEMODULE)))
|
||||||
|
USEMODULE += isrpipe
|
||||||
|
endif
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
#ifdef MODULE_STDIO_ETHOS
|
#ifdef MODULE_STDIO_ETHOS
|
||||||
#include "stdio_uart.h"
|
#include "stdio_uart.h"
|
||||||
#include "isrpipe.h"
|
#include "isrpipe.h"
|
||||||
extern isrpipe_t stdio_uart_isrpipe;
|
extern isrpipe_t ethos_stdio_isrpipe;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define ENABLE_DEBUG 0
|
#define ENABLE_DEBUG 0
|
||||||
@ -106,7 +106,7 @@ static void _handle_char(ethos_t *dev, char c)
|
|||||||
#ifdef MODULE_STDIO_ETHOS
|
#ifdef MODULE_STDIO_ETHOS
|
||||||
case ETHOS_FRAME_TYPE_TEXT:
|
case ETHOS_FRAME_TYPE_TEXT:
|
||||||
dev->framesize++;
|
dev->framesize++;
|
||||||
isrpipe_write_one(&stdio_uart_isrpipe, c);
|
isrpipe_write_one(ðos_stdio_isrpipe, c);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
61
drivers/ethos/stdio.c
Normal file
61
drivers/ethos/stdio.c
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2013 INRIA
|
||||||
|
* 2015 Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
* 2016 Eistec AB
|
||||||
|
* 2018-21 Freie Universität Berlin
|
||||||
|
*
|
||||||
|
* This file is subject to the terms and conditions of the GNU Lesser
|
||||||
|
* General Public License v2.1. See the file LICENSE in the top level
|
||||||
|
* directory for more details.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @{
|
||||||
|
*
|
||||||
|
* @file
|
||||||
|
* @author Oliver Hahm <oliver.hahm@inria.fr>
|
||||||
|
* @author Ludwig Knüpfer <ludwig.knuepfer@fu-berlin.de>
|
||||||
|
* @author Kaspar Schleiser <kaspar@schleiser.de>
|
||||||
|
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
|
||||||
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
||||||
|
* @author Martine S. Lenders <m.lenders@fu-berlin.de>
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "ethos.h"
|
||||||
|
#include "isrpipe.h"
|
||||||
|
#include "stdio_uart.h"
|
||||||
|
|
||||||
|
extern ethos_t ethos;
|
||||||
|
|
||||||
|
static uint8_t _rx_buf_mem[STDIO_UART_RX_BUFSIZE];
|
||||||
|
isrpipe_t ethos_stdio_isrpipe = ISRPIPE_INIT(_rx_buf_mem);
|
||||||
|
|
||||||
|
static void _isrpipe_write(void *arg, uint8_t data)
|
||||||
|
{
|
||||||
|
isrpipe_write_one(arg, (char)data);
|
||||||
|
}
|
||||||
|
|
||||||
|
void stdio_init(void)
|
||||||
|
{
|
||||||
|
uart_init(ETHOS_UART, ETHOS_BAUDRATE, _isrpipe_write, ðos_stdio_isrpipe);
|
||||||
|
|
||||||
|
#if MODULE_VFS
|
||||||
|
vfs_bind_stdio();
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
|
extern unsigned ethos_unstuff_readbyte(uint8_t *buf, uint8_t byte,
|
||||||
|
bool *escaped, uint8_t *frametype);
|
||||||
|
|
||||||
|
ssize_t stdio_read(void* buffer, size_t len)
|
||||||
|
{
|
||||||
|
return (ssize_t)isrpipe_read(ðos_stdio_isrpipe, buffer, len);
|
||||||
|
}
|
||||||
|
|
||||||
|
ssize_t stdio_write(const void* buffer, size_t len)
|
||||||
|
{
|
||||||
|
ethos_send_frame(ðos, (const uint8_t *)buffer, len, ETHOS_FRAME_TYPE_TEXT);
|
||||||
|
return len;
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @} */
|
@ -34,7 +34,7 @@ extern "C" {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* if using ethos + stdio, use STDIO_UART values unless overridden */
|
/* if using ethos + stdio, use STDIO_UART values unless overridden */
|
||||||
#if IS_USED(MODULE_STDIO_ETHOS) || defined(DOXYGEN)
|
#if IS_USED(MODULE_ETHOS_STDIO) || defined(DOXYGEN)
|
||||||
#include "stdio_uart.h"
|
#include "stdio_uart.h"
|
||||||
/**
|
/**
|
||||||
* @defgroup drivers_ethos_config Ethernet-over-serial driver driver compile configuration
|
* @defgroup drivers_ethos_config Ethernet-over-serial driver driver compile configuration
|
||||||
|
@ -24,6 +24,7 @@ PSEUDOMODULES += dhcpv6_client_mud_url
|
|||||||
PSEUDOMODULES += dhcpv6_relay
|
PSEUDOMODULES += dhcpv6_relay
|
||||||
PSEUDOMODULES += dns_msg
|
PSEUDOMODULES += dns_msg
|
||||||
PSEUDOMODULES += ecc_%
|
PSEUDOMODULES += ecc_%
|
||||||
|
PSEUDOMODULES += ethos_stdio
|
||||||
PSEUDOMODULES += event_%
|
PSEUDOMODULES += event_%
|
||||||
PSEUDOMODULES += event_timeout
|
PSEUDOMODULES += event_timeout
|
||||||
PSEUDOMODULES += event_timeout_ztimer
|
PSEUDOMODULES += event_timeout_ztimer
|
||||||
|
@ -24,9 +24,8 @@ ifneq (,$(filter stdio_rtt,$(USEMODULE)))
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter stdio_ethos,$(USEMODULE)))
|
ifneq (,$(filter stdio_ethos,$(USEMODULE)))
|
||||||
USEMODULE += ethos
|
USEMODULE += ethos_stdio
|
||||||
USEMODULE += stdin
|
USEMODULE += stdin
|
||||||
USEMODULE += stdio_uart
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq (,$(filter stdin,$(USEMODULE)))
|
ifneq (,$(filter stdin,$(USEMODULE)))
|
||||||
|
@ -35,11 +35,6 @@
|
|||||||
#include "periph/uart.h"
|
#include "periph/uart.h"
|
||||||
#include "isrpipe.h"
|
#include "isrpipe.h"
|
||||||
|
|
||||||
#ifdef MODULE_STDIO_ETHOS
|
|
||||||
#include "ethos.h"
|
|
||||||
extern ethos_t ethos;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if MODULE_VFS
|
#if MODULE_VFS
|
||||||
#include "vfs.h"
|
#include "vfs.h"
|
||||||
#endif
|
#endif
|
||||||
@ -65,11 +60,7 @@ void stdio_init(void)
|
|||||||
arg = NULL;
|
arg = NULL;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef MODULE_STDIO_ETHOS
|
|
||||||
uart_init(ETHOS_UART, ETHOS_BAUDRATE, cb, arg);
|
|
||||||
#else
|
|
||||||
uart_init(STDIO_UART_DEV, STDIO_UART_BAUDRATE, cb, arg);
|
uart_init(STDIO_UART_DEV, STDIO_UART_BAUDRATE, cb, arg);
|
||||||
#endif
|
|
||||||
|
|
||||||
#if MODULE_VFS
|
#if MODULE_VFS
|
||||||
vfs_bind_stdio();
|
vfs_bind_stdio();
|
||||||
@ -89,10 +80,6 @@ ssize_t stdio_read(void* buffer, size_t count)
|
|||||||
|
|
||||||
ssize_t stdio_write(const void* buffer, size_t len)
|
ssize_t stdio_write(const void* buffer, size_t len)
|
||||||
{
|
{
|
||||||
#ifdef MODULE_STDIO_ETHOS
|
|
||||||
ethos_send_frame(ðos, (const uint8_t *)buffer, len, ETHOS_FRAME_TYPE_TEXT);
|
|
||||||
#else
|
|
||||||
uart_write(STDIO_UART_DEV, (const uint8_t *)buffer, len);
|
uart_write(STDIO_UART_DEV, (const uint8_t *)buffer, len);
|
||||||
#endif
|
|
||||||
return len;
|
return len;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user