Hauke Petersen
e44d741e31
tests/driver_xbee: remove redundant xbee config
6 years ago
Martine Lenders
29842bb5e4
netdev2: rename to netdev and remove `gnrc_netdev`
...
With some minor hand-edits I used the following chain of commands:
```sh
git rm sys/include/net/gnrc/netdev.h
git grep --name-only -i netdev2 | \
xargs sed -i -e 's/^\(NETDEV\)2\(.*\)\( [("]\)/\1\2 \3/g' \
-e 's/\(netdev\)2\(.*\)\( \/\*\*<\)/\1\2 \3/I' \
-e 's/\(netdev\)2/\1/gI'
git add -p
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
grep "netdev2" | xargs -I'{}' dirname '{}' | uniq | \
grep "netdev2" | while read dir; do
new_dir="$(echo "$dir" | sed "s/netdev2/netdev/g")"
git mv -f "$dir" "$new_dir"
done
git commit --amend
git ls-tree --full-tree -r HEAD --name-only | \
grep "netdev2" | while read file; do
new_file="$(echo "$file" | sed "s/netdev2/netdev/g")"
git mv -f "$file" "$new_file"
done
git commit --amend
git grep --name-only "\<drivers_netdev_netdev\>" | \
xargs sed -i "s/\<drivers_netdev_netdev\>/drivers_netdev_api/g"
git add -p
git commit --amend
```
6 years ago
Vincent Dupont
ad0f0877cc
tests,examples: sort BOARD_INSUFFICIENT_MEMORY alphabetically
6 years ago
Alexandre Abadie
cb10ba8b13
test/driver_xbee: fix xbee param UART export in Makefile
6 years ago
Alexandre Abadie
77df65e95e
tests: add nucleo32-f031 to unsufficient memory boards
6 years ago
kYc0o
abf6c3e53f
tests/driver_xbee: add DEVELHELP to catch non-valid configs
6 years ago
kYc0o
a2f54a0e58
tests/driver_xbee: reduce pktbuf size to cover small platforms
6 years ago
Alexandre Abadie
963662416b
boards/nucleo32-f042: change board name nucleo->nucleo32
6 years ago
Oleg Hahm
df7927dc94
shell: introduce txtsnd pseudomodule
...
This commit allows to enable/disable the txtsnd shell command. The
command is used to send strings over L2 in GNRC. Until now the command
was automatically enabled if GNRC and shell_commands were present, which
may lead to confusion if no L2 packet handler is registered.
6 years ago
Hauke Petersen
7e715014ca
tests/driver_xbee: adapted to XBee driver changes
6 years ago
Hauke Petersen
83d206e2b0
drivers/xbee: adapted to netdev2
6 years ago
Vincent Dupont
1a12a40110
boards/nucleo-f042: initial support
6 years ago
Martine Lenders
964cd75c3c
tests/driver_xbee: add nucleo-f334 to insufficient RAM
6 years ago
Martine Lenders
dc45cd2610
gnrc: use new netreg helper functions everywhere
6 years ago
Alexandre Abadie
3f29e77a4c
boards/nucleo-f030: initial support
6 years ago
Oleg Hahm
3ba99aabe4
xbee: fix naming inconsistency
7 years ago
Cenk Gündoğan
047fd79ae6
tests: use global gnrc_pktdump_pid
7 years ago
Joakim Nohlgård
dc303a4f0b
sys/uart_stdio: rename STDIO -> UART_STDIO_DEV, move to header
7 years ago
Hauke Petersen
77d40d789d
tests/driver_xbee: simplified Makefile
7 years ago
Hauke Petersen
4e18d9e1a5
tests: blacklisted some boards for insufficent RAM
7 years ago
Paul Rathgeb
cefe2a6698
make: Blacklisted the board 'weio' for some test due to insufficient
...
RAM/ROM
Blacklisted LPC11Uxx.h for doxygen
7 years ago
Kaspar Schleiser
25f900e489
tests, examples: adapt to simplified shell
8 years ago
Cenk Gündoğan
25802adbe8
tests/driver_xbee: BOARD_INSUFFICIENT_RAM => BOARD_INSUFFICIENT_MEMORY
8 years ago
Martine Lenders
c2706ef492
auto_init: rename auto_init_ng_netif to auto_init_gnrc_netif
8 years ago
Martine Lenders
58ff31bfe9
gnrc: make all gnrc modules sub-modules of gnrc
8 years ago
Martine Lenders
b969eeb217
gnrc: rename ng_netbase to gnrc
8 years ago
Hauke Petersen
1bd7111a7b
tests: pass [get|put]char directly in shell_init
8 years ago
Hauke Petersen
e0241dfcad
tests/driver_xbee: s/GPIO_NUMOF/GPIO_UNDEF/
8 years ago
Hauke Petersen
48096c43d9
test/driver_xbee: removed obsolete auto_init file
8 years ago
Hauke Petersen
24c85bbbe1
test/driver_xbee: removed obsolete auto_init file
8 years ago
Lucas Jenss
426170b064
Improve naming of thread stacksize/priority constants
...
As discussed in #2725 , this commit renames a number of stacksize constants to
better convey their intended usage. In addition, constants for thread priority
are given a `THREAD_` prefix. Changes are:
* KERNEL_CONF_STACKSIZE_PRINTF renamed to THREAD_EXTRA_STACKSIZE_PRINTF
* KERNEL_CONF_STACKSIZE_DEFAULT renamed to THREAD_STACKSIZE_DEFAULT
* KERNEL_CONF_STACKSIZE_IDLE renamed to THREAD_STACKSIZE_IDLE
* KERNEL_CONF_STACKSIZE_MAIN renamed to THREAD_STACKSIZE_MAIN
* Move thread stacksizes from kernel.h to thread.h, since the prefix changed
* PRIORITY_MIN renamed to THREAD_PRIORITY_MIN
* PRIORITY_IDLE renamed to THREAD_PRIORITY_IDLE
* PRIORITY_MAIN renamed to THREAD_PRIORITY_MAIN
* Move thread priorities from kernel.h to thread.h since the prefix has changed
* MINIMUM_STACK_SIZE renamed to THREAD_STACKSIZE_MINIMUM for consistency
8 years ago
Kaspar Schleiser
a89b382297
drivers: xbee: adapt to new auto_init_ng_netif scheme
8 years ago
haukepetersen
8e0d4ab463
tests/driver_xbee: adjusted to interface auto_init
8 years ago
Hauke Petersen
490192e88f
tests/driver_xbee: added output after init
8 years ago
Hauke Petersen
3f5a3cf0bc
tests/driver_xbee: adjusted to pktdump changes
8 years ago
Hauke Petersen
391c7229c9
tests: added manual test for xbee driver
8 years ago