2d02bc0394
sys/fmt: add new byte to hex converters:
...
- fmt_bytes_hex: converts an array of bytes to an array of hex bytes
- fmt_hex_bytes: convert an array of hex bytes to an array of bytes
2018-01-10 21:30:39 +01:00
Martine Lenders
15224b0d91
ndp: sixlowpan_nd: explain maximum retransmission for DAD
...
In #8277 it was noted the doc of general ND definitions refers to
GNRC-specific behavior. This is now clarified with this fix.
2018-01-10 20:40:47 +01:00
Martine Lenders
4013adcf65
Merge pull request #8277 from miri64/doc/fix/must-not-may-not-wording
...
doc: Fix 'must not'/'may not' wording
2018-01-10 20:34:17 +01:00
Martine Lenders
f78b409e7b
Merge pull request #8344 from aabadie/pr/loramac_include_improve
...
sys/net/loramac: various improvements
2018-01-10 17:54:20 +01:00
18b1ac5022
sys/net/loramac: various improvements
...
- add missing typedef enums
- add default device class parameter
2018-01-10 17:46:03 +01:00
Sebastian Meiling
e38b5e7bb8
Merge pull request #8331 from Icaltary/fixed_stm32f1_page_size
...
arm bug minor cpu/stm32f1 Fixed wrong flash page sizes
2018-01-10 10:09:39 +01:00
7cc61d3811
Merge pull request #8341 from OTAkeys/pr/fix_native_rtc_init
...
native: call rtc_init from board_init
2018-01-10 09:46:38 +01:00
Daniel Frejek
2925ef9ab5
cpu/stm32f1: fixed flash page sizes
2018-01-09 22:06:27 +01:00
Vincent Dupont
1f0024b184
tests/pkg_fatfs_vfs: remove rtc_init call
2018-01-09 19:01:26 +01:00
Vincent Dupont
632bccb636
boards/native: call rtc_init from board_init
2018-01-09 19:01:09 +01:00
c996408679
Merge pull request #8322 from Inria-Chile/nucleo32-l031/adc-config
...
add board/nucleo32-l031 adc configuration
2018-01-09 17:47:23 +01:00
Sebastian Meiling
ebaa60a7f6
Merge pull request #8239 from OTAkeys/pkg_littlefs
...
fs: add littlefs as a package
2018-01-09 17:14:45 +01:00
Vincent Dupont
c8eb77e8ff
pkg: add littlefs pkg and vfs integration
2018-01-09 17:03:44 +01:00
Martine Lenders
9c1b6bd8c4
Merge pull request #8304 from PeterKietzmann/pr_drivers_kw2x_txbusy
...
drivers/kw2xrf: finish ongoing transmission before sending next frame
2018-01-09 16:59:03 +01:00
paula75
2a1c7680fa
boards/nucleo32-l031: add adc configuration
2018-01-09 12:33:25 -03:00
Martine Lenders
9163bdc406
Merge pull request #8328 from aabadie/pr/boards/doxygen
...
boards: fix doxygen inconsistencies and typos
2018-01-09 16:25:02 +01:00
Sebastian Meiling
e8a0b75ffd
Merge pull request #8334 from haukepetersen/fix_xtimer_remduplicatsetdecl
...
sys/xtimer: remove duplicat _xtimer_set declaration
2018-01-09 16:00:58 +01:00
Martine Lenders
810608e414
Merge pull request #8335 from OTAkeys/pr/can_fix_fall_through
...
can: fix fall through error
2018-01-09 15:59:30 +01:00
Hauke Petersen
6b526f05de
sys/xtimer: remove duplicat _xtimer_set declaration
2018-01-09 15:43:59 +01:00
Martine Lenders
03fdaaeb8c
Merge pull request #8338 from haukepetersen/add_event_timeoutclear
...
sys/event/timeout: add timeout_clear() function
2018-01-09 15:40:40 +01:00
Hauke Petersen
860470df53
tests/events: adapt timeout value to comment above
2018-01-09 15:24:54 +01:00
Hauke Petersen
36743c17a1
tests/events: s/printf/puts/ where applicable
2018-01-09 15:24:36 +01:00
Hauke Petersen
6c55b36943
tests/event: add test for timeout_clear + cleanup
2018-01-09 15:24:13 +01:00
Hauke Petersen
cef3d307c7
sys/event/timeout: fixed typos and line lengths
2018-01-09 15:21:40 +01:00
Hauke Petersen
03dccb568d
sys/event/timeout: add timeout_clear() function
2018-01-09 15:21:29 +01:00
Francisco Acosta
1bf222e07f
Merge pull request #8286 from smlng/enh/pkg/jerryscript
...
pkg: fix build jerryscript on macOS
2018-01-09 15:00:11 +01:00
MichelRottleuthner
198ced4933
pkg/fatfs: integrate diskio layer to mtd interface
2018-01-09 14:46:40 +01:00
MichelRottleuthner
ee17dae5af
pkg/fatfs: add vfs integration
2018-01-09 14:46:40 +01:00
Martine Lenders
7c166d9e1a
Merge pull request #8336 from aabadie/pr/loramac_class
...
sys/net/loramac: add device class enum
2018-01-09 14:27:17 +01:00
dd9e75a469
sys/net/loramac: add device class enum
2018-01-09 14:21:09 +01:00
2f4a7e28e9
Merge pull request #8268 from miri64/slipdev/enh/simplify-byte-unstuffing
...
slipdev: simplify and solidify byte-unstuffing
2018-01-09 10:53:54 +01:00
smlng
1e0c49ab65
examples/javascript: increase main stack for non-native
2018-01-09 10:25:31 +01:00
Vincent Dupont
fb393905dd
can: fix fall through error
2018-01-08 18:07:31 +01:00
Martine Lenders
c61a343193
slipdev: simplify and solidify byte-unstuffing
...
This simplifies and solidifies the reversal of SLIP's byte-stuffing
(aka byte-unstuffing ;-)) by
1. Using `tsrb` instead of `ringbuffer`: there are two actors. The ISR
and the device's event handler.
2. Moving the byte-unstuffing from the UART RX-handler (i.e. the ISR)
to the device's receive function (potentially not the ISR)
3. Removing the `pktfifo` member. The current number of bytes in the
ringbuffer is returned for `recv(data = NULL, len = 0)`. If that is
more than the packet contains (due to the byte stuffing it most
likely will be) the packet is reallocated in GNRC anyway.
2018-01-08 11:51:24 +01:00
Dylan Laduranty
87e3f10e8b
Merge pull request #8318 from PeterKietzmann/dnahm_nrf52_i2c
...
cpu/nrf52: add i2c driver and configs
2018-01-08 09:23:35 +01:00
Peter Kietzmann
3ff43439ae
Merge pull request #8323 from Inria-Chile/stml1/adc
...
cpu/stm32l1: fix ADC resolution register
2018-01-06 14:12:52 +01:00
paula75
128ab3a22e
cpu/stm32l1: fix ADC resolution register
2018-01-05 14:24:51 -03:00
ce66117dc0
boards/common/nucleo: use @name instead of @brief
2018-01-05 15:33:03 +01:00
5b5c99c27b
boards: fix doxygen typo on arduino
2018-01-05 15:32:20 +01:00
eaee364a1b
dist/tools/pyterm: fix flakes8 issues
2018-01-05 15:21:03 +01:00
c20948df09
dist/tools/pyterm: remove duplicate method in PubProtocol
...
probably a copy paste from
http://twistedmatrix.com/documents/13.0.0/core/howto/servers.html#auto1
'numProtocols' is not used anywhere else so we keep the second version
of the 'connectionLost' function.
2018-01-05 15:18:51 +01:00
Peter Kietzmann
71607bb12d
Merge pull request #8205 from haukepetersen/add_board_thingy52
...
boards: adds support for Nordic Thingy:52
2018-01-05 14:02:58 +01:00
d692b1dec9
Merge pull request #8327 from daniel-k/fix/tests_sx127x_channel
...
tests/sx127x: adapt to driver interface change
2018-01-05 13:42:33 +01:00
9578d17e93
dist/tools/flake8: update changed files regexp
...
to explicitly include pyterm
2018-01-05 13:39:25 +01:00
Martine Lenders
e888e47a0c
Merge pull request #8325 from miri64/gnrc_netif/enh/add-nrfmin-iid
...
gnrc_netif: add nrfmin IID support
2018-01-05 13:29:19 +01:00
daniel-k
f95463a8f2
tests/sx127x: deduce size of netopts from variable
...
This adapts automatically when a variable type changes, which is easy
to forget to change the correspondig netdev->set/get call.
2018-01-05 13:16:50 +01:00
daniel-k
0ee2bbe9f3
tests/sx127x: fix wrong usage of netdev->set()
2018-01-05 13:15:58 +01:00
Hauke Petersen
8d5b9edba4
boards/thingy52: use shared Makefile.include
2018-01-05 13:14:20 +01:00
Martine Lenders
b0b798001c
Merge pull request #8326 from miri64/gnrc_ipv6_nib/fix/nrfmin-ifdef
...
gnrc_ipv6_nib: fix nrfmin module check
2018-01-05 13:07:13 +01:00
Martine Lenders
c6833704dc
gnrc_netif: add nrfmin IID support
...
Adds a `nrfmin` case to IID generation, so an IID can be generated
from a `nrfmin` device's (short) address (the long address is just
4-time repetition of the short address).
2018-01-05 13:06:35 +01:00