Skip to content
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

Open
9 of 10 tasks
roleroz opened this issue Jul 20, 2023 · 5 comments · Fixed by #302 · May be fixed by #386
Open
9 of 10 tasks

Warnings when compiling this code #310

roleroz opened this issue Jul 20, 2023 · 5 comments · Fixed by #302 · May be fixed by #386
Labels
topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project

Comments

@roleroz
Copy link
Contributor

roleroz commented Jul 20, 2023

When you build the code in this library there are several warnings printed

  • Order member initialization on BLELocalCharacteristic (fixed by Fix warnings #302)
  • 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 of BLE_TRACE)
    • BluetoothCryptoToolbox::f5
    • BluetoothCryptoToolbox::testAh
    • BluetoothCryptoToolbox::testg2
  • Uninitialized variable in L2CAPSignalingClass::handleSecurityData (fixed by Fix warnings #302)
  • Unenumerated case in 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 reviewed

If 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

@per1234 per1234 added type: imperfection Perceived defect in any part of project topic: code Related to content of the project itself labels Jul 20, 2023
@per1234 per1234 linked a pull request Jul 20, 2023 that will close this issue
@roleroz
Copy link
Contributor Author

roleroz commented Aug 4, 2023

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

@roleroz roleroz mentioned this issue Aug 4, 2023
@per1234 per1234 added conclusion: resolved Issue was resolved and removed conclusion: resolved Issue was resolved labels Aug 5, 2023
@per1234 per1234 reopened this Aug 5, 2023
@ataweg
Copy link

ataweg commented Jan 17, 2024

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:

f:\Projects\Arduino\libraries\ArduinoBLE\src\utility\HCI.cpp: In member function 'virtual void HCIClass::handleEventPkt(uint8_t, uint8_t*)':
f:\Projects\Arduino\libraries\ArduinoBLE\src\utility\HCI.cpp:991:7: error: case value '10' not in enumerated type 'LE_META_EVENT' [-Werror=switch]
       case 0x0A:{
       ^~~~
cc1plus.exe: some warnings being treated as errors

@fpistm
Copy link
Contributor

fpistm commented Mar 14, 2025

This 0x0A value was introduced with PR #156
It seems to be a the same than CONN_COMPLETE with only 2 fields added in the struct:

          uint8_t localResolvablePrivateAddress[6];
          uint8_t peerResolvablePrivateAddress[6];

But never filled. Only print when BLE_TRACE is enabled.

Maybe @unknownconstant could comment on this?

fpistm added a commit to fpistm/STM32duinoBLE that referenced this issue Mar 20, 2025
Linked to:
 arduino-libraries#310

Signed-off-by: Frederic Pillon <[email protected]>
@unknownconstant
Copy link
Contributor

Let me take a look - it's been a while since I've been through this code

@fpistm
Copy link
Contributor

fpistm commented Mar 21, 2025

I think I've found which LE META EVENT it is.
It seems to be the LE Enhanced Connection Complete Event.

Image

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);

fpistm added a commit to stm32duino/STM32duinoBLE that referenced this issue Mar 21, 2025
Linked to:
 arduino-libraries#310

Signed-off-by: Frederic Pillon <[email protected]>
fpistm added a commit to stm32duino/STM32duinoBLE that referenced this issue Mar 21, 2025
Linked to:
 arduino-libraries#310

Signed-off-by: Frederic Pillon <[email protected]>
fpistm added a commit to fpistm/STM32duinoBLE that referenced this issue Mar 21, 2025
Linked to:
 arduino-libraries#310

Signed-off-by: Frederic Pillon <[email protected]>
fpistm added a commit to fpistm/STM32duinoBLE that referenced this issue Mar 21, 2025
Linked to:
 arduino-libraries#310

Signed-off-by: Frederic Pillon <[email protected]>
@fpistm fpistm linked a pull request Mar 21, 2025 that will close this issue
@per1234 per1234 linked a pull request Mar 21, 2025 that will close this issue
fpistm added a commit to stm32duino/STM32duinoBLE that referenced this issue Mar 21, 2025
Linked to:
 arduino-libraries#310

Signed-off-by: Frederic Pillon <[email protected]>
fpistm added a commit to stm32duino/STM32duinoBLE that referenced this issue Mar 27, 2025
Linked to:
 arduino-libraries#310

Signed-off-by: Frederic Pillon <[email protected]>
fpistm added a commit to stm32duino/STM32duinoBLE that referenced this issue Mar 28, 2025
Linked to:
 arduino-libraries#310

Signed-off-by: Frederic Pillon <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project
Projects
None yet
Development

Successfully merging a pull request may close this issue.

5 participants