Martine Lenders
ba3c099f16
gnrc_sixlowpan_nd: remove unused config variable (and its header)
2019-04-17 21:47:48 +02:00
Martine Lenders
2091f168d1
gnrc_sixlowpan: expose configuration via config group
2019-04-17 21:47:48 +02:00
Martine Lenders
0eba62e5b0
make: don't execute tilde files on test target
...
My system (Ubuntu 16.04) creates a backup when opening a file with
`vim`. This backup is called `filename~`. Due to it being a copy of the
file before opening, it also is executable, which is why it is selected
for execution with the `make test` target.
This change makes the `TESTS` macro exclude files ending in `~`. This
way files ending in `~` are not executed with `make test`.
Since e.g. projects like NextCloud are excluding such files also from
their sync [[1]], I think this is fine.
[1]: d7b881feb6/sync-exclude.lst (L3)
2019-04-17 19:48:35 +02:00
Martine Lenders
c2cf1b209c
Merge pull request #11411 from SemjonKerner/nrf_fix_reset_pin
...
dist/tools/nrf52_resetpin: delete obsolete register
2019-04-17 19:32:35 +02:00
Yegor Yefremov
3d6bc49d9a
boards/esp32-olimex-evb: fix comment typo
...
Replace "ob-board" with "on-board" in LED description.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
2019-04-17 16:59:48 +02:00
Yegor Yefremov
29a3b25379
cpu/esp32: revise CAN support
...
CAN interface is now supported in RIOT. Change feature table
accordingly.
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
2019-04-17 16:59:39 +02:00
Semjon Kerner
f72cb846da
dist/tools/nrf52_resetpin: delete obsolete register
2019-04-17 15:32:48 +02:00
Martine Lenders
b23fa61a8a
Merge pull request #11407 from aabadie/pr/boards/calliope-mini-programmer
...
boards/calliope-mini: rework programmer config (openocd and pyocd)
2019-04-17 15:01:40 +02:00
ccebd2bd2f
boards/calliope-mini: enable pyocd programmer option
2019-04-17 14:09:29 +02:00
b4fcccc8fe
boards/calliope-mini: use dap adapter with openocd
2019-04-17 14:08:02 +02:00
Martine Lenders
1930368fd5
backport_pr: exit early when backport branch already exists
2019-04-17 12:44:21 +02:00
Martine Lenders
a7459e7463
backport_pr: don't assume devel remote to be 'origin'
2019-04-17 12:42:02 +02:00
Martine Lenders
989e2c6303
backport_pr: add function to find remote by URL
2019-04-17 12:35:14 +02:00
Martine Lenders
a9767889fc
backport_pr: make error branch handling more idempotent
...
Otherwise, when an error occurs (e.g. credentials wrong on git push)
the worktree and the release branch still exists, which might be hard to
remove for a newcomer not knowing about `git worktree`.
2019-04-17 12:11:53 +02:00
Martine Lenders
5e789c6595
Merge pull request #11395 from SemjonKerner/nrfmin_fix_isr
...
cpu/nrf5x/nrfmin: fix isr termination
2019-04-16 11:27:54 +02:00
Martine Lenders
41657fcffb
Merge pull request #11403 from aabadie/pr/examples/core_typo
...
examples/cord_ep: fix typo in node information + move it in a define
2019-04-16 11:27:20 +02:00
Dylan Laduranty
8c708110e5
Merge pull request #11317 from benpicco/sam0-rtc
...
sam0_common: make RTC implementation common across all sam0 MCUs
2019-04-16 11:03:24 +02:00
75d9e7892c
examples/cord_ep: move node information in a define
2019-04-16 10:10:11 +02:00
bbbb62b571
examples/cord_ep: fix typo in node information
2019-04-16 10:09:11 +02:00
Benjamin Valentin
9aa8c619c1
sam0_common: make RTC implementation common across all sam0 MCUs
...
The currently supported SAM0 MCUs (samd21, saml21, saml1x) share the
same RTC peripheral, yet each of them carries it's own copy of the RTC
driver.
Unify the drivers and move them to sam0_common.
2019-04-15 22:25:47 +02:00
Semjon Kerner
245a499f89
Merge pull request #11399 from miri64/gnrc_netif_ieee802154/fix/i11398
...
gnrc_netif_ieee802154: check if mhr_len is lesser than nread
2019-04-15 16:51:52 +02:00
Martine Lenders
3c19aa7dfc
gnrc_netif_ieee802154: check if mhr_len is lesser than nread
2019-04-15 16:36:31 +02:00
Juan I Carrano
7169695cb5
Merge pull request #11379 from kaspar030/tests/pthread_cooperation_disable_hifive1
...
tests/pthread_cooperation: add hifive1 to BLACKLIST
2019-04-15 13:52:42 +02:00
Sebastian Meiling
d08a6132bf
Merge pull request #10934 from gschorcht/cpu_atmega_common_heap
...
cpu/atmega_common: make remaining RAM available as heap
2019-04-15 13:17:57 +02:00
Sebastian Meiling
35c617e08a
Merge pull request #10883 from gschorcht/esp_common_xtensa
...
cpu/esp*: Xtensa vendor code moved to esp_common
2019-04-15 13:17:01 +02:00
Semjon Kerner
f8873c31ff
cpu/nrf5x/nrfmin: fix isr termination
2019-04-15 13:15:49 +02:00
Gunar Schorcht
de91b8dc88
cpu/esp8266: add LoadStoreError exception handler
...
Usually, the access to the IROM (flash) memory requires 32-bit word aligned reads. Attempts to access data in the IROM (flash) memory less than 32 bits in size triggers a LoadStoreError exception. With the exception handler from esp-open-rtos it becomes possible to access data in IROM (flash) with a size of less than 32 bits and thus to place .rodata sections in the IROM (flash).
2019-04-15 12:50:44 +02:00
Gunar Schorcht
b17070fbf1
cpu/esp_common: doc fixes
2019-04-15 12:50:44 +02:00
Gunar Schorcht
70ab7501af
cpu/esp8266: move xtensa lib to esp_common
2019-04-15 11:46:57 +02:00
Gunar Schorcht
18ebfdf059
cpu/esp32: move xtensa lib to esp_common
2019-04-15 11:45:59 +02:00
Gunar Schorcht
5f1383c27d
cpu/esp_common: xtensa vendor files added
2019-04-15 11:45:59 +02:00
Gunar Schorcht
fe3d325fd9
cpu/esp32: remove temporary code
2019-04-15 11:45:59 +02:00
Gunar Schorcht
28d9599d52
cpu/esp32: fix coprocessor stack alignment
2019-04-15 11:45:59 +02:00
Gunar Schorcht
950dfba7de
cpu/esp32: SDK_USED replace by MODULE_ESP_SDK
2019-04-15 11:45:59 +02:00
Gunar Schorcht
ec1980a438
cpu/esp32: RIOT_OS macro replaced by RIOT_VERSION
2019-04-15 11:45:59 +02:00
Gunar Schorcht
7cc1ee3f6d
cpu/esp32: SDK_INT_HANDLING definition removed
2019-04-15 11:45:59 +02:00
Gunar Schorcht
2ac4d08b43
cpu/esp8266: same xtensa basics as ESP32
2019-04-15 11:45:59 +02:00
Gunar Schorcht
75c0d06913
cpu/esp8266: changes for ESP32 compatibility
2019-04-15 11:45:59 +02:00
Gunar Schorcht
dc7f979201
cpu/esp8266: SDK interrupt handling removed
2019-04-15 11:45:59 +02:00
33a4b307a1
Merge pull request #11391 from gdoffe/motor_driver_headers
...
drivers: add licence to motor_driver source files
2019-04-13 09:34:45 +02:00
Ken Bannister
a4b909dba4
Merge pull request #11386 from chrysn-pull-requests/nanocoap-add-opaque
...
nanocoap: Support adding opaque (blob / buffer) data
2019-04-12 23:47:35 -04:00
Gilles DOFFE
3a83648f2a
drivers: add licence to motor_driver source files
...
Related to PR #10290 , add missing licence to some source files.
Signed-off-by: Gilles DOFFE <g.doffe@gmail.com>
2019-04-13 00:29:58 +02:00
danpetry
b3ed7ade10
tests/periph_rtt: Correct the test script syntax
...
Previously the test was failing due to apparently incorrect Python syntax in
the testrunner script. This fix corrects this and the test now passes.
2019-04-12 14:39:14 +02:00
75671ac208
Merge pull request #11355 from fjmolinas/pr_eeprom_wait_for_op
...
stm32_common/flash: move wait_for_pending_operation to flash_common
2019-04-12 13:36:01 +02:00
0ea3c4f984
Merge pull request #11383 from aabadie/pr/cpu/stm32l0_pm_initial_blocker
...
cpu/stm32: centralize PM_BLOCKER_INITIAL define
2019-04-12 11:52:02 +02:00
db9b341a36
cpu/stm32f1-l0: remove redundant PM_BLOCKER_INITIAL define
2019-04-12 11:10:48 +02:00
chrysn
09dc930d3a
nanocoap: add some const qualifiers
2019-04-12 11:04:47 +02:00
chrysn
a51460984b
nanocoap: Add coap_opt_add_opaque
...
This option complements the existing coap_opt_add_{uint,string} and even
more special-purpose functions; its implementation is trivial given the
existing static _add_opt_pkt function.
The method is useful when working with ETags (ETag, If-Match options).
2019-04-12 11:04:47 +02:00
10d5554f03
Merge pull request #10944 from gschorcht/cpu/msp430_common_heap_real
...
cpu/msp430_common: add real malloc/free functions
2019-04-12 10:59:00 +02:00
Marian Buschsieweke
b0094a69af
Merge pull request #11380 from gschorcht/cpu/esp32/write_fix
...
cpu/esp32: use modules newlib_syscalls_default and stdio_uart by default
2019-04-12 10:58:36 +02:00