-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warnings when compiling this code #310
Comments
This is still incomplete, there is also the unenumerated case in ArduinoBLE/src/utility/HCI.cpp, if someone can tell me what does 0x0A means in that file, I'll create a PR for it |
Issue "Unenumerated case in ArduinoBLE/src/utility/HCI.cpp" not fixed . Depending on the Preferences "Compiler warnings" set to All or More there is an error message:
|
This 0x0A value was introduced with PR #156
But never filled. Only print when BLE_TRACE is enabled. Maybe @unknownconstant could comment on this? |
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
Let me take a look - it's been a while since I've been through this code |
I think I've found which LE META EVENT it is. I would propose this as a fix: ----------------------------- src/utility/HCI.cpp -----------------------------
index 0e64063..2394fbb 100644
@@ -993,7 +993,7 @@ void HCIClass::handleEventPkt(uint8_t /*plen*/, uint8_t pdata[])
Serial.println(leMetaHeader->subevent,HEX);
#endif
switch((LE_META_EVENT)leMetaHeader->subevent){
- case 0x0A:{
+ case ENHANCED_CONN_COMPLETE:{
struct __attribute__ ((packed)) EvtLeConnectionComplete {
uint8_t status;
uint16_t handle;
------------------------------ src/utility/HCI.h ------------------------------
index 0a530ce..a6fa66e 100644
@@ -46,7 +46,8 @@ enum LE_META_EVENT {
LONG_TERM_KEY_REQUEST = 0x05,
REMOTE_CONN_PARAM_REQ = 0x06,
READ_LOCAL_P256_COMPLETE = 0x08,
- GENERATE_DH_KEY_COMPLETE = 0x09
+ GENERATE_DH_KEY_COMPLETE = 0x09,
+ ENHANCED_CONN_COMPLETE = 0x0A,
};
String metaEventToString(LE_META_EVENT event);
String commandToString(LE_COMMAND command); |
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
Linked to: arduino-libraries#310 Signed-off-by: Frederic Pillon <[email protected]>
When you build the code in this library there are several warnings printed
Order member initialization on(fixed by Fix warnings #302)BLELocalCharacteristic
Unused variables in:(fixed by Fix warnings #302)HCIClass::tryResolveAddress
HCIClass::handleEventPkt
(the whole else if statement did nothing)L2CAPSignalingClass::handleSecurityData
(one initialization should be inside ofBLE_TRACE
)BluetoothCryptoToolbox::f5
BluetoothCryptoToolbox::testAh
BluetoothCryptoToolbox::testg2
Uninitialized variable in(fixed by Fix warnings #302)L2CAPSignalingClass::handleSecurityData
ArduinoBLE/src/utility/HCI.cpp
(would be fixed by merge of fix(HCI): missing LE_Event_Mask #386)I have a PR ready for fixing most of these warnings (all except the last one) in https://github.com//pull/302, but I haven't had luck getting any traction on getting that reviewedIf someone could review that PR most of these things would be fixed.
If someone tells me what 0x0A means in that unenumerated case, I'm happy to add that to the enum as well
Additional context
Additional reports
Related
'us_timestamp_t mbed::TimerBase::read_high_resolution_us() const' is deprecated
" #164The text was updated successfully, but these errors were encountered: