Hauke Petersen
92076cdf50
example/gnrc_border_router: use TERMDEPS
6 years ago
kYc0o
4880ea3cc6
examples/gnrc_border_router: add commented lines for SLIP
6 years ago
Neil Jones
1113b587c5
examples: gnrc_border_router: Blacklist all mips boards.
6 years ago
Alexandre Abadie
b0bc908918
examples: remove nucleo-f302 from memory greedy examples
6 years ago
Alexandre Abadie
cc5034d67e
examples: remove nucleo32-l031 from memory intensive examples
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
Loïc Dauphin
4e68675656
examples: rename opencm9-04 into opencm904
6 years ago
Alexandre Abadie
f2c693b220
examples: remove nucleo-l053 from memory intensive examples
6 years ago
Alexandre Abadie
e49727eda6
examples: exclude nucleo-l073 from memory greedy examples
6 years ago
Alexandre Abadie
a4f3a9efd6
examples: add nucleo32-f031 to unsufficient memory boards
6 years ago
Neil Jones
bc57f42a2a
gnrc_boarder_router: blacklist mips-malta board
...
No UART is available on the mips-malta board so blacklist this board.
6 years ago
Frits Kuipers
e483c2307b
boards/maple-mini: initial support
6 years ago
Loïc Dauphin
5c4bee1b1d
examples: add opencm9-04 to unsufficient memory boards in some examples
6 years ago
Alexandre Abadie
59cc59059e
examples: add nucleo32-f303 to insufficient memory boards in some examples
6 years ago
Alexandre Abadie
963662416b
boards/nucleo32-f042: change board name nucleo->nucleo32
6 years ago
Vincent Dupont
1a12a40110
boards/nucleo-f042: initial support
6 years ago
Kaspar Schleiser
f44763f346
make: adapt Makefiles to AD -> Q rename
6 years ago
Hauke Petersen
c1f308ba85
examples: blacklisted calliope-mini
6 years ago
Hauke Petersen
4040493e2c
examples: blacklisted microbit for insufficiant RAM
6 years ago
Alexandre Abadie
58983de28a
examples/gnrc_networking: fix custom channel definition
6 years ago
Martine Lenders
6104d44cbe
examples: fix default channel setting for all radios
...
The config assumed it was a 2.4 GHz radio. This solution isn't perfect
either but eliminates a few more cases.
6 years ago
Alexandre Abadie
1659f56904
boards/nucleo-f070: initial support for nucleo-f070 board
6 years ago
Alexandre Abadie
3f29e77a4c
boards/nucleo-f030: initial support
6 years ago
Martine Lenders
3b4f025e5d
gnrc_border_router: use start_network.sh script as for term target
7 years ago
Alexandre Abadie
87ca058417
makefiles: expose a single DEFAULT_CHANNEL variable
7 years ago
Alexandre Abadie
abe5c19407
dist/tools: make ethos baudrate configurable
7 years ago
Leon M. George
fc668c4857
examples/gnrc_border_router: cc2650stk insufficient memory
7 years ago
kYc0o
6d7f3aee18
examples/gnrc_border_router: Add ethos and start_network.sh to README.md
7 years ago
Kaspar Schleiser
0725d3ef0d
examples: gnrc_border_router: clean up ethos configuration
7 years ago
Kaspar Schleiser
ce16c247bd
examples: gnrc_border_router: switch to UHCP + ethos
7 years ago
José Ignacio Alamos Aste
cc0e94f9c6
blacklist: nucleo-f072: blacklisted several examples and tests
7 years ago
Oleg Hahm
10f5f1aa33
make: introduce netif_default pseudomodule
...
Additionally the dependencies for GNRC specific modules are centralized in Makefile.dep.
7 years ago
Victor Arino
3a8a932b27
boards/nucleo-f103: add support for nucleo-f103
7 years ago
Hauke Petersen
729e4d1992
examples/gnrc_border_router: blacklisted boards
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
Oleg Hahm
b538c74229
examples: spending the main thread a message queue
...
Since it is likely that the main thread will send netapi IPC calls that expects a reply. These replies may come faster than the thread can handle them, causing the layers below to stuck.
7 years ago
Cenk Gündoğan
bab642bd37
examples/gnrc_border_router: README fixes
7 years ago
Oleg Hahm
04bda78e7f
examples: removed superfluous blacklisting
...
ATmega now has a panic function, no need for blacklisting any more.
7 years ago
Oleg Hahm
474c6d63c8
gnrc_border_router: added a first draft for a README
7 years ago
Martine Lenders
f6be1cee25
examples: provide example application for a 6LoWPAN border router
7 years ago