-
Notifications
You must be signed in to change notification settings - Fork 55
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
[BUG] Build Fails #127
Comments
Hi am tried to compile and I am getting this same error. ` /home/rushil/Desktop/development/iot-reference-esp32/com-module/components/esp-aws-iot/libraries/aws-iot-core-mqtt-file-streams-embedded-c/aws-iot-core-mqtt-file-streams-embedded-c/source/MQTTFileDownloader_cbor.c:117:50: error: passing argument 2 of 'cbor_value_get_int' from incompatible pointer type [-Wincompatible-pointer-types] 117 | cborResult = cbor_value_get_int( &value, ( int32_t * ) fileId ); ` |
Sounds like you're using a newer version of esp-idf. Try with 5.2.5 |
Describe the bug
building main fails.
System information
steps:
NOTE
I skipped this step:
2.3 Provision the ESP32-C3 with the private key, device certificate and CA certificate in Development M
get 3 of these in this same file.
MQTTFileDownloader_cbor.c:117:50: error: passing argument 2 of 'cbor_value_get_int' from incompatible pointer type [-Wincompatible-pointer-types]
117 | cborResult = cbor_value_get_int( &value, ( int32_t * ) fileId );
| ^~~~~~~~~~~~~~~~~~~~
| |
| int32_t * {aka long int *}
I don't believe provisioning is a necessary step to successfully building, maybe I'm missing a key point here?
I noticed that main does fail build in the github workflow, but fca362f passed (Sep 9, 2024). This commit still fails for me. Whether building with vscode+esp-idf or using idf.py.
The text was updated successfully, but these errors were encountered: