Martine Lenders
a345a9dfa6
examples: add POSIX socket example
2015-09-22 22:25:02 +02:00
Martine Lenders
624530c7d0
posix: redo socket API to use conn
2015-09-22 22:24:52 +02:00
Oleg Hahm
171fb8e65c
IPv6 nc: missing debug parameter
2015-09-22 21:55:29 +02:00
Martine Lenders
67786b4a8b
Merge pull request #3936 from authmillenon/gnrc_ndp_node/fix/link-local-always-on-link
...
gnrc_ndp_node: always assume link-local dst to be on-link
2015-09-22 21:25:57 +02:00
Martine Lenders
549a3560aa
Merge pull request #3935 from authmillenon/gnrc_ipv6/fix/iface-may-be-from-input
...
gnrc_ipv6: iface might be from input on next hop determination
2015-09-22 21:25:41 +02:00
Martine Lenders
5d7501677f
gnrc_ipv6: iface might be from input on next hop determination
2015-09-22 20:43:29 +02:00
Martine Lenders
2a61ac936a
gnrc_ndp_node: always assume link-local dst to be on-link
2015-09-22 19:49:48 +02:00
Oleg Hahm
4232f2dca7
Merge pull request #3930 from cgundogan/pr/assert/move_last_instr
...
core/panic: call cpu_print_last_instruction before printing other things
2015-09-22 19:46:49 +02:00
Oleg Hahm
d1bd2ae0a3
Merge pull request #3931 from OlegHahm/6lbr_pick_right_next_hop
...
6lowpan: IPv6 next hop shouldn't supersede 6lo
2015-09-22 18:48:42 +02:00
Martine Lenders
4419a0a441
Merge pull request #3932 from cgundogan/pr/rpl/linklocal
...
rpl: fix src addr of outgoing control messages
2015-09-22 17:17:41 +02:00
Cenk Gündoğan
cb152c1455
rpl: fix src addr of outgoing control messages
2015-09-22 16:26:43 +02:00
Martine Lenders
8df17de95b
Merge pull request #3925 from authmillenon/gnrc_pktbuf_static/fix/short_snip
...
gnrc_pktbuf_static: fix marking of pktsnips with short payload
2015-09-22 16:20:22 +02:00
Oleg Hahm
a24b0f2b79
6lowpan: IPv6 next hop shouldn't supersede 6lo
...
If 6LoWPAN next hop determination and address resolution succeeds, it should not be superseded by IPv6 ND.
2015-09-22 16:12:00 +02:00
Cenk Gündoğan
8aa04e82a0
core/panic: call cpu_print_last_instruction before printing other messages
2015-09-22 14:54:55 +02:00
Hauke Petersen
1f02e7c86a
Merge pull request #3856 from haukepetersen/opt_l1_timer
...
cpu/stm32l1: optimized and fixed timer driver
2015-09-22 14:45:00 +02:00
Martine Lenders
542c1e82ac
gnrc_sixlowpan_nd: fix 6ctx option check
2015-09-22 14:36:44 +02:00
Hauke Petersen
712a096de3
boards/nucleo-l1: added xtimer configuration
2015-09-22 14:06:39 +02:00
Hauke Petersen
f93b58989d
Merge pull request #3837 from kaspar030/fix_msp430_context_switching
...
cpu: msp430-common: fix context save/restore
2015-09-22 12:45:12 +02:00
Hauke Petersen
92ee5d9562
boards/limifrog-v1: adjusted timer configuration
2015-09-22 12:30:41 +02:00
Hauke Petersen
c7d089d231
boards/nucleo-l1: adjusted timer configuration
2015-09-22 12:30:41 +02:00
Hauke Petersen
d7cf9b3912
cpu/stm32l1: optimized and fixed timer driver
2015-09-22 12:30:41 +02:00
Martine Lenders
d629e999b9
Merge pull request #3914 from OlegHahm/kw2xrf_short_addr
...
kw2xrf: short address getter and iid option
2015-09-22 11:59:44 +02:00
Oleg Hahm
a0957b11d6
Merge pull request #3926 from OlegHahm/some-scan-build-warnings
...
clean up: Some scan build warnings
2015-09-22 11:43:20 +02:00
Oleg Hahm
0a54f57043
kw2xrf: short address getter and iid option
2015-09-22 11:41:05 +02:00
Martine Lenders
3448569eb8
Merge pull request #3916 from OlegHahm/6lowpan_rtr_adv_mc_timer
...
6lowpan nc: rtr sol timer expects an interface
2015-09-22 11:28:44 +02:00
René Kijewski
d2afdf5079
crypto: memcpy()
in overlapping data in ccm
...
`memcpy()` must not be used if the input and output ranges overlap,
because it is undefined if the data if copied from front to the end or
vice versa.
Found via valgrind.
2015-09-22 11:01:56 +02:00
René Kijewski
7af7d37531
base64: remove unused calculation in base64_encode
...
Found via scan-build.
2015-09-22 11:01:56 +02:00
René Kijewski
05eb6e73d9
bloom: fix calloc invocation
...
Fix array member type (`char` vs `uint8_t`).
Found via scan-build.
2015-09-22 11:01:55 +02:00
Oleg Hahm
f0e2f50713
6lowpan nc: rtr sol timer expects an interface
2015-09-22 10:53:08 +02:00
Martine Lenders
e5c6e3da54
gnrc_pktbuf_static: fix marking of pktsnips with short payload
2015-09-22 10:50:57 +02:00
Martine Lenders
b254889b2b
tests: unittests: provide test for fix
2015-09-22 10:50:17 +02:00
483b59554a
cpu: msp430fxyz: fix usart ISR
2015-09-22 10:43:27 +02:00
c122571801
cpu: msp430-common: fix context save/restore
...
Previously, __restore_context was meddling with the to-be-restored
context SR on the stack, not correctly restoring GIE.
Now, we let the CPU restore the correct status register as saved in
__save_context.
Contains some simplification of the context save/restore logic.
2015-09-22 10:43:27 +02:00
Martine Lenders
00a0c90269
Merge pull request #3919 from authmillenon/examples/fix/gnrc-networking-output
...
examples/gnrc_networking: address output according to RFC 3986 and 5952
2015-09-22 06:38:38 +02:00
Oleg Hahm
c006381fd8
Merge pull request #3917 from OlegHahm/6lbr_rtr_sol_adv_fixes
...
6lowpan: some border router fixes
2015-09-21 23:55:55 +02:00
Oleg Hahm
f3f4d61f93
sixlowpan nd: 6LBR shouldn't send rtr sol over 6lo
2015-09-21 23:21:22 +02:00
Oleg Hahm
38b384c713
6lowpan: 6LBR should sent only one rtr adv
...
On a 6lo interface the border router should only send one router advertisement with its new address as source address.
2015-09-21 23:21:22 +02:00
Martine Lenders
9ce1c6df05
nhdp: use conn instead of socket_base
2015-09-21 21:37:13 +02:00
Martine Lenders
fda6155071
Merge pull request #3615 from authmillenon/conn/feat/initial
...
conn: Initial import of a light-weight network application API
2015-09-21 20:47:08 +02:00
Martine Lenders
ea3d4310d0
examples/gnrc_networking: address output according to RFC 3986 and 5952
2015-09-21 20:43:07 +02:00
Martine Lenders
77e778cd1b
Merge pull request #3906 from authmillenon/gnrc_networking/enh/arduino-mega2560
...
examples: unblacklist boards in gnrc_networking
2015-09-21 20:17:06 +02:00
Martine Lenders
39f8a41066
tests: add test application for gnrc_conn_ip
2015-09-21 20:09:08 +02:00
Martine Lenders
ef9acf6aee
gnrc: add GNRC-specific conn implementation
2015-09-21 16:56:27 +02:00
Martine Lenders
b87a3eab89
conn: Initial import of a light-weight network application API
2015-09-21 16:56:27 +02:00
Thomas Eichinger
36d3d9c4cd
boards/samr21-xpro: define serial port for OS X
2015-09-21 15:04:07 +02:00
Oleg Hahm
4b6626f8b2
Merge pull request #3902 from OlegHahm/xtimer_initialize_variables
...
xtimer: initialize struct members
2015-09-21 11:35:18 +02:00
Martine Lenders
172d12419f
Merge pull request #3910 from OlegHahm/6lowpan_nd_ar_opt_handle
...
6lowpan nd: check right NCE in AR handling
2015-09-21 09:49:23 +02:00
Oleg Hahm
682bde25d9
6lowpan nd: check right NCE in AR handling
...
When checking the address registration option, the address has to be passed in order to check the correct neighbor cache entry.
2015-09-21 09:25:12 +02:00
Joakim Gebart
96528ea266
cpu/k60: remove leftover files from old syscall implementation
2015-09-21 08:45:07 +02:00
Joakim Nohlgård
808b1abdd0
Merge pull request #3623 from gebart/pr/kinetis-timer-stop-fix
...
cpu/kinetis_common: periph/timer, read PIT value before stopping
2015-09-21 08:21:34 +02:00