bluetooth/nimble: update to the latest master

Update NimBLE to the latest master. This includes fixing the debug log control,
which was broken since:

  da4e2f0f12

The debug log was always enable and it wasn't possible to disable it.

Signed-off-by: raiden00pl <raiden00@railab.me>
This commit is contained in:
raiden00pl
2025-09-02 14:43:31 +02:00
committed by Xiang Xiao
parent 61e82925dc
commit 18823c8b32
2 changed files with 9 additions and 3 deletions

View File

@@ -48,8 +48,14 @@ if(CONFIG_NIMBLE)
mynewt-nimble/porting/nimble/src/mem.c
mynewt-nimble/porting/nimble/src/nimble_port.c
mynewt-nimble/porting/nimble/src/os_mbuf.c
mynewt-nimble/porting/nimble/src/os_mempool.c
mynewt-nimble/porting/nimble/src/os_msys_init.c)
mynewt-nimble/porting/nimble/src/os_mempool.c)
# os_msys_init.c is obsolete
if(EXISTS mynewt-nimble/porting/nimble/src/os_msys_init.c)
list(APPEND SRCS_PORTING mynewt-nimble/porting/nimble/src/os_msys_init.c)
else()
list(APPEND SRCS_PORTING mynewt-nimble/porting/nimble/src/os_msys.c)
endif()
set(SRCS_NPL
mynewt-nimble/porting/npl/nuttx/src/os_atomic.c

View File

@@ -15,7 +15,7 @@ if NIMBLE
config NIMBLE_REF
string "Version"
default "fb15c844542e812ceb49ab5ac8502dc93c167b90"
default "b6831813cfe6da9b25c8be7136b40ce060bf9710"
---help---
Git ref name to use when downloading from NimBLE repo