Francisco
3afa47d8f2
Merge pull request #14955 from maribu/cflags-cast-align
...
makefiles/cflags.inc.mk: Add -Wcast-align
2021-12-03 17:47:24 +01:00
Marian Buschsieweke
79103d3156
pkg/nimble: add -Wno-cast-align
...
Also brutally silence -Wcast-align warnings in OS_MBUF_PKTHDR()
and OS_MBUF_PKTHDR_TO_MBUF(), as those are used by nimble users.
It might make sense to check if the silenced / disabled warnings do
indeed point out unaligned memory accesses.
2021-12-03 10:12:33 +01:00
Hauke Petersen
79eea21b77
pkg/nimble: version bump to include ext adv fixes
2021-12-02 23:31:33 +01:00
Hauke Petersen
34b009fcc1
pkg/nimble: add config options for BLE5 PHYs
2021-12-02 23:31:32 +01:00
Hauke Petersen
8368a458bc
pkg/nimble: version bump to fix broken scanning
2021-10-07 09:06:47 +02:00
Hauke Petersen
3a080cd90d
pkg/nimble: bump version to cddb7c4
2021-10-06 16:47:34 +02:00
Francisco Molina
24a131ebe0
pkg/nimble: bump version, rmv patches
2021-09-09 13:48:52 +02:00
Francisco
a6f3bc9c3b
Merge pull request #16540 from fjmolinas/pr_nimble_tinycrypt
...
pkg/nimble: use tinycrypt pkg
2021-09-07 09:31:49 +02:00
Hauke Petersen
42f033afb9
pkg/nimble: add RPL-over-BLE impl. (nimble_rpble)
2021-08-24 11:33:13 +02:00
Francisco Molina
701891e7e3
pkg/nimble: allow using mynewt-core pkg
2021-07-06 14:52:26 +02:00
Francisco Molina
5d627c5554
pkg/nimble: use tinycrypt pkg
2021-06-08 14:26:46 +02:00
Hauke Petersen
05f0105a90
pkg/nimble: switch back to upstream master
2021-04-15 14:49:36 +02:00
Hauke Petersen
7e22f644da
pkg/nimble: update to temporary upstream branch
2021-04-15 08:21:56 +02:00
9bd22dba79
pkg: silent make commands with RIOT_CI_BUILD=1
2021-03-12 16:05:18 +01:00
Hendrik van Essen
fe4f0a69ee
sys/nimble_autoadv: add new module
...
module for automated bluetooth advertising
2020-11-05 10:53:21 +01:00
Hauke Petersen
28b595e72e
pkt/nimble: version bump to cd7d7aa
2020-07-08 08:45:09 +02:00
Hauke Petersen
3591206cbb
pkt/nimble: add statconn static connection manager
2020-07-06 08:14:09 +02:00
385ad95701
pkg: adapt 'simple' packages to the new organization
2020-06-26 09:25:43 +02:00
c25f611258
pkg/nimble: use Makefile.base to build pkg modules when possible
2020-06-14 12:04:21 +02:00
Hauke Petersen
723aadcc87
pkg/nimble: bump version and remove obsolete patch
2020-01-13 21:00:48 +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
Hauke Petersen
ffd8fc9976
pkg/nimble: bump version to 946cfb7
2019-12-16 13:47:44 +01:00
Hauke Petersen
004eb5e0b6
pkg/nimble: add 'autoconn' connection manager
2019-11-13 12:59:35 +01:00
Hauke Petersen
b7885428ce
pkg/nimble: bump NimBLE version
2019-10-01 16:40:08 +02:00
Hauke Petersen
891294d3b7
pkg/nimble: temporary LLVM workaround for NimBLE
2019-08-28 16:49:21 +02:00
Hauke Petersen
6bbe16601a
pkg/nimble: add netif wrapper
2019-08-28 16:48:42 +02:00
701ba9c608
pkg/nimble: adapt to nrf51 family
2019-08-07 09:53:55 +02:00
Hauke Petersen
4016eeb1ad
pkg/nimble: bump version to 997dad8
2019-08-01 13:55:47 +02:00
ce9b1e3826
pkg: remove not needed git-downloaded dependencies
...
This is implicitly done by the "pkg-prepare"-step of the main make
instance.
2019-06-28 09:38:44 +02:00
Hauke Petersen
fb3febab7f
ble/nimble: add support for build-in IPSS service
2019-06-04 14:48:42 +02:00
Hauke Petersen
88f9cf780a
ble/nimble: bump version to 9d4bda2
2019-05-17 10:34:26 +02:00
Hauke Petersen
42c6702433
ble/nimble: add scanner submodule
2019-03-27 18:11:37 +01:00
Hauke Petersen
bce0381c6f
ble/nimble: add scanlist submodule
2019-03-27 16:45:25 +01:00
Hauke Petersen
310cdab3d3
ble/nimble: add addr helper module
2019-03-26 22:20:01 +01:00
Hauke Petersen
4ec250b24f
pkg/nimble: bump version to a7b3c93
...
- version update to a7b3c93
- remove patches (merged to changes to nimble upstream)
- adapt initialization order to upstream changes
2019-03-20 13:36:00 +01:00
Hauke Petersen
2f46f8c732
pkg/nimble: improve Makefile structure
2019-03-06 18:21:52 +01:00
Juan Carrano
d7789c08f2
nimble/Makefile: remove unnecessary warning suppression.
...
The -Wno-sometimes-uninitialized suppression seems to no longer be
necessary. Removing it as it may mask a real bug.
If the problem reappears, and if the comment is correct about it
being only in an unused function, then instead of adding the CFLAG,
it should be fixed locally via a patch.
2018-11-29 14:11:07 +01:00
Juan Carrano
2ffb83af6f
pkg/nimble: add patch to fix pointer alignment issue.
...
Nimble contains a couple of casts that discard alignment information.
This causes a warning with clang's -Wno-address-of-packed-member.
A previous PR (#10503 ) supressed that warning. This commit re-enables
them and provides a patch to fix the offending code.
The fix has been submitted upstream, see
https://github.com/apache/mynewt-nimble/pull/252
2018-11-29 14:04:01 +01:00
Sebastian Meiling
47a662652e
pkg/nimble: disable -Waddress-of-packed-member for llvm
2018-11-29 12:06:12 +01:00
Hauke Petersen
d5b019fdc2
pkg/nimble: disable selected compiler warnings
2018-11-08 14:10:58 +01:00
Hauke Petersen
af57afe3ac
pkg/nimble: bump version to current master
2018-11-08 12:40:48 +01:00
Martine Lenders
2f15aa9747
nimble: deactivate -Wunused-function with LLVM/clang
...
When building `nimble` with LLVM/clang the function
`ble_ll_adv_active_chanset_is_sec()` in `ble_ll_adv.c` is reported to
be unused, it is used within an assertions and `ifdef`s within that
file though. So this just disables that warning.
2018-08-16 17:19:29 +02:00
Hauke Petersen
24a7f26eee
pkg: add support for NimBLE as package
2018-06-06 13:52:58 +02:00