Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ Cargo.* @chrysn
/drivers/pca9685/ @gschorcht
/drivers/sht3x/ @gschorcht
/drivers/si70xx/ @basilfx
/drivers/slipdev/ @miri64
/drivers/sx127x/ @aabadie @jia200x
Comment on lines 85 to 86
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
/drivers/si70xx/ @basilfx
/drivers/slipdev/ @miri64
/drivers/sx127x/ @aabadie @jia200x
/drivers/si70xx/ @basilfx
/drivers/slipmux/ @Teufelchen1
/drivers/sx127x/ @aabadie @jia200x

:P

/drivers/ws281x/ @maribu
/drivers/xbee/ @miri64
Expand Down
2 changes: 1 addition & 1 deletion Makefile.dep
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
-include $(APPDIR)/Makefile.$(TOOLCHAIN).dep

# select default stdio provider if no other is selected
ifeq (,$(filter stdio_% slipdev_stdio,$(USEMODULE)))
ifeq (,$(filter stdio_% slipmux_stdio slipmux,$(USEMODULE)))
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why separately test for slipmux?

USEMODULE += stdio_default
endif

Expand Down
2 changes: 1 addition & 1 deletion boards/seeedstudio-xiao-esp32c3/Makefile.dep
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ifeq (,$(filter info-% generate-%,$(MAKECMDGOALS)))
endif
endif

ifeq (,$(filter stdio_% slipdev_stdio,$(USEMODULE)))
ifeq (,$(filter stdio_% slipmux_stdio,$(USEMODULE)))
USEMODULE += stdio_usb_serial_jtag
endif

Expand Down
7 changes: 0 additions & 7 deletions dist/tools/doccheck/exclude_simple
Original file line number Diff line number Diff line change
Expand Up @@ -6399,13 +6399,6 @@ warning: Member SIXLOWPAN_ND_OPT_6CTX_LEN_MAX (macro definition) of group net_si
warning: Member SIXLOWPAN_ND_OPT_6CTX_LEN_MIN (macro definition) of group net_sixlowpan_nd is not documented.
warning: Member SIXLOWPAN_ND_OPT_ABR_LEN (macro definition) of group net_sixlowpan_nd is not documented.
warning: Member SIXLOWPAN_ND_OPT_AR_LEN (macro definition) of group net_sixlowpan_nd is not documented.
warning: Member SLIPDEV_END_ESC (macro definition) of file slipdev_internal.h is not documented.
warning: Member SLIPDEV_END (macro definition) of file slipdev_internal.h is not documented.
warning: Member SLIPDEV_ESC_ESC (macro definition) of file slipdev_internal.h is not documented.
warning: Member SLIPDEV_ESC (macro definition) of file slipdev_internal.h is not documented.
warning: Member SLIPDEV_PARAM_BAUDRATE (macro definition) of file slipdev_params.h is not documented.
warning: Member SLIPDEV_PARAMS (macro definition) of file slipdev_params.h is not documented.
warning: Member SLIPDEV_PARAM_UART (macro definition) of file slipdev_params.h is not documented.
warning: Member SLOTDURATION (macro definition) of file board_info.h is not documented.
warning: Member SM_PWM_01C_PARAMS_DEFAULT (macro definition) of file sm_pwm_01c_params.h is not documented.
warning: Member SM_PWM_01C_SAUL_INFO (macro definition) of file sm_pwm_01c_params.h is not documented.
Expand Down
10 changes: 5 additions & 5 deletions dist/tools/tunslip/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Creating a SLIP network interface

The module `slipdev` (Serial line IP) enables the RIOT network stack to
send and receive IP packets over a serial interface. This collection of
tools originally from Contiki [1] enables Linux to interpret this data.
Though there is a tool for such operations on Linux (`slattach`) it is
only able to handle IPv4 packages and is unnecessarily complicated.
The module `slipmux_net` (Serial line IP Multiplexing) enables the RIOT network
stack to send and receive IP packets over a serial interface. This collection
of tools originally from Contiki [1] enables Linux to interpret this data.
Though there is a tool for such operations on Linux (`slattach`) it is only
able to handle IPv4 packages and is unnecessarily complicated.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion drivers/Kconfig.net
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ rsource "dose/Kconfig"
rsource "mrf24j40/Kconfig"
rsource "pn532/Kconfig"
rsource "rn2xx3/Kconfig"
rsource "slipdev/Kconfig"
rsource "slipmux_dev/Kconfig"
endmenu # Network Device Drivers
4 changes: 2 additions & 2 deletions drivers/Makefile.dep
Original file line number Diff line number Diff line change
Expand Up @@ -238,8 +238,8 @@ ifneq (,$(filter si70%,$(USEMODULE)))
USEMODULE += si70xx
endif

ifneq (,$(filter slipdev_%,$(USEMODULE)))
USEMODULE += slipdev
ifneq (,$(filter slipmux%,$(USEMODULE)))
USEMODULE += slipmux_dev
endif

ifneq (,$(filter stmpe811_%,$(USEMODULE)))
Expand Down
191 changes: 0 additions & 191 deletions drivers/include/slipdev.h

This file was deleted.

Loading
Loading