1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

tests/driver_xbee: uncrustify, format Makefile

This commit is contained in:
Francisco Molina 2021-11-02 16:59:32 +01:00
parent 5579fd2220
commit 3dd0829c82
2 changed files with 3 additions and 1 deletions

View File

@ -29,10 +29,12 @@ int main(void)
/* enable pktdump output */
gnrc_netreg_entry_t dump = GNRC_NETREG_ENTRY_INIT_PID(GNRC_NETREG_DEMUX_CTX_ALL,
gnrc_pktdump_pid);
gnrc_netreg_register(GNRC_NETTYPE_UNDEF, &dump);
/* start the shell */
char line_buf[SHELL_DEFAULT_BUFSIZE];
shell_run(NULL, line_buf, SHELL_DEFAULT_BUFSIZE);
return 0;

View File

@ -1,6 +1,6 @@
USEMODULE += xbee
# No need of big buffer for this test
GNRC_PKTBUF_SIZE=512
GNRC_PKTBUF_SIZE ?= 512
include ../driver_netdev_common/Makefile.netdev.mk