2b45d0e976
pkg/pkg.mk: remove non needed capital letter
2020-06-09 15:12:54 +02:00
MichelRottleuthner
bd44f63557
Merge pull request #14150 from miri64/lwip/enh/netdev_tap_ipv4
...
lwip: add IPv4 support for `netdev_tap`
2020-06-09 14:30:02 +02:00
Hauke Petersen
f024b4cd30
pkg/nimble/netif: remove redundant netif ptr
2020-06-09 12:27:08 +02:00
Martine S. Lenders
f5c4a05281
lwip: add IPv4 support for netdev_tap
2020-06-09 12:12:54 +02:00
b3620b35b8
pkg/lwip: add support for nrf802154
2020-06-07 21:24:14 +02:00
Martine Lenders
5ab1633c04
Merge pull request #14149 from miri64/sock_dtls/enh/udp_sock_getter
...
sock_dtls: provide getter function for UDP sock
2020-05-26 22:30:43 +02:00
Martine Lenders
a38428b8f2
Merge pull request #13701 from miri64/lwip_sock/enh/recv_buf
...
lwip_sock: provide implementation for `sock_*_recv_buf()`
2020-05-26 21:33:09 +02:00
Martine S. Lenders
ccdcc3679c
tinydtls: provide implementation for sock_dtls_get_udp_sock
2020-05-26 20:37:42 +02:00
eee5bf178d
Merge pull request #13993 from benpicco/examples/filesystem-fatfs
...
examples/filesystem: add support for fatfs on SD card
2020-05-26 19:20:47 +02:00
MichelRottleuthner
b13a4d6c9c
Merge pull request #14060 from miri64/lwip_sock/fix/re-recv-signal
...
lwip_sock: re-issue receive events if there are still received messages after `*_recv()` or `*_accept()` was called.
2020-05-22 15:59:25 +02:00
Martine Lenders
e011e3ed38
Merge pull request #14043 from pokgak/pr/sock_dtls/send_api_change
...
sock_dtls: add timeout to sock_dtls_send and add sock_dtls_session_init
2020-05-22 14:33:54 +02:00
Aiman Ismail
3ad2724f44
sock_dtls: fix vera++ warnings on line length
2020-05-22 14:06:38 +02:00
Aiman Ismail
b5b7955743
sock_dtls: add sock_dtls_session_init()
...
deprecates sock_dtls_session_create()
2020-05-22 14:06:12 +02:00
Benjamin Valentin
3b2cfa6478
drivers/sdcard_spi: add auto_init_storage to DEFAULT_MODULE
...
sdcard_spi is the only driver in auto_init_storage and was previously
pulled in by fatsfs (because it's used on SD cards)
It does however make much more sense if the SD card driver pulls that in
so other file systems can be used on SD card too.
2020-05-20 11:57:05 +02:00
Leandro Lanzieri
16113afb1e
Merge pull request #14026 from miri64/gnrc_netif/fix/deps
...
gnrc_netif: use gnrc_netif-submodules to pull in upper-layer struct members
2020-05-19 16:36:18 +02:00
Martine S. Lenders
9801a439fc
gnrc_netif: introduce gnrc_netif_6lo pseudo-module for 6LoWPAN members
...
This aims to reduce circular dependencies in GNRC.
2020-05-19 16:10:59 +02:00
Aiman Ismail
7f883f4098
sock_dtls: add timeout to sock_dtls_send()
2020-05-18 09:45:14 +02:00
Semjon Kerner
686e90323a
pkg/softdevice/doc.txt: add deprecation warning
2020-05-15 22:43:21 +02:00
c2896cc798
Merge pull request #13962 from haukepetersen/fix_nimble_netifmcastlock
...
nimble/netif: fix deadlock when sending multicast under load
2020-05-14 21:19:28 +02:00
Martine S. Lenders
ef1d458089
lwip_sock: re-issue receive events if there are still received messages
...
... after `*_recv()` or `*_accept()` was called.
This prevents a client from needing to call `*_recv()` or `*_accept()`
in a loop.
2020-05-12 14:19:34 +02:00
adb46b9ee7
Merge pull request #14006 from benpicco/sdcard_fixes
...
pkg/fs: initialize MTD device before accessing it's properties
2020-05-12 11:31:39 +02:00
benpicco
7037c95b44
Merge pull request #13412 from jue89/feature/cryptoauthlib-gpio-wake
...
pkg/cryptoauthlib: wake pulse implementation for CPUs supporting periph_i2c_reconfigure
2020-05-07 16:34:44 +02:00
fabian18
a3a1c160ee
mtd: Change API to return 0 on success
...
Returning the number of bytes written/read could return a negative integer
because a uint32_t is expected for the length in read()/write() operations.
2020-05-06 20:24:27 +02:00
Juergen Fitschen
0680eae86b
pkg/cryptoauthlib: wake pulse implementation for SAM0 CPUs
2020-05-06 12:03:26 +02:00
Martine S. Lenders
1c251beb03
gnrc_nettype: indirect NETTYPE definition via pseudo-modules
...
Instead of making a NETTYPE definition dependent on an implementation
module, this change makes it dependent on a pseudo-module for each
specific NETTYPE and makes the respective implementation modules
dependent on it.
This has two advantages:
- one does not need include the whole implementation module to
subscribe to a NETTYPE for testing or to provide an alternative
implementation
- A lot of circular dependencies related to GNRC could be untangled.
E.g. the only reason `gnrc_icmpv6` needs the `gnrc_ipv6` is because it
uses `GNRC_NETTYPE_IPV6` to search for the IPv6 header in an ICMPv6
when demultiplexing an ICMPv6 header.
This change does not resolve these dependencies or include usages where
needed. The only dependency change is the addition of the
pseudo-modules to the implementation modules.
2020-05-05 19:16:06 +02:00
Benjamin Valentin
348b45f600
pkg/spiffs: init MTD device before accessing it's parameters
...
The parameters of the MTD device (`sector_count`, `page_size`)
are only known after the device has been initialized.
Init the device before using it to avoid reading all 0 on e.g. SD cards.
2020-05-05 13:48:18 +02:00
Benjamin Valentin
891a05dca6
pkg/littlefs2: init MTD device before accessing it's parameters
...
The parameters of the MTD device (`sector_count`, `page_size`)
are only known after the device has been initialized.
Init the device before using it to avoid reading all 0 on e.g. SD cards.
2020-05-05 13:48:18 +02:00
Benjamin Valentin
85a7254326
pkg/littlefs: init MTD device before accessing it's parameters
...
The parameters of the MTD device (`sector_count`, `page_size`)
are only known after the device has been initialized.
Init the device before using it to avoid reading all 0 on e.g. SD cards.
2020-05-05 13:48:18 +02:00
Martine S. Lenders
77b89bb968
lwip_sock: provide implementation for sock_*_recv_buf()
2020-04-28 09:46:07 +02:00
Hauke Petersen
a063512bb4
pkt/nimble/netif: do not block sending mcast
2020-04-27 15:16:27 +02:00
Hauke Petersen
d335c75855
pkt/nimble/netif_conn: add non-blocking iter func
2020-04-27 15:15:50 +02:00
ca4c9c38f5
pkg/semtech-loramac: fix rx thread documentation
2020-04-22 10:16:34 +02:00
84594e94cb
pkg/ndn-riot: update patch to do implizit xtimer_t zeroing
2020-04-21 11:26:57 +02:00
2f9b77920d
pkg/semtech-loramac: TimerInit(): use static struct initializer
...
Previously, TimerInit() explicitly set some values of the xtimer truct
to "0". This commit changes it to use a static struct initializer
`(xtimer_t){0}`. The advantage is that now this is independent of the
actual xtimer structure.
Now this also resets the remaining xtimer fields, but they're properly
re-populated elsewhere (by using xtimer_set_msg()).
2020-04-21 11:26:57 +02:00
Francisco Molina
2331448644
Makefile: remove usage of SUBMODULES_NOFORCE
...
With #10970 only existing *.c files will be added to SRC when using
the SUBMODULES mechanism, so SUBMODULES_NOFORCE (used to filter out
non existing source files) is now redundant so remove the usage.
2020-04-15 12:11:44 +02:00
3625fa9b95
littlefs2: bump to version 2.2.1
2020-04-09 15:39:14 +02:00
a5cf43da09
Merge pull request #13800 from benpicco/pkg/littlefs2-2.2
...
pkg/littlefs2: bump version to 2.2
2020-04-08 10:53:33 +02:00
Leandro Lanzieri
1f24698a2a
Merge pull request #13792 from benpicco/pkg/nanopb-fixes
...
pkg/nanopb: fix for proto files with includes
2020-04-08 10:37:20 +02:00
Benjamin Valentin
7227b00b97
pkg/nanopb: extend the documentation
2020-04-08 10:18:56 +02:00
Leandro Lanzieri
e5729ae527
Kconfig: Expose pkg/wakaama configurations
2020-04-07 16:29:00 +02:00
Leandro Lanzieri
a3f9b2b5b4
pkg/wakaama: Move LWM2M_TLSF_BUFFER to 'CONFIG_' namespace
2020-04-07 16:29:00 +02:00
Leandro Lanzieri
d6b4cde03e
pkg/wakaama: Move client mode flag to package
...
As the only implementation available in RIOT of LwM2M is the client, it
makes no sense to set this flag in every application.
2020-04-07 16:28:59 +02:00
Leandro Lanzieri
c392a4ad34
pkg/wakaama: Move configurations to 'CONFIG_' namespace
...
Macros that changed:
LWM2M_STANDARD_PORT -> CONFIG_LWM2M_STANDARD_PORT
LWM2M_DTLS_PORT -> CONFIG_LWM2M_DTLS_PORT
LWM2M_BSSERVER_PORT -> CONFIG_LWM2M_BSSERVER_PORT
LWM2M_LOCAL_PORT -> CONFIG_LWM2M_LOCAL_PORT
LWM2M_DEVICE_NAME -> CONFIG_LWM2M_DEVICE_NAME
LWM2M_DEVICE_TTL -> CONFIG_LWM2M_DEVICE_TTL
LWM2M_SERVER_URI -> CONFIG_LWM2M_SERVER_URI
LWM2M_SERVER_ID -> CONFIG_LWM2M_SERVER_ID
LWM2M_ALT_PATH -> CONFIG_LWM2M_ALT_PATH
LWM2M_BOOTSTRAP -> CONFIG_LWM2M_BOOTSTRAP
LWM2M_DEVICE_MANUFACTURER -> CONFIG_LWM2M_DEVICE_MANUFACTURER
LWM2M_DEVICE_MODEL -> CONFIG_LWM2M_DEVICE_MODEL
LWM2M_DEVICE_SERIAL -> CONFIG_LWM2M_DEVICE_SERIAL
LWM2M_DEVICE_FW_VERSION -> CONFIG_LWM2M_DEVICE_FW_VERSION
LWM2M_DEVICE_BINDINGS -> CONFIG_LWM2M_DEVICE_BINDINGS
LWM2M_DEVICE_TYPE -> CONFIG_LWM2M_DEVICE_TYPE
LWM2M_DEVICE_HW_VERSION -> CONFIG_LWM2M_DEVICE_HW_VERSION
LWM2M_DEVICE_SW_VERSION -> CONFIG_LWM2M_DEVICE_SW_VERSION
LWM2M_WITH_LOGS -> CONFIG_LWM2M_WITH_LOGS
2020-04-07 16:28:55 +02:00
Aiman Ismail
bd0228342d
tinydtls_sock_dtls: remove duplicate handle message
2020-04-05 16:11:18 +02:00
Benjamin Valentin
f74bdb6bca
pkg/littlefs2: bump version to 2.2.0
...
Update to the new minor release.
2020-04-03 13:01:11 +02:00
Koos
b34b11a0c6
pkg/fatfs: fix day_of_month value of get_fattime()
2020-04-03 11:27:10 +02:00
Benjamin Valentin
7fd329b3a1
pkg/nanopb: fix for proto files with includes
...
Proto files can include other proto files.
E.g. nanopb comes with a `nanopb.proto` include that contains some
nanopb-specific extensions.
This patch makes it possible to include this file as well as specifying
additional proto include folders.
I added the include to `simple.proto` so it gets exercised by the test.
2020-04-02 17:21:25 +02:00
Peter Kietzmann
767cfc21a9
Merge pull request #13341 from Einhornhool/cryptoauth-shellhandler
...
sys/shell: add shell handler for CryptoAuth devices
2020-03-31 22:19:21 +02:00
Lena Boeckmann
5bc0b15114
sys/shell: add cryptoauthlib shell handler
2020-03-31 21:31:24 +02:00
Leandro Lanzieri
ce931f179c
gnrc/nib: Move GNRC_IPV6_NIB_CONF_SLAAC to 'CONFIG_' namespace
...
Also evaluate it using IS_ACTIVE macro.
2020-03-31 18:07:05 +02:00
d8751f79d4
pkg: add libbase58
2020-03-29 23:18:34 +02:00
Jose Alamos
9cf2da0287
pkg/ccn-lite: add patch for replacing GNRC_NETIF_NUMOF
2020-03-26 14:19:03 +01:00
Jose Alamos
aa5e6090f0
pkg/ndn-riot: add patch for replacing GNRC_NETIF_NUMOF
2020-03-26 14:19:03 +01:00
Jose Alamos
67ed9defbe
gnrc_netif_xxx_create: use external netif allocation
2020-03-26 11:12:23 +01:00
95fa4bae5a
pkg/libcose: remove Monocypher as crypto backend
...
With the 3.0.0 update of monocypher the API changed enough to break
libcose compatibility. This PR removes monocypher from the crypto
options. It can be restored as soon as upstream libcose is updated to
restore compatibility
2020-03-25 09:37:12 +01:00
fad397b62e
Merge pull request #13351 from Carton32/monocypher_update
...
pkg/monocypher: bump to version 3.0.0
2020-03-25 09:36:12 +01:00
Gunar Schorcht
5c65409dfc
pkg/wakaama: fix broken links
2020-03-24 10:38:40 +01:00
Gunar Schorcht
8d6dfa65ef
pkg/lua: fix broken links
2020-03-24 10:38:40 +01:00
dbe167e474
pkg/lvgl: add LittlevGL package
2020-03-18 14:15:38 +01:00
39d9d599cc
Merge pull request #13620 from kaspar030/add_pkg_yxml
...
pkg/yxml: add Yxml XML parser library package
2020-03-17 11:06:19 +01:00
Martine Lenders
5defa1ae34
Merge pull request #13466 from gschorcht/fix_compilation_with_ndebug
...
tests: fix compilation problems with NDEBUG
2020-03-12 19:34:33 +01:00
Gunar Schorcht
0378fd2697
pkg/ubasic: fix NDEBUG compile problem
2020-03-12 18:04:42 +01:00
Robert Hartung
dc6665d5cf
Merge pull request #12717 from dylad/pr/bme680_pkg_driver
...
driver/bme680: add I2C/SPI driver for BME680 device
2020-03-12 14:00:40 +01:00
fd0fd1cb3c
pkg/yxml: add Yxml XML parsing library
2020-03-12 13:09:56 +01:00
Gunar Schorcht
90fb789697
pkg: add Bosch Sensortech BME680 driver
...
Add the vendor driver implementation from Bosch Sensortech as a package.
2020-03-12 08:42:11 +01:00
Martine S. Lenders
29651da8f4
lwip_sock: update implementation for async callback argument
2020-03-11 16:54:12 +01:00
Martine S. Lenders
612e782b3c
sock_async: supply optional callback argument with callback setter
2020-03-11 16:54:11 +01:00
Martine S. Lenders
6e6e435c65
sock_async: add optional callback argument
2020-03-11 16:54:11 +01:00
Aydogan Ersoz
d66f35c31a
add QCBOR package
2020-03-09 20:29:50 +01:00
Aiman Ismail
e0a02705b2
examples/dtls-sock: change unsupported %zd to %d
2020-03-09 15:08:52 +01:00
Aiman Ismail
aa3cbacceb
net/sock_dtls: do not put msg in mbox on timeout
2020-03-09 15:08:52 +01:00
Leandro Lanzieri
1ee1a4f817
Merge pull request #12992 from pokgak/pr/kconfig_migrate/tinydtls
...
Kconfig: Expose pkg/tinydtls configurations
2020-03-06 15:29:56 +01:00
Gunar Schorcht
fc37d7bf81
Merge pull request #13427 from miri64/lwip/enh/sock_async
...
lwip: provide sock_async support
2020-03-06 14:37:54 +01:00
Aiman Ismail
a6432cff92
Kconfig: Expose pkg/tinydtls configurations
2020-03-06 13:53:51 +01:00
Martine Lenders
a7ef50636e
lwip: activate TCP_LISTEN_BACKLOG per default with sock_tcp
...
Prevents unnecessary usage of resources, as the queue of `sock_tcp` is
restricted.
2020-03-06 11:29:46 +01:00
Martine Lenders
1a4e6e9cdb
lwip_sock_tcp: close accepted connection if queue is full
2020-03-06 11:29:45 +01:00
Martine S. Lenders
e98e2f6143
lwip: fix style errors found by Vera++
2020-03-06 11:29:45 +01:00
Martine S. Lenders
fc67e6143a
lwip: provide sock_async support
2020-03-06 11:28:16 +01:00
Aiman Ismail
d5b2aa8a2f
pkg/tinydtls: Move configurations to 'CONFIG_' namespace
...
Macros that changed:
DTLS_PSK -> CONFIG_DTLS_PSK
DTLS_ECC -> CONFIG_DTLS_ECC (except in release-notes.txt)
DTLS_CONTEXT_MAX -> CONFIG_DTLS_CONTEXT_MAX
DTLS_PEER_MAX -> CONFIG_DTLS_PEER_MAX
DTLS_HANDSHAKE_MAX -> CONFIG_DTLS_HANDSHAKE_MAX
DTLS_SECURITY_MAX -> CONFIG_DTLS_SECURITY_MAX
DTLS_HASH_MAX -> CONFIG_DTLS_HASH_MAX
2020-03-05 19:11:38 +01:00
Leandro Lanzieri
7a44d8ecf7
Kconfig: Add 'Packages' file and menu
2020-03-05 19:11:38 +01:00
Juergen Fitschen
0a931c833c
pkg/cryptoauthlib: enable boards to set auto init parameters
2020-03-04 11:27:49 +01:00
MichelRottleuthner
698f313f6f
Merge pull request #13489 from miri64/tinydtls/enh/mbox-recv
...
tinydtls: remove receive buffer indirection via mbox
2020-03-04 10:03:39 +01:00
Martine S. Lenders
f8198dbf6f
tinydtls: remove receive buffer indirection via mbox
2020-03-03 14:42:16 +01:00
bdeae779c3
Merge pull request #13528 from haukepetersen/opt_nimble_autoconndbgmsgfix
...
pkg/nimble/autoconn: minor debug message cleanup
2020-03-03 09:46:08 +01:00
Cenk Gündoğan
8c202d5ac5
Merge pull request #13437 from leandrolanzieri/pr/pkg/local_mk/add_force_to_phony
...
pkg/local.mk: Add FORCE target to .PHONY
2020-03-02 18:17:51 +01:00
MichelRottleuthner
10226aa4f5
Merge pull request #13260 from benpicco/wolfssl-update
...
pkg/wolfssl: bump version to 4.3.0
2020-03-02 15:57:36 +01:00
Hauke Petersen
2e8186f4f4
pkg/nimble/autoconn: minor debug message cleanup
2020-03-02 15:24:32 +01:00
Benjamin Valentin
e6bc8d773e
pkg/wolfssl: bump version to 4.3.0
...
Update to the latest upstream release
https://www.wolfssl.com/docs/wolfssl-changelog/
This unfortunetaly introduced some unused parameter warnings, so disable
the warning via CFLAGS.
2020-03-02 15:10:29 +01:00
Hauke Petersen
093b7e2337
pkg/nimble/netif: minor API doc improvement
2020-03-02 11:13:09 +01:00
Gunar Schorcht
93329a7457
pkg/cryptoauthlib: fix grouping in doc
2020-02-27 08:43:21 +01:00
benpicco
098852b627
Merge pull request #13228 from benpicco/pkg-nanopb-0.4
...
pkg/nanopb: bump version to 0.4.1
2020-02-26 15:11:52 +01:00
0a4cc06d44
pkg/openthread: add "-Wno-class-memaccess" to CXXFLAGS
2020-02-24 14:12:13 +01:00
Martine S. Lenders
20805548b3
lwip: introduce sock base-type
2020-02-21 19:07:47 +01:00
Leandro Lanzieri
a9536e6df6
pkg/local.mk: Add FORCE target to .PHONY
2020-02-21 14:59:13 +01:00
Benjamin Valentin
f295e6061a
pkg/lwip: use GitHub mirror
...
git.savannah.nongnu.org seems to be rate-limiting us, so switch to
a mirror on GitHub.
2020-02-21 14:40:38 +01:00
benpicco
336bfe54a9
Merge pull request #13366 from bergzand/pr/littlefs2/add_pkg
...
pkg/littlefs2: Add package for LittleFS v2.x.y
2020-02-20 16:23:59 +01:00
9b02c7b4ee
pkg/littlefs2: Add package for LittleFS v2.x.y
2020-02-20 14:51:45 +01:00
Leandro Lanzieri
c829f820ee
pkg: Remove OONF API package
...
The package has been flagged as deprecated in
07099d99d8
, due to lack of users, tests
and maintenance.
2020-02-19 15:04:21 +01:00
Carton
535499cc5f
pkg/monocypher: bump to version 3.0.0
2020-02-17 15:30:45 +01:00
fdd2b97387
pkg/cmsis-nn: add support
2020-02-14 16:23:41 +01:00
Benjamin Valentin
1f4b207b66
pkg/minmea: add minmea_getdate()
...
Add a fucntion to expose the internal `struct tm` that is populated
with the GPS date.
This allows for easy syncing the RTC with the GPS time without having
to convert back and forth between `struct tm` and `time_t`.
struct tm now;
minmea_getdate(&now, data, time);
rtc_set_time(&now)
upstream PR: https://github.com/kosma/minmea/pull/45
2020-02-13 15:55:33 +01:00
Francisco Molina
7bfb855a86
Makefile.dep: auto_init_% as DEFAULT_MODULES
...
Having the modules as DEFAULT_MODULES allows disabling them.
2020-02-12 16:51:32 +01:00
Francisco Molina
afc43bf314
Makefile.dep: add auto_init_lwip MODULE
2020-02-12 16:51:29 +01:00
Benjamin Valentin
f7c1b3fb91
pkg/nanopb: bump version to 0.4.1
...
Update the version of the nanopb package to the latest upstream release.
2020-02-11 21:07:13 +01:00
chrysn
6a493cce58
pkg/nordic_softdevice_ble: Add note on being outdated
...
See-Also: https://github.com/RIOT-OS/RIOT/issues/11951
2020-02-11 09:59:18 +01:00
chrysn
461065471d
pkg/nordic_softdevice_ble: Move README in with doxygen
2020-02-11 09:46:15 +01:00
b685b4d720
Merge pull request #13303 from chrysn-pull-requests/doc-libcose
...
pkg/libcose: Add to documentation
2020-02-10 20:36:21 +01:00
chrysn
2c83308ec2
pkg/libcose: Add to documentation
2020-02-10 17:15:57 +01:00
Peter Kietzmann
b339b1c134
Merge pull request #13254 from maksim-ka/pr-relic-branch
...
pkg/relic: use random module for seeding relic PRNG
2020-02-06 23:48:43 +01:00
maksim-ka
d3d181c5a8
pkg/relic: use random module for seeding relic PRNG
2020-02-06 21:11:39 +01:00
Sebastian Meiling
24f6b3953a
Merge pull request #13290 from pokgak/pr/tinydtls/cleanup
...
tinydtls: remove TINYDTLS_LOG and cleanup
2020-02-06 14:58:36 +01:00
benpicco
cfb383593d
Merge pull request #13298 from Einhornhool/cryptoauth-doc
...
pkg/cryptoauthlib: add no poll mode to documentation
2020-02-06 12:12:33 +01:00
Lena Boeckmann
eec8580dc3
pkg/cryptoauthlib: add no poll mode to doc
2020-02-06 09:48:38 +01:00
Peter Kietzmann
f871f64292
Merge pull request #13297 from Einhornhool/cryptoauth-llvm
...
pkg/cryptoauthlib: add includes to cflags for llvm
2020-02-05 22:11:44 +01:00
benpicco
f144a12c71
Merge pull request #13092 from Ciusss89/lwip_enc28j60
...
pkg/lwip: add auto-init support for transciever ENC28J60
2020-02-05 22:08:28 +01:00
Lena Boeckmann
1ee1ffa1e3
pkg/cryptoauthlib: add includes to cflags for llvm
2020-02-05 16:52:12 +01:00
Lena Boeckmann
23aa05126d
pkg/cryptoauthlib: make atca dev type configurable
2020-02-05 16:51:43 +01:00
Aiman Ismail
5391e50bb7
pkg/tinydtls: cleanup Makefile.include
...
- Removes `TINYDTLS_LOG` because it is redundant with `TINYDTLS_LOG_LVL`
- Remove check for using tinydtls module because the Makefile will only
be included if the tinydtls module is used
2020-02-05 07:00:14 +01:00
Giuseppe Tipaldi
c8426ce8f5
pkg/lwip: add auto-init support for transciever ENC28J60
2020-01-31 22:01:49 +01:00
Lena Boeckmann
529f3c8b61
pkg: add cryptoauthlib
2020-01-30 23:51:35 +01:00
7a1859d660
pkg/nordic-softdevice: define dependencies in package
2020-01-27 12:51:19 +01:00
2b3a9d0e4b
pkg/ndn-riot: define dependencies in package
2020-01-27 12:51:19 +01:00
Hauke Petersen
91eca47b1f
Merge pull request #13191 from haukepetersen/opt_nimble_autoconnacceptstop
...
pkg/nimble/autoconn: collection of improvements
2020-01-23 18:54:24 +01:00
Hauke Petersen
6537a04b97
pkg/nimble/autoconn: improve en/disable code
2020-01-23 17:24:33 +01:00
Hauke Petersen
fddcd928d7
pkg/nimble/autoconn: fix internal slave conn state
2020-01-23 17:23:49 +01:00
Hauke Petersen
e6513924a3
pkg/nimble/autoconn: handle ACCEPT_STOP event
2020-01-23 17:22:08 +01:00
Hauke Petersen
5b6b28ab09
pkg/nimble/autoconn: fix conn_params
2020-01-23 17:19:39 +01:00
Hauke Petersen
8c4e70ebfd
pkg/nimble/autoconn: make conn_timeout configurable
2020-01-23 17:18:36 +01:00
Hauke Petersen
5c5ba9f740
pkg/nimble/netif: add ACCEPT_STOP event
2020-01-23 17:16:29 +01:00
Sebastian Meiling
999f895672
pkg/micropython: bump version for FreeBSD fix
2020-01-23 11:58:59 +01:00
cb50730fea
pkg/tensorflow-lite: blacklist LLVM for cortexm cpu arch
2020-01-16 14:03:43 +01:00
556914f67b
pkg/tensorflow-lite: blacklist esp32 architecture
2020-01-16 07:59:00 +01:00
18d15b6f27
Merge pull request #13132 from leandrolanzieri/pr/pkg/tinydtls_fix_contrib_include
...
pkg/tinydtls: Only include contrib folder if using tinydtls_sock_dtls
2020-01-15 20:37:07 +01:00
Martine Lenders
04a673fc8b
Merge pull request #12716 from miri64/gnrc_netif/enh/use-netif_hdr-setter
...
nimble/netif: use gnrc_netif_hdr_set_netif()
2020-01-15 18:18:20 +01:00
Leandro Lanzieri
0d419f0391
pkg/tinydtls: Only include contrib folder if using tinydtls_sock_dtls
2020-01-15 16:10:33 +01:00
Hauke Petersen
5d6063bfcb
Merge pull request #13112 from haukepetersen/opt_nimble_verjan20removextimerpath
...
pkg/nimble: bump version and remove obsolete patch
2020-01-15 10:09:12 +01:00
2c3c967244
pkg/tensorflow-lite: add support to RIOT
2020-01-14 22:23:06 +01:00
2af88551e7
pkg: add support to gemmlowp library
2020-01-14 22:23:06 +01:00
petr
b253f61a7f
pkg/u8g2: refactor the U8g2 package
...
- Passing RIOT-OS specific data as user_ptr
- Added necessary macros to Makefile.dep
- Added missing explicit dependency to xtimer module
- Renamed u8g2_riotos.c to more appropriate u8x8_riotos.c
- Added u8x8_riotos.h with the RIOT-OS specific functionality
- Removed the now-obsolete patch of U8g2
- Other minor fixes
2020-01-14 13:23:25 +01:00
Hauke Petersen
723aadcc87
pkg/nimble: bump version and remove obsolete patch
2020-01-13 21:00:48 +01:00
Hauke Petersen
001a216e9e
Merge pull request #13084 from haukepetersen/opt_nimble_netifl2capabort
...
pkg/nimble_netif: catch L2CAP connection failures
2020-01-13 14:40:32 +01:00
4524fb1f1e
Merge pull request #12846 from aabadie/pr/pkg/flatbuffers
...
pkg: add support for FlatBuffers serialization library
2020-01-13 10:17:56 +01:00
Francisco
e61a9be30d
Merge pull request #13101 from basilfx/feature/gecko_sdk_27
...
pkg/gecko_sdk: update to version 2.7
2020-01-13 09:44:03 +01:00
71d9f361ee
pkg/flatbuffers: add support to RIOT
2020-01-13 09:41:23 +01:00
MichelRottleuthner
53cb3b087c
Merge pull request #9530 from Hyungsin/forupstream_xtimer
...
sys: xtimer concurrency/robustness improvement
2020-01-13 08:24:15 +01:00
Bas Stottelaar
f8a972397b
pkg/gecko_sdk: update to version 2.7
2020-01-12 22:23:39 +01:00
Hyungsin
3e4a86d84b
pkg/nimble: add a patch to reflect xtimer's member change
2020-01-10 13:22:01 -08:00
Hyungsin
1ee8801306
pkg/ndn-riot: add a patch to reflect xtimer's member change
2020-01-10 13:21:51 -08:00
Hyungsin
3289acccfb
pkg/semtech-loramac/contrib: reflecting xtimer's member change
2020-01-10 13:21:14 -08:00
Hauke Petersen
11a0e3efa0
pkg/nimble_autoconn: handle new events
2020-01-10 17:14:51 +01:00
Hauke Petersen
dbb8e9e52b
pkg/nimble_netif: add additional events
2020-01-10 16:36:12 +01:00
Hauke Petersen
dcb0840260
pkg/nimble_netif: catch L2CAP connection failures
2020-01-10 15:50:53 +01:00
Hauke Petersen
357ba259bd
pkg/nimble_autoconn: optimize debug output
2020-01-10 13:44:25 +01:00
Martine Lenders
87d00ab294
Merge pull request #12932 from miri64/lwip_sock/fix/sock-cleanup
...
lwip_sock: clean-up connection handling without a sock.
2020-01-09 15:00:55 +01:00
Francisco Molina
673ff3e94a
pkg/local.mk: fix local pkg build
2020-01-09 11:19:06 +01:00
Francisco
c8461a4bef
Merge pull request #13036 from basilfx/feature/save_state_and_dependencies
...
pkg/pkg.mk: use intermediate state files
2020-01-08 22:57:12 +01:00
PeterKietzmann
ee53dd958c
pkg/ccn-lite: bump version
2020-01-08 22:26:56 +01:00
Gaëtan Harter
ca5d13cc2a
pkg/*: adapt to new state file targets
...
Prepare for handling pkg state with files. So it requires having the
path defined before declaring targets. In addition, it cleans up the
old git-download target.
2020-01-08 20:55:19 +01:00
Bas Stottelaar
831898f735
pkg: adapt Makefile template
2020-01-08 20:55:19 +01:00
Gaëtan Harter
9b6526c911
pkg/pkg.mk: use intermediate state files
...
Rely on file creation and dependencies instead of .PHONY targets.
Files will be rebuilt when changing version as the main `Makefile` will
have been updated. All steps are re-done on version change.
When deleting patches, the '.prepare' step should be redone thanks
to the included 'patch-dep.inc' file (TODO TEST ME).
Implementation in order:
* '.git': means the repository has been cloned.
* '.git-downloaded': Fetches the wanted version
* '.git-prepared': will clean checkout the version and apply patches
2020-01-08 20:55:19 +01:00
Gaëtan Harter
1a07471311
pkg/pkg.mk: ensure file is included at the beginning
...
This should prevent issues where the Makefile use 'PKG_BUILDDIR' before
them being defined.
This will also allow changing the state targets to be file targets.
2020-01-08 20:54:54 +01:00
Gaëtan Harter
0b7f5c2272
pkg/pkg.mk: prepare to move include at the beginning
...
The file must not change the default goal otherwise it could change
packages behavior.
2020-01-08 20:54:54 +01:00
087246ea0f
pkg: add support for utensor as a package
2020-01-07 11:22:38 +01:00
Francisco
41808f0286
Merge pull request #13031 from basilfx/feature/gecko_sdk_fix_hash
...
pkg/gecko_sdk: correct SHA-1 of package.
2020-01-06 11:30:29 +01:00
Bas Stottelaar
19575ea4b6
pkg: add PKG_LICENSE to templates
2020-01-06 00:37:47 +01:00
Gaëtan Harter
0e6b22dd2e
pkg/openthread: define PKG_LICENSE to BSD 3-Clause
...
The 'BSD 3-Clause "New" or "Revised" License' is the value found by
github
3a248f649a/LICENSE
> A permissive license similar to the BSD 2-Clause License, but with a 3rd
> clause that prohibits others from using the name of the project or its
> contributors to promote derived products without written consent.
2020-01-06 00:37:47 +01:00
Gaëtan Harter
c5b4064267
pkg/heatshrink: define PKG_LICENSE to ISC-License
...
This "ISC License" is the value found by github
7d419e1fa4/LICENSE
A permissive license lets people do anything with your code with proper
attribution and without warranty. The ISC license is functionally
equivalent to the BSD 2-Clause and MIT licenses, removing some language
that is no longer necessary.
2020-01-06 00:37:47 +01:00
Gaëtan Harter
239f16a8f6
pkg/pkg.mk: explicit set --git-dir and --work-tree for git
...
This should prevent issues when the directory is not a git repository
which would for example checkout force or clean in the RIOT repository
instead.
2020-01-06 00:37:47 +01:00
Gaëtan Harter
edca088193
pkg/pkg.mk: add checks for required variables
...
Ensure the required variables are defined before including 'pkg.mk'.
2020-01-06 00:18:05 +01:00
Bas Stottelaar
e88bbec313
pkg/gecko_sdk: correct SHA-1 of package.
2020-01-05 23:57:28 +01:00
3e3f4e2324
pkg/jerryscript: ensure MCPU is exported
...
This export is only performed for the libjerry target
2020-01-03 14:20:21 +01:00
Hauke Petersen
0676fc4ba1
pkg/nimble/autoconn: improve debug output
2019-12-18 17:06:57 +01:00
Hauke Petersen
16468acadc
pkg/nimble/autoconn: add user event callback
2019-12-18 17:05:48 +01:00
Hauke Petersen
49491bee3c
pkt/nimble/netif: pass BLE addr to event callback
2019-12-18 17:05:48 +01:00
Hauke Petersen
fe2293b601
pkg/nimble/autoconn: add startup delay
2019-12-18 16:27:33 +01:00
benpicco
f7cb0a096e
Merge pull request #12899 from benpicco/lpc2387-micropython
...
cpu/lpc2387: align lpc2387.ld with cortexm_base.ld, provide thread_isr_stack_*() - enables MicroPython
2019-12-18 12:08:12 +01:00
benpicco
4f4e7cde16
Merge pull request #12965 from gschorcht/pkg/lwip/ipv4_dhcp
...
pkg/lwip: start DHCP for a netif with lwip_dhcp
2019-12-18 09:21:29 +01:00
Gunar Schorcht
ff506ccf07
pkg/lwip: start DHCP for a netif with lwip_dhcp
...
The NETDEV_EVENT_LINK_UP is used to start DHCP for a network interface
2019-12-18 07:16:41 +01:00
benpicco
cfeb2a3843
Merge pull request #12949 from gschorcht/cpu/esp8266/enable_lwip
...
cpu/esp8266: enable lwIP for ESP8266
2019-12-17 13:39:35 +01:00
Benjamin Valentin
071917cf56
pkg/micropython: remove arch_arm7 from blacklist
...
arm7 now provides ISR_STACKSIZE and thread_isr_stack_start()
so there is no longer a reason to blacklist it.
2019-12-17 13:37:32 +01:00
Gunar Schorcht
ddc34b4d73
cpu/esp: fix lwip for IPv4 and esp_wifi
2019-12-17 08:28:33 +01:00
Gunar Schorcht
8021888c06
pkg/lwip: remove esp8266 from blacklist
2019-12-17 08:28:33 +01:00
Hauke Petersen
ffd8fc9976
pkg/nimble: bump version to 946cfb7
2019-12-16 13:47:44 +01:00
Hauke Petersen
51a65b256d
pkg/nimble: used LL data length ext. with netif
2019-12-16 13:47:44 +01:00
Gunar Schorcht
3257c8e9f5
Merge pull request #12903 from wosym/lwip_stm32_ipv4
...
Add IPv4 support for LWIP-stm32
2019-12-16 11:45:24 +01:00
benpicco
50f5060e90
Merge pull request #12948 from gschorcht/pkg/lwip/lwipopts_fix_cleanup
...
pkg/lwip: overiddable settings in lwipopts.h
2019-12-16 10:43:34 +01:00
benpicco
8c4498ad8e
Merge pull request #12950 from gschorcht/cpu/esp32/lwip_eth
...
pkg/lwip: add support for esp32 Ethernet device
2019-12-16 10:33:47 +01:00
Wouter Symons
a3145a0ad0
pkg/lwip: correct coding style
2019-12-16 10:29:21 +01:00
Wouter Symons
5c42f680ed
pkg/lwip: add IPv4 support for LWIP-stm32
2019-12-16 10:28:46 +01:00
Gunar Schorcht
aa3f1329bf
pkg/lwip: remove TCPIP_THREAD_PRIO for ESP32
...
This definition is platform dependent and should be therefore done with CFLAGS in ESP332's Makefile.
2019-12-15 23:50:45 +01:00
Gunar Schorcht
91e764a538
pkg/lwip: add esp_eth for lwIP and IPv4
2019-12-15 19:11:58 +01:00
Gunar Schorcht
4e003b5608
pkg/lwip: add ESP32 esp_eth netdev
2019-12-14 16:59:54 +01:00
Gunar Schorcht
117d6d1f2f
pkg/lwip: make TCPIP_THREAD_STACKSIZE overridable
2019-12-14 10:39:14 +01:00
Wouter Symons
49a8f64c62
pkg/lwip: fix memory issue when sending with empty sock
2019-12-13 17:28:32 +01:00
Sebastian Meiling
c04b80ecbb
pkg/tinydtls: bump version
...
This version bump fixes an issues when using RIOT native on FreeBSD with
the tinydtls package, e.g. for native tests of sock_dtls.
2019-12-12 15:57:51 +01:00
Martine S. Lenders
e96bc2a13d
lwip_sock: additional indirection of conn is unnecessary
...
Either the sock is provided with `sock_*_send()` or not. In the first
case the indirection is not necessary, and in the second we need to
delete the created `conn` within `lwip_sock_send()` anyway, so returning
it makes no sense.
2019-12-12 11:19:51 +01:00
Martine S. Lenders
80c23cfbf3
lwip_sock: check if sock is set before dereferencing it
2019-12-12 11:01:30 +01:00
dcd432dd51
Merge pull request #12596 from toonst/fix/pkg_build_output
...
pkg: make build output quiet
2019-12-06 21:03:10 +01:00
Wouter
ed9cdb221a
Add LWIP stm32 glue code
...
Fix minor coding style issues
2019-12-06 16:26:31 +01:00
228786731d
Merge pull request #2968 from kaspar030/micropython
...
pkg: micropython: initial commit
2019-12-05 20:31:47 +01:00
042786b835
pkg: micropython: initial import
2019-12-05 16:34:53 +01:00
Sebastian Meiling
6e53e28a3a
Merge pull request #11943 from pokgak/sock_dtls_impl
...
pkg/tinydtls: add DTLS sock API implementation
2019-12-05 15:47:49 +01:00
Martine Lenders
7ffc30a88b
Merge pull request #12865 from smlng/pr_freebsd_jerryscript
...
pkg/jerryscript: set -Wno-conversion for FreeBSD
2019-12-05 14:48:47 +01:00
Sebastian Meiling
5dd03b9b3e
pkg/jerryscript: set -Wno-conversion for FreeBSD
...
Fixes compile issue on FreeBSD because of float to double conversion
by disabling the corresponding compiler warning.
2019-12-05 13:32:19 +01:00
b053e070f4
pkg/wakaama: fix string format and integer conversions
2019-12-04 08:07:16 +01:00
2f873569b7
pkg/tlsf: whitelist 32bit architectures
...
The package is not compatible with 8 or 16 bit architectures
2019-12-04 08:04:50 +01:00
Leandro Lanzieri
c52ad2df9e
pkg/wakaama: Add LwM2M Client implementation
2019-11-29 20:31:41 +01:00
Leandro Lanzieri
2826779fbf
pkg/wakaama: Add patches to fix logging
2019-11-29 20:31:41 +01:00
pokgak
4ed4ab404a
pkg/tinydtls: implement DTLS sock API
2019-11-28 13:54:06 +01:00
2cf3cb3b52
pkg/wolfssl: fix typos
2019-11-23 22:39:38 +01:00
9ac32c6dd7
pkg/tlsf: fix typos
2019-11-23 22:39:38 +01:00
05f5d5d638
pkg/semtech-loramac: fix typos
2019-11-23 22:39:38 +01:00
16440469dc
pkg/openthread: fix typos
2019-11-23 22:39:38 +01:00
357c1bc0db
pkg/nordic_softdevice_ble: fix typos
2019-11-23 22:39:38 +01:00
f827e0c3d1
pkg/nimble: fix typos
2019-11-23 22:39:38 +01:00
de88c9a6eb
pkg/nanocbor: fix typos
2019-11-23 22:39:38 +01:00
04183aa8fd
pkg/lwip: fix typos
2019-11-23 22:39:38 +01:00
0ba8628b45
pkg/lua: fix typos
2019-11-23 22:39:38 +01:00
591d08500a
pkg/fatfs: fix typos
2019-11-23 22:39:38 +01:00
Gunar Schorcht
eb47f1c537
tests/sys_arduino_lib: demo the use of Arduino library
...
This test application defines a packages which imports a very simple Arduino library that is used by test application to demonstrate how an Arduino library can be imported as package and used by an application.
2019-11-22 13:26:35 +01:00
Francisco Molina
7e2fd21f2a
pkg/u8g2/src/csrc/u8g2_riotos.c: fix cpp.check shiftTooManyBitsSigned
2019-11-21 11:58:07 +01:00
Francisco Molina
cc2c3a0163
pkg/ucglib/src/csrc/ucg_riotos.c: fix cpp.check shiftTooManyBitsSigned
2019-11-21 11:58:07 +01:00
a4bff5f803
pkg/libfixmath: blacklist architectures not supported by unittests
...
8bit architectures are not compatible. round function is not provided by
the msp430 toolchain.
2019-11-20 22:27:12 +01:00
b32dd168a1
pkg/libfixmath: fix computations on 8bit architectures
2019-11-20 22:27:12 +01:00
8e281f8b02
pkg/libfixmath: cleanup Makefiles and patches
2019-11-20 22:27:12 +01:00
6bcf492d08
pkg/ndn-riot: blacklist ble_nimble feature
2019-11-20 07:25:25 +01:00
benpicco
d91b756d0b
Merge pull request #12735 from aabadie/pr/pkg/cleanup_makefiles
...
pkg: cleanup management of dependencies
2019-11-20 01:43:26 +01:00
Vincent Dupont
8bf37f3f62
Merge pull request #12664 from benpicco/littlefs-1.7.2
...
pkg/littlefs: bump littlefs version to 1.7.2
2019-11-19 14:26:46 +01:00
Kevin "Tristate Tom" Weiss
be39169bd4
Merge pull request #11108 from gschorcht/cpu/esp8266/esp-idf/pr
...
cpu/esp8266: complete reimplementation based on ESP8266 RTOS SDK
2019-11-18 09:34:49 +01:00
6975bab63d
pkg/ndn-riot: move dependency handling in Makefile.dep
2019-11-18 08:57:00 +01:00
d88042d92a
pkg/gecko_sdk: move dependency handling in Makefile.dep
2019-11-18 08:56:51 +01:00
aa8d8a8731
pkg/libcoap: cleanup Makefile.dep
...
There's no need to load dependency modules if the package is used. This is already managed by the build system
2019-11-18 08:55:47 +01:00
adcdb3601a
pkg/tinydtls: cleanup Makefile.dep
...
There's no need to load dependency modules if the package is used. This is already managed by the build system
2019-11-18 08:55:32 +01:00
bdf5eb7b1e
pkg/openthread: cleanup Makefile.dep
...
There's no need to load dependency modules if the package is used. This is already managed by the build system
2019-11-18 08:55:17 +01:00
246a43ee19
pkg/umorse: cleanup Makefile.dep
...
There's no need to load dependency modules if the package is used. This is already managed by the build system
2019-11-18 08:54:34 +01:00
c34feaf118
pkg/jerryscript: cleanup Makefile.dep
...
There's no need to load dependency modules if the package is used. This is already managed by the build system
2019-11-18 08:54:02 +01:00
9334014b13
pkg/ccn-lite: cleanup Makefile.dep
...
There's no need to load dependency modules if the package is used. This is already managed by the build system
2019-11-18 08:52:38 +01:00
5400ab7284
pkg/semtech-loramac: blacklist MSP430 based boards
...
EXIT_SUCCESS/EXIT_FAILURE macros are not provided by the toolchain, which ends-up in a failing build
2019-11-15 18:14:25 +01:00
Martine S. Lenders
b5b035ca14
nimble/netif: use gnrc_netif_hdr_set_netif()
2019-11-15 15:10:52 +01:00
27e8caf3f3
Merge pull request #12526 from kaspar030/fix_fe310_default_optimization
...
cpu/fe310: change default optimization to "-Os"
2019-11-15 13:10:13 +01:00
Gunar Schorcht
074369fbb5
pkg/lwip: changes for ESP8266 esp_wifi
2019-11-14 12:04:29 +01:00
Hauke Petersen
18a133944c
pkg/nimble: depend netif on ble_nimble_netif feat.
2019-11-13 13:10:12 +01:00
Hauke Petersen
004eb5e0b6
pkg/nimble: add 'autoconn' connection manager
2019-11-13 12:59:35 +01:00
d6f11a4c3c
pkg/lora-serialization: bump to latest versio
2019-11-11 17:30:31 +01:00
Benjamin Valentin
ab9f8d64d3
pkg/littlefs: bump littlefs version to 1.7.2
2019-11-07 17:02:58 +01:00
José Alamos
20ea18637f
Merge pull request #10485 from miri64/gnrc_netif/enh/default-init
...
gnrc_netif: assume `netif->ops->init()` to be set to at least a default
2019-11-07 11:41:05 +01:00
Martine Lenders
14a2f6bc18
gnrc: use gnrc_netif_default_init() for all implementations
2019-11-07 11:00:36 +01:00
Bas Stottelaar
f5ddc372e7
pkg/gecko_sdk: update to version 2.6
2019-11-06 23:11:39 +01:00
f542bc5fcf
pkg/oonf_api: blacklist unsupported architectures
...
AVR8 and MSP430 are excluded because of missing features in their respective toolchains
2019-11-05 09:47:25 +01:00
6791662397
pkg/ubasic: blacklist unsupported architectures
...
AVR8, MSP430, RISV and MIPS are excluded because of missing features in their respective toolchains
2019-11-05 08:45:12 +01:00
1055c6497e
pkg/lua: exclude RISCV
2019-10-30 16:15:41 +01:00
01702df52d
pkg/lua: exclude MIPS
2019-10-30 15:40:09 +01:00
219faf250e
pkg/jerryscript: exclude MIPS
2019-10-30 15:39:11 +01:00
c15c3ab8a2
pkg/lua: add arch 32bit requirement
2019-10-30 14:27:15 +01:00
04e8461460
pkg/jerryscript: add arch 32bit requirement
2019-10-30 14:25:41 +01:00
4993b65650
pkg/tinydtls: add arch 32bit requirement
2019-10-30 14:11:59 +01:00
286c9b63e3
pkg/micro-ecc: blacklist arch 16bit requirement
2019-10-30 11:43:40 +01:00
8062a6fb82
pkg/qDSA: blacklist arch 16bit requirement
2019-10-30 11:43:40 +01:00
a19f7a5589
pkg/libhydrogen: add arch 32bit requirement
2019-10-30 11:43:40 +01:00
5839e35eac
pkg/tinycbor: add arch 32bit requirement
2019-10-30 11:43:40 +01:00
c77916e730
pkg/monocypher: add arch 32bit requirement
2019-10-30 11:43:39 +01:00
fa700de4d5
pkg/libcoap: add arch 32bit requirement
2019-10-30 11:43:39 +01:00
0631cf6437
pkg/hacl: add arch 32bit requirement
2019-10-30 11:43:39 +01:00
83dbbcc35a
pkg/cn-cbor: add arch 32bit requirement
2019-10-30 11:43:39 +01:00
99d7439fa8
pkg/cifra: add arch 32bit requirement
2019-10-30 11:43:38 +01:00
fbf8688f01
pkg/wolfssl: add 32bit arch requirement
2019-10-30 11:43:38 +01:00
Marian Buschsieweke
bf54c56420
Merge pull request #12501 from maribu/NETOPT_MAX_PACKET_SIZE
...
drivers: Replaced NETOPT_MAX_PACKET_SIZE by NETOPT_MAX_PDU_SIZE
2019-10-30 10:51:32 +01:00
Toon Stegen
f6b97a444e
make/pkg: make git commands quiet
2019-10-29 13:58:21 +01:00
Toon Stegen
6ef9b4b340
make/pkg: don't warn on whitespace errors
2019-10-29 13:58:21 +01:00
Toon Stegen
a6255240fb
make/pkg: don't print executed commands
2019-10-29 13:58:21 +01:00
Rotzbua
cc955f729c
pkg: docu: remove old pkg/Makefile.svn
2019-10-28 23:41:46 +01:00
Gunar Schorcht
61949b0e4a
pkg/tinycbor: fix "uninitialized variable" warning
...
On ESP32 and new ESP8266 platform, the compilation of the package fails since a local variable is potentially used uninitialized. Therefore, the variable is initialized with a default value.
2019-10-27 09:56:10 +01:00
Aiman Ismail
1900563ec6
pkg/tinydtls: bump package version
...
This pulls in commit 865ca387cd9d05e52943e5641ad0eefafef218a3 which
fixes #12351 .
2019-10-21 13:24:35 +02:00
7402092649
Revert "pkg/wolfssl: disable maybe-uninitialized warning with wolfcrypt"
...
This reverts commit 02ff48751e
.
(Obsoleted by 1193b0b1f8
)
2019-10-21 12:39:20 +02:00
02ff48751e
pkg/wolfssl: disable maybe-uninitialized warning with wolfcrypt
...
Only when building with riscv toolchain, because the default optimization used can lead to this problem.
2019-10-21 08:09:51 +02:00
cd18dad5ca
pkg: introduce nanoPb Protocol Buffers library
2019-10-18 22:34:28 +02:00
Marian Buschsieweke
d879739665
drivers/nimble: Use NETOPT_MAX_PDU_SIZE
...
Replaced deprecated NETOPT_MAX_PACKET_SIZE by NETOPT_MAX_PDU_SIZE
2019-10-18 17:57:36 +02:00
Francisco Molina
45c8eafd42
Makefile.include: remove repeated OS declaration
2019-10-18 10:36:43 +02:00
Francisco Molina
f3482de277
REMOVEME: add OS and OS_ARCH variable
2019-10-18 08:46:51 +02:00
3eae2f7b79
pkg/lwip: add arch_32bit feature dependency
2019-10-13 21:03:41 +02:00
Martine Lenders
c7502fedf9
Merge pull request #12190 from benpicco/deprecate_oonf
...
pkg/oonf_api: deprecate package
2019-10-09 19:19:47 +02:00
Martine S. Lenders
0a2945164c
lwip: improve and fix documentation
2019-10-09 14:45:30 +02:00
Martine S. Lenders
cb18f8c99b
lwip: remove deprecated defines
...
`SYS_SEM_NULL` and `SYS_MBOX_SIZE` aren't used by lwIP anymore and
`LWIP_CHKSUM_ALGORITHM` has a predefined value now
2019-10-09 14:23:02 +02:00
Ken Bannister
3e0a3b1746
Merge pull request #12389 from miri64/pkg/depr/emb6
...
emb6: deprecate package
2019-10-09 06:53:50 -04:00
Martine Lenders
7cf1bab2e6
emb6: deprecate package
...
I basically didn't work on `emb6` since 2016 and adapting to the newest
version would mean some major overhaul. However, the development at
their end seems to be stalled [since March 2018][emb6-develop] as well.
All this speaks for deprecating this package.
[emb6-develop]: https://github.com/hso-esk/emb6/tree/develop
2019-10-09 11:50:17 +02:00
Martine S. Lenders
0d8511616a
emb6: fix documentation
2019-10-09 11:27:52 +02:00
Martine Lenders
238ebe3d37
Merge pull request #12350 from haukepetersen/opt_nimble_verokt19
...
pkg/nimble: bump NimBLE version
2019-10-09 11:18:07 +02:00
688c29f200
pkg/cayenne-lpp: bump version to 0.1.1
...
This version contains a fix with barometric pressure values
See https://github.com/aabadie/cayenne-lpp/pull/8 for details
2019-10-08 08:40:54 +02:00
Martine Lenders
b7dfb6a26f
Merge pull request #12383 from aabadie/pr/pkg/semtech-loramac_fix_us915
...
pkg/semtech-loramac: fix failed assertion in randr function
2019-10-07 21:09:17 +02:00
Martine Lenders
70dddfd775
Merge pull request #12354 from haukepetersen/opt_nimble_netifmaxconn
...
pkg/nimble/netif: set max conn explicitly
2019-10-07 19:18:40 +02:00
900e7c4040
pkg/semtech-loramac: fix failed assertion in randr function
2019-10-07 15:30:31 +02:00
Hauke Petersen
a595f89bbe
pkg/nimble/netif: set max conn explicitly
2019-10-07 14:50:57 +02:00
Hauke Petersen
f8112e2164
pkg/nimble/netif_conn: improve debug messages
2019-10-01 17:33:23 +02:00
Hauke Petersen
b7885428ce
pkg/nimble: bump NimBLE version
2019-10-01 16:40:08 +02:00
Bas Stottelaar
8fa920d04c
pkg/gecko_sdk: update to newer version
2019-09-30 18:10:38 +02:00
68aae9c848
Merge pull request #12262 from cladmi/pr/cflags/fix_spaces_and_rebuild
...
makefiles: do not remove defines from CFLAGS
2019-09-28 09:42:56 +02:00
cladmi
da59fb0eda
pkg/relic: pass COMP through environment
...
export COMP by using the environment insteal of through the shell to
prevnet issues with `\"` being defined when keeping macros in CFLAGS.
Another solution was to use COMP='...' but could there could still have
issues with single quotes in CFLAGS.
2019-09-27 19:28:33 +02:00
Martine Lenders
26d8650027
Merge pull request #12174 from haukepetersen/opt_nimble_scannerusetype
...
pkg/nimble/scanner: pass adv pkt type to callback
2019-09-27 12:14:34 +02:00
Dylan Laduranty
a64613e9b9
pkg/wolfssl: prevent name-colliding struct for AES
2019-09-26 11:06:00 +02:00
Martine Lenders
4c88cb5f0e
lwip: sys_arch: replace sched_switch() with thread_yield_higher()
...
`sched_switch()` is supposed to be used in core only.
This fixes #6756 .
2019-09-24 16:33:11 +02:00