Gaëtan Harter
c1b32fe1f3
boards/iotlab: rely on OPENOCD_RESET_USE_CONNECT_ASSERT_SRST
...
Use the new OPENOCD_RESET_USE_CONNECT_ASSERT_SRST to configure
'reset_config connect_assert_srst' when flashing and resetting only.
This removes the need for a special debug configuration and should allow
connecting to a running target again.
2019-09-02 16:12:55 +02:00
Kevin "Tristate Tom" Weiss
d9b0db0d61
Merge pull request #11976 from fjmolinas/pr_stm32f0x_extra_flash
...
dist/tools/openocd: add OPENOCD_EXTRA_INIT_RESET use for nucleo-f091rc
2019-09-02 15:54:24 +02:00
Francisco Molina
06c830e8cd
boards/nucleo-f091rc: set OPENOCD_RESET_USE_CONNECT_ASSERT_SRST
...
- Nucleo-f091rc can become unflashable when hardfaults occure.
To make sure flashing succeeds `connect_assert_srst` is called
before connecting to flash threw openocd.
2019-09-02 14:54:38 +02:00
Francisco Molina
900875c603
dist/tools/openocd: add OPENOCD_EXTRA_INIT_RESET
...
- Add a variable to add extra openocd commands before resetting
a board. These will not be called when `debug`, in contrast
to OPENOCD_CONFIG, OPENOCD_EXTRA_INIT and OPENOCD_ADAPTER_INIT.
- Add connect_assert_srst to reset config if
OPENOCD_RESET_USE_CONNECT_ASSERT_SRST=1
2019-09-02 14:53:51 +02:00
benpicco
f74381c77b
Merge pull request #12142 from fabian18/drivers/at86rf2xx_do_not_hang_on_no_dev
...
drivers/at86rf2xx: do not hang on no dev
2019-09-02 12:21:15 +02:00
benpicco
3901740ef2
Merge pull request #12130 from miri64/posix_sockets/fix/i10308-526716024
...
posix_socket: set sock for returned socket on accept()
2019-09-02 12:05:13 +02:00
fabian18
2edf153cf8
drivers/at86rf2xx: do not hang on no dev
2019-09-02 10:27:24 +02:00
benpicco
d991883c5b
Merge pull request #12025 from twostairs/feature/nucleo-l031k6-i2c
...
board/nucleo-l031k6: Add i2c to periph_conf
2019-09-01 17:57:49 +02:00
Marius
d6b6b7a529
board/nucleo-l031k6: Add i2c to periph_conf
2019-09-01 17:14:06 +02:00
benpicco
a10c3f09a4
Merge pull request #12136 from aabadie/pr/tests/driver_io1_xplained_printf_float
...
tests/driver_io1_xplained: remove printf_float dependency
2019-09-01 15:43:04 +02:00
6754f71c3a
tests/driver_io1_xplained: remove printf_float dependency
...
This saves a lot of ROM and is easily replaced with basic temperature computation
2019-09-01 15:16:32 +02:00
Daniele Lacamera
5cb76e521b
posix_socket: set sock for returned socket on accept()
2019-08-30 21:18:25 +02:00
benpicco
2101458900
Merge pull request #11911 from maribu/arm7_common-irq
...
cpu/arm7_common: Cleaned up IRQ code
2019-08-30 19:17:09 +02:00
benpicco
837f99e757
Merge pull request #12084 from nmeum/pr/gnrc_tcp_minlen
...
gnrc_tcp: add minimum length check to _receive
2019-08-30 17:37:20 +02:00
benpicco
7d3f20b1a8
Merge pull request #12088 from nmeum/pr/gnrc_tcp_option_overflow
...
gnrc_tcp: fix integer underflow in option parser
2019-08-30 17:34:39 +02:00
Juan I Carrano
6a56225030
Merge pull request #12123 from cladmi/pr/make/optional_cflags
...
makefiles/cflags.inc.mk: handle optional cflags
2019-08-30 16:34:03 +02:00
Martine Lenders
93fa48df71
Merge pull request #12124 from cgundogan/pr/ccnlite-bump
...
pkg: ccn-lite: version bump
2019-08-30 13:33:12 +02:00
Cenk Gündoğan
a4bd845c81
pkg: ccn-lite: version bump
2019-08-29 21:54:20 +02:00
Gaëtan Harter
909552e3c0
makefiles/cflags.inc.mk: change optional CFLAGS to 'OPTIONAL_CFLAGS'
...
Update the optional flags to use 'OPTIONAL_CFLAGS' instead of evaluating
everytime.
They are now blacklisted by architecture/toolchain according to the
current docker reference image.
2019-08-29 17:43:54 +02:00
Gaëtan Harter
043534daf9
llvm: blacklist incompatible CFLAGS
...
Blacklist incompatible CFLAGS that are currently "optionally" included
in 'cflags.inc.mk'.
This prepares for the migration to 'OPTIONAL_CFLAGS'.
2019-08-29 17:43:54 +02:00
Gaëtan Harter
e4331e8391
cpu/arch: blacklist incompatible CFLAGS
...
Blacklist incompatible CFLAGS that are currently "optionally" included
in 'cflags.inc.mk'.
This prepares for the migration to 'OPTIONAL_CFLAGS'.
2019-08-29 17:43:54 +02:00
Gaëtan Harter
785f868ee0
makefiles/cflags.inc.mk: handle optional cflags
...
Handle declaring OPTIONAL_CFLAGS and blacklisting them with
OPTIONAL_CFLAGS_BLACKLIST.
This should replace checking everytime if options are supported.
2019-08-29 17:43:54 +02:00
Juan I Carrano
866b126f36
Merge pull request #12119 from cladmi/pr/makefiles/utils/uppercase_function
...
makefiles/utils: functions for lowercase and uppercase
2019-08-29 16:04:58 +02:00
Kevin "Tristate Tom" Weiss
969e3b3e95
Merge pull request #12098 from cladmi/pr/export/remove_local_export_compilation_variables
...
make: do not locally export compilation variables
2019-08-29 14:32:22 +02:00
Gaëtan Harter
765f3e9327
makefiles/utils: functions for lowercase and uppercase
...
Add make only function to convert strings to lowercase and uppercase.
This can replace the `$(shell echo $(var) | tr 'a-z-' 'A-Z_')` pattern.
Using the 'make' implementation results in being around 100 times faster.
2019-08-29 13:59:31 +02:00
Martine Lenders
a568090697
Merge pull request #12065 from haukepetersen/add_ccnl_bleboards
...
NDN-over-BLE: enable CCN-lite to use BLE as link layer
2019-08-29 13:54:06 +02:00
e9ea6a02ed
Merge pull request #12068 from twostairs/board_nucleo-l432kc_i2c
...
board/nucleo-l432kc: Implementing I2C for board
2019-08-29 13:33:57 +02:00
Martine Lenders
1f086932d5
Merge pull request #12046 from Harisanthosh/gnrc_udp_nullpointer
...
net/gnrc/udp: Adding Null pointer check in gnrc_netif_hdr_build
2019-08-29 13:01:18 +02:00
Martine Lenders
b83c7dd61d
Merge pull request #11927 from maribu/arduino-leonardo
...
cpu/atmega32u4: Fixed external interrupts; boards/arduino-leonardo: Fixed dependency tracking
2019-08-29 12:12:56 +02:00
Martine Lenders
0d37727ebc
Merge pull request #12113 from haukepetersen/fix_board_reelmissingradiofeature
...
boards/reel: add missing radio_nrf52840 feature
2019-08-29 11:30:58 +02:00
Hauke Petersen
33eb83ff42
sys/shell/nimble: make default name more generic
2019-08-29 11:23:51 +02:00
Hauke Petersen
178dfbb4c0
examples/ccn-lite-relay: whitelist nrf52(840)dk
2019-08-29 11:23:51 +02:00
Hauke Petersen
de890bd9a8
sys/shell/nimble: only print ip addr if ipv6 is used
2019-08-29 11:23:51 +02:00
Hauke Petersen
d961ceefbe
boards/reel: add missing radio_nrf52840 feature
2019-08-29 10:51:17 +02:00
Gaëtan Harter
1be5b7b10b
cpu: do not locally export compilation variables
...
These are already exported by `makefiles/vars.inc.mk`.
It is a prerequisite to allow handling compilation without global exports.
2019-08-29 10:35:53 +02:00
Gaëtan Harter
ef542ef92c
boards: do not locally export compilation variables
...
These are already exported by `makefiles/vars.inc.mk`.
It is a prerequisite to allow handling compilation without global exports.
2019-08-29 10:35:44 +02:00
Gaëtan Harter
34f69245c3
makefiles: do not locally export compilation variables
...
These are already exported by `makefiles/vars.inc.mk`.
It is a prerequisite to allow handling compilation without global exports.
2019-08-29 10:35:36 +02:00
Gaëtan Harter
15e9812ffb
pkg/oonf_api: remove exporting CFLAGS and INCLUDES
...
CFLAGS and INCLUDES are already exported by `makefiles/vars.inc.mk`.
It is a prerequisite to allow handling compilation without global exports.
2019-08-29 10:35:36 +02:00
Gaëtan Harter
a68bf99086
makefiles/vars.inc.mk: export CFLAGS_CPU
...
CFLAGS_CPU is required for 'pkg/openthread'. So declare it as a global
compilation variable.
The goal is to move the export to `makefiles/vars.inc.mk` and remove the
local exports that could be in boards/cpu/arch.
2019-08-29 10:35:36 +02:00
Martine Lenders
4c56827508
Merge pull request #12112 from haukepetersen/fix_nimble_doxygroupname
...
pkg/nimble: fix doxygen group name prefix
2019-08-29 10:23:38 +02:00
Hauke Petersen
eadc0e62f2
pkg/nimble: fix doxygen group name prefix
2019-08-29 10:04:08 +02:00
Martine Lenders
d6ac49c26e
Merge pull request #11578 from haukepetersen/add_nimble_netif
...
pkg/nimble: add IP-over-BLE support via netif/GNRC
2019-08-28 17:10:48 +02:00
Hauke Petersen
16bbd2f864
tests/unittests/bluetil: adapt to byteorder fixes
2019-08-28 16:49:21 +02:00
Hauke Petersen
a237971cfd
tests/l2util: adapt to changes for BLE
2019-08-28 16:49:21 +02:00
Hauke Petersen
dff436be63
boards/reel: make nrf802154 the default radio
2019-08-28 16:49:21 +02:00
Hauke Petersen
891294d3b7
pkg/nimble: temporary LLVM workaround for NimBLE
2019-08-28 16:49:21 +02:00
Hauke Petersen
3a381d865e
examples/ndn-ping: blacklist nrf52-based boards
...
The blacklisted boards use NimBLE as default network stack. But
NimBLE and ndn-riot do not build simultaneously, as they use
clashing crpyto libraries (uECC vs tinycrypt).
2019-08-28 16:49:21 +02:00
Hauke Petersen
da494251b6
board/nrf52840dk: fix order in Makefile.dep
2019-08-28 16:49:21 +02:00
Hauke Petersen
eb6673f769
pkg/nimble: add README on how to connect to Linux
2019-08-28 16:49:20 +02:00
Hauke Petersen
d127d18384
boards/nrf52: set NimBLE for gnrc_netdev_default
2019-08-28 16:49:20 +02:00