You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by "raiden00pl (via GitHub)" <gi...@apache.org> on 2023/06/22 17:06:39 UTC

[GitHub] [nuttx-apps] raiden00pl commented on a diff in pull request #1800: nimble: various improvements for nimble intergartion

raiden00pl commented on code in PR #1800:
URL: https://github.com/apache/nuttx-apps/pull/1800#discussion_r1238810608


##########
wireless/bluetooth/nimble/Kconfig:
##########
@@ -14,6 +14,208 @@ config NIMBLE_REF
 	---help---
 		Git ref name to use when downloading from nimBLE repo
 
+if DEBUG_FEATURES
+
+config NIMBLE_DEBUG_ERROR
+	bool "Apache nimBLE error output"
+	default n
+	depends on DEBUG_ERROR
+
+config NIMBLE_DEBUG_WARN
+	bool "Apache nimBLE warnings output"
+	default n
+	depends on DEBUG_ERROR
+
+config NIMBLE_DEBUG_INFO
+	bool "Apache nimBLE informational debug output"
+	default n
+	depends on DEBUG_INFO
+
+endif # DEBUG_FEATURES
+
+config NIMBLE_TINYCRYPT
+	bool "Apache nimBLE tinycrypt support"
+	default y
+
+config NIMBLE_MESH
+	bool "Apache nimBLE mesh support"
+	default n
+	depends on EXPERIMENTAL
+
+menu "NimBLE role configuration"
+
+config NIMBLE_ROLE_BROADCASTER
+	bool "nimBLE broadcaster role"
+	default n
+
+config NIMBLE_ROLE_CENTRAL
+	bool "nimBLE central role"
+	default n
+
+config NIMBLE_ROLE_OSBSERVER
+	bool "nimBLE observer role"
+	default n
+
+config NIMBLE_ROLE_PERIPHERAL
+	bool "nimBLE peripheral role"
+	default n
+
+config NIMBLE_ROLE_PERIPHERAL

Review Comment:
   fixed



##########
wireless/bluetooth/nimble/Kconfig:
##########
@@ -14,6 +14,208 @@ config NIMBLE_REF
 	---help---
 		Git ref name to use when downloading from nimBLE repo
 
+if DEBUG_FEATURES
+
+config NIMBLE_DEBUG_ERROR
+	bool "Apache nimBLE error output"
+	default n
+	depends on DEBUG_ERROR
+
+config NIMBLE_DEBUG_WARN
+	bool "Apache nimBLE warnings output"
+	default n
+	depends on DEBUG_ERROR
+
+config NIMBLE_DEBUG_INFO
+	bool "Apache nimBLE informational debug output"
+	default n
+	depends on DEBUG_INFO
+
+endif # DEBUG_FEATURES
+
+config NIMBLE_TINYCRYPT
+	bool "Apache nimBLE tinycrypt support"
+	default y
+
+config NIMBLE_MESH
+	bool "Apache nimBLE mesh support"
+	default n
+	depends on EXPERIMENTAL
+
+menu "NimBLE role configuration"
+
+config NIMBLE_ROLE_BROADCASTER
+	bool "nimBLE broadcaster role"
+	default n
+
+config NIMBLE_ROLE_CENTRAL
+	bool "nimBLE central role"
+	default n
+
+config NIMBLE_ROLE_OSBSERVER

Review Comment:
   fixed



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@nuttx.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org