kYc0o
bd81e010f8
examples/gnrc_tftp: avoid to print NULL
7 years ago
Neil Jones
0a3a67a9c4
examples/javascript: blacklist pic32-clicker.
7 years ago
Neil Jones
0bafa33f28
examples: javascript: Blacklist pic32-wifire
7 years ago
Neil Jones
1113b587c5
examples: gnrc_border_router: Blacklist all mips boards.
7 years ago
Emmanuel Baccelli
b5676a8262
examples: add javascript example
7 years ago
Thomas Eichinger
50ec6ffe2b
examples/gnrc_networking: fix comments
...
As the lines refered to in the comments are already commented out,
the correct thing to do to use them is to uncomment them.
7 years ago
Alexandre Abadie
b0bc908918
examples: remove nucleo-f302 from memory greedy examples
7 years ago
Alexandre Abadie
cc5034d67e
examples: remove nucleo32-l031 from memory intensive examples
7 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
```
7 years ago
Vincent Dupont
ad0f0877cc
tests,examples: sort BOARD_INSUFFICIENT_MEMORY alphabetically
7 years ago
Loïc Dauphin
4e68675656
examples: rename opencm9-04 into opencm904
7 years ago
Alexandre Abadie
f2c693b220
examples: remove nucleo-l053 from memory intensive examples
7 years ago
Martine Lenders
ae0d0a2634
Merge pull request #6623 from smlng/pr/net/add_static_ipv6_lladdr
...
add static IPv6 lladdr for tests
7 years ago
Francisco Acosta
29753d6018
Merge pull request #6433 from aabadie/nucleo_l073
...
boards/nucleo-l073: initial support
7 years ago
smlng
a2e7a2fea1
examples: add optional static link local ipv6 address in gnrc_networking
7 years ago
Hauke Petersen
25b6138315
examples: added emCute (MQTT-SN) example
7 years ago
Alexandre Abadie
e49727eda6
examples: exclude nucleo-l073 from memory greedy examples
7 years ago
Alexandre Abadie
a4f3a9efd6
examples: add nucleo32-f031 to unsufficient memory boards
7 years ago
zhuoshuguo
55a44470e0
gnrc: fix typos in README of gnrc_networking example.
7 years ago
Peter Kietzmann
02f03beb5c
Merge pull request #6591 from haukepetersen/rm_ltc4150
...
drivers: remove outdated ltc4150 driver
7 years ago
Ludwig Knüpfer
3bce74aee7
examples/gnrc_networking: update blacklist
...
NRF51822 based boards have enough memory for this project -> remove from `BOARD_INSUFFICIENT_MEMORY`
7 years ago
Hauke Petersen
6e6a14f449
drivers: remove outdated ltc4150 driver
7 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.
7 years ago
Simon Brummer
c6020cc100
examples: tests: move gnrc_tcp examples/ to tests/
7 years ago
Kaspar Schleiser
e9849e660f
pkg: iotivity: temporarily remove
7 years ago
Alexandre Abadie
0c1db826b5
Merge pull request #6403 from TizenTeam/sandbox/pcoval/on/master/patch
...
pkg: iotivity: Hide put_light function if not needed
7 years ago
Martine Lenders
5ea160e6fe
Merge pull request #6004 from miri64/posix/enh/use-sock-for-sockets
...
posix_sockets: port to sock
7 years ago
Martine Lenders
1ccdc4643f
posix_sockets: port to sock
7 years ago
Hauke Petersen
67fdd43ba8
Merge pull request #6398 from phectori/maple-mini
...
Boards: Add Maple mini
7 years ago
Hauke Petersen
10c46866d2
Merge pull request #5987 from aabadie/arduino_sketch_on_arduino
...
sys/arduino: make arduino sketch works on avr based boards
7 years ago
Sebastian Meiling
7f7329ea71
Merge pull request #4744 from brummer-simon/devel-gnrc_tcp
...
gnrc_tcp: initial implementation
7 years ago
Simon Brummer
abd307b89d
gnrc_tcp : initial implementation
7 years ago
Frits Kuipers
e483c2307b
boards/maple-mini: initial support
7 years ago
Martine Lenders
5b1c00ad8b
Merge pull request #6388 from astralien3000/opencm9-04
...
boards/opencm9-04 : initial support
7 years ago
Ken Bannister
342c3f2ed3
gcoap: Remove coap.h include file, which is no longer used.
...
Also change references in dependencies to the net/gcoap.h include.
7 years ago
Ken Bannister
e10e579593
gcoap: Update CLI example for rebase on sock
7 years ago
Loïc Dauphin
5c4bee1b1d
examples: add opencm9-04 to unsufficient memory boards in some examples
7 years ago
kYc0o
51e0aaede4
examples/gnrc_minimal: add DEVELHELP to catch non-valid configs
7 years ago
kYc0o
2bee616cfb
examples/gnrc_minimal: change to unambiguous UART port for XBee
7 years ago
Oleg Hahm
3c6678b037
*: fix mismatching endifs for header guards
7 years ago
Oleg Hahm
7ee7801c10
*: remove trailing underscores from header guards
7 years ago
Oleg Hahm
693636690c
Merge pull request #6399 from OlegHahm/timex_constants
...
timex: unambiguous time conversion macros
7 years ago
Oleg Hahm
4f4214235b
timex: unambiguous time conversion macros
7 years ago
Alexandre Abadie
59cc59059e
examples: add nucleo32-f303 to insufficient memory boards in some examples
7 years ago
Alexandre Abadie
0717129980
Merge pull request #6417 from aabadie/nucleo32-f042
...
boards/nucleo32-f042: change board name nucleo->nucleo32
7 years ago
Alexandre Abadie
963662416b
boards/nucleo32-f042: change board name nucleo->nucleo32
7 years ago
Kaspar Schleiser
88a46a95bd
Merge pull request #6136 from aabadie/nanocoap_put
...
examples/nanocoap_server: add resource for coap PUT/POST request
7 years ago
Philippe Coval
d587cf38df
pkg: iotivity: Hide put_light function if not needed
...
Without this change it fails to build from source:
client_switch.c:80:1:\
error: ‘put_light’ defined but not used [-Werror=unused-function]
At least with BOARD=arduino-mega2560, now all iotivity examples are building.
Bug: https://github.com/RIOT-OS/RIOT/issues/6241
Change-Id: I6b2af5ab6b8bf20e848dcd30d580990006c950e7
Signed-off-by: Philippe Coval <philippe.coval@osg.samsung.com>
7 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.
7 years ago
Martine Lenders
9666f58e6c
Merge pull request #6387 from haukepetersen/add_example_saul
...
examples: added stand-alone SAUL example
7 years ago