mirror of
https://github.com/h2zero/esp-nimble-cpp.git
synced 2024-11-21 20:50:55 +01:00
Implement selective log messages.
This commit is contained in:
parent
bbeae9df6b
commit
3d6f8b691e
2 changed files with 44 additions and 3 deletions
27
Kconfig.projbuild
Normal file
27
Kconfig.projbuild
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
menu "ESP-NimBLE-CPP configuration"
|
||||||
|
|
||||||
|
config NIMBLE_CPP_ENABLE_RETURN_CODE_TEXT
|
||||||
|
bool "Show NimBLE return codes as text in debug log."
|
||||||
|
default "n"
|
||||||
|
help
|
||||||
|
Enabling this option will display return code values as text
|
||||||
|
messages in the debug log. This will use approximately 8kB
|
||||||
|
of flash memory.
|
||||||
|
|
||||||
|
config NIMBLE_CPP_ENABLE_GAP_EVENT_CODE_TEXT
|
||||||
|
bool "Show NimBLE gap events as text in debug log."
|
||||||
|
default "n"
|
||||||
|
help
|
||||||
|
Enabling this option will display gap event codes as text
|
||||||
|
messages in the debug log. This will use approximately 1kB
|
||||||
|
of flash memory.
|
||||||
|
|
||||||
|
config NIMBLE_CPP_ENABLE_ADVERTISMENT_TYPE_TEXT
|
||||||
|
bool "Show advertisment types as text in debug log."
|
||||||
|
default "n"
|
||||||
|
help
|
||||||
|
Enabling this option will display advertisment types recieved
|
||||||
|
while scanning as text messages in the debug log.
|
||||||
|
This will use approximately 250 bytes of flash memory.
|
||||||
|
|
||||||
|
endmenu
|
|
@ -12,6 +12,10 @@
|
||||||
#include "NimBLEUtils.h"
|
#include "NimBLEUtils.h"
|
||||||
#include "NimBLELog.h"
|
#include "NimBLELog.h"
|
||||||
|
|
||||||
|
#if defined(ARDUINO_ARCH_ESP32) && !defined(CONFIG_NIMBLE_ENABLED)
|
||||||
|
#include "nimconfig.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
static const char* LOG_TAG = "NimBLEUtils";
|
static const char* LOG_TAG = "NimBLEUtils";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -78,6 +82,7 @@ int NimBLEUtils::checkConnParams(ble_gap_conn_params* params) {
|
||||||
|
|
||||||
|
|
||||||
const char* NimBLEUtils::returnCodeToString(int rc) {
|
const char* NimBLEUtils::returnCodeToString(int rc) {
|
||||||
|
#if CONFIG_NIMBLE_CPP_ENABLE_RETURN_CODE_TEXT > 0
|
||||||
switch(rc) {
|
switch(rc) {
|
||||||
case 0:
|
case 0:
|
||||||
return "SUCCESS";
|
return "SUCCESS";
|
||||||
|
@ -355,10 +360,12 @@ const char* NimBLEUtils::returnCodeToString(int rc) {
|
||||||
return "Pairing over the LE transport failed - Pairing Request sent over the BR/EDR transport in process.";
|
return "Pairing over the LE transport failed - Pairing Request sent over the BR/EDR transport in process.";
|
||||||
case (0x0500+BLE_SM_ERR_CROSS_TRANS ):
|
case (0x0500+BLE_SM_ERR_CROSS_TRANS ):
|
||||||
return "BR/EDR Link Key generated on the BR/EDR transport cannot be used to derive and distribute keys for the LE transport.";
|
return "BR/EDR Link Key generated on the BR/EDR transport cannot be used to derive and distribute keys for the LE transport.";
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return "Unknown";
|
return "Unknown";
|
||||||
}
|
}
|
||||||
|
#else // #if CONFIG_NIMBLE_CPP_ENABLE_RETURN_CODE_TEXT
|
||||||
|
return "";
|
||||||
|
#endif // #if CONFIG_NIMBLE_CPP_ENABLE_RETURN_CODE_TEXT
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -368,6 +375,7 @@ const char* NimBLEUtils::returnCodeToString(int rc) {
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const char* NimBLEUtils::advTypeToString(uint8_t advType) {
|
const char* NimBLEUtils::advTypeToString(uint8_t advType) {
|
||||||
|
#if CONFIG_NIMBLE_CPP_ENABLE_ADVERTISMENT_TYPE_TEXT > 0
|
||||||
switch(advType) {
|
switch(advType) {
|
||||||
case BLE_HCI_ADV_TYPE_ADV_IND : //0
|
case BLE_HCI_ADV_TYPE_ADV_IND : //0
|
||||||
return "Undirected - Connectable / Scannable";
|
return "Undirected - Connectable / Scannable";
|
||||||
|
@ -382,7 +390,9 @@ const char* NimBLEUtils::advTypeToString(uint8_t advType) {
|
||||||
default:
|
default:
|
||||||
return "Unknown flag";
|
return "Unknown flag";
|
||||||
}
|
}
|
||||||
|
#else // #if CONFIG_NIMBLE_CPP_ENABLE_ADVERTISMENT_TYPE_TEXT
|
||||||
|
return "";
|
||||||
|
#endif // #if CONFIG_NIMBLE_CPP_ENABLE_ADVERTISMENT_TYPE_TEXT
|
||||||
} // adFlagsToString
|
} // adFlagsToString
|
||||||
|
|
||||||
|
|
||||||
|
@ -433,6 +443,7 @@ void NimBLEUtils::dumpGapEvent(ble_gap_event *event, void *arg){
|
||||||
* @return A string representation of the event type.
|
* @return A string representation of the event type.
|
||||||
*/
|
*/
|
||||||
const char* NimBLEUtils::gapEventToString(uint8_t eventType) {
|
const char* NimBLEUtils::gapEventToString(uint8_t eventType) {
|
||||||
|
#if CONFIG_NIMBLE_CPP_ENABLE_GAP_EVENT_CODE_TEXT > 0
|
||||||
switch (eventType) {
|
switch (eventType) {
|
||||||
case BLE_GAP_EVENT_CONNECT : //0
|
case BLE_GAP_EVENT_CONNECT : //0
|
||||||
return "BLE_GAP_EVENT_CONNECT ";
|
return "BLE_GAP_EVENT_CONNECT ";
|
||||||
|
@ -502,11 +513,14 @@ const char* NimBLEUtils::gapEventToString(uint8_t eventType) {
|
||||||
|
|
||||||
case BLE_GAP_EVENT_SCAN_REQ_RCVD: //23
|
case BLE_GAP_EVENT_SCAN_REQ_RCVD: //23
|
||||||
return "BLE_GAP_EVENT_SCAN_REQ_RCVD";
|
return "BLE_GAP_EVENT_SCAN_REQ_RCVD";
|
||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
NIMBLE_LOGD(LOG_TAG, "gapEventToString: Unknown event type %d 0x%.2x", eventType, eventType);
|
NIMBLE_LOGD(LOG_TAG, "gapEventToString: Unknown event type %d 0x%.2x", eventType, eventType);
|
||||||
return "Unknown event type";
|
return "Unknown event type";
|
||||||
}
|
}
|
||||||
|
#else // #if CONFIG_NIMBLE_CPP_ENABLE_GAP_EVENT_CODE_TEXT
|
||||||
|
return "";
|
||||||
|
#endif // #if CONFIG_NIMBLE_CPP_ENABLE_GAP_EVENT_CODE_TEXT
|
||||||
} // gapEventToString
|
} // gapEventToString
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue