Skip to content
Snippets Groups Projects
Commit d6ea08a7 authored by schneider's avatar schneider
Browse files

fix(ble): Print warning when looging unsup. type

parent 17c7c61e
No related branches found
No related tags found
No related merge requests found
...@@ -115,7 +115,8 @@ void WsfPDump(wsfPDumpType_t pdType, uint16_t length, uint8_t *pBuffer) ...@@ -115,7 +115,8 @@ void WsfPDump(wsfPDumpType_t pdType, uint16_t length, uint8_t *pBuffer)
type = 0x02; type = 0x02;
break; break;
default: default:
break; LOG_WARN("ble", "Unknown packet type to be logged");
return;
} }
uint64_t tick = xTaskGetTickCount(); uint64_t tick = xTaskGetTickCount();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment