You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.
When using the SAMD_WiFiNINA example, and setting USE_DYNAMIC_PARAMETERS to false in defines.h, the sketch won't compile. Error messages:
error: 'NUM_MENU_ITEMS' was not declared in this scope (code lines 1350, 1363)
error: 'myMenuItems' was not declared in this scope (code lines 1354, 1367)
There might be a simple fix through adding the conditional statements "#if USE_DYNAMIC_PARAMETERS" / "#endif" to the code in WiFiManager_NINA_Lite_SAMD.h (twice, between code lines 1347 and 1371, to exclude the 2 "for..." blocks from compiling). This fixed it for me, and the example configuration portal now works as intended.
The same issue probably exists for the other board examples as well (which I have not tested).
Thank you very much, it's a great toolset!
The text was updated successfully, but these errors were encountered:
When using the SAMD_WiFiNINA example, and setting USE_DYNAMIC_PARAMETERS to false in defines.h, the sketch won't compile. Error messages:
There might be a simple fix through adding the conditional statements "#if USE_DYNAMIC_PARAMETERS" / "#endif" to the code in WiFiManager_NINA_Lite_SAMD.h (twice, between code lines 1347 and 1371, to exclude the 2 "for..." blocks from compiling). This fixed it for me, and the example configuration portal now works as intended.
The same issue probably exists for the other board examples as well (which I have not tested).
Thank you very much, it's a great toolset!
The text was updated successfully, but these errors were encountered: