-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
net: lib: nrf_cloud: Fix warnings on PGPS #19829
base: main
Are you sure you want to change the base?
Conversation
The new downloader library behaves slightly differently than the old download_client library. Specify the download protocol. Expect an -EPERM error when calling downloader_cancel() when download is already done. Also address potential build error with coap provisioning overlay. Signed-off-by: Pete Skeggs <[email protected]>
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: 77e223cb1ae2d0593e0f20c1fef501a70eef1cd9 more detailssdk-nrf:
Github labels
List of changed files detected by CI (4)
Outputs:ToolchainVersion: b77d8c1312 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publish GitHub Action. |
* Fixed an issue with the :kconfig:option:`CONFIG_COAP_EXTENDED_OPTIONS_LEN_VALUE` Kconfig value | ||
in the :file:`overlay-coap_nrf_provisioning.conf` file: the value was too small. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please formulate as follows:
-
Fixed:
- An issue with an uninitialized variable in the :c:func:
handle_at_cmd_requests
function. - An issue with the too small :kconfig:option:
CONFIG_COAP_EXTENDED_OPTIONS_LEN_VALUE
Kconfig value
in the :file:overlay-coap_nrf_provisioning.conf
file.
- An issue with an uninitialized variable in the :c:func:
@@ -506,6 +508,9 @@ Libraries for networking | |||
* :ref:`lib_azure_fota` | |||
* :ref:`lib_fota_download` | |||
|
|||
* :ref:`lib_nrf_cloud_pgps` library: | |||
|
|||
* Fixed warning due to missing ``https`` download protocol. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
* Fixed warning due to missing ``https`` download protocol. | |
* Fixed the warning due to missing ``https`` download protocol. |
The new downloader library behaves slightly differently than the old download_client library.
Specify the download protocol. Expect an -EPERM error when calling downloader_cancel() when download is already done.
Also address potential build error with coap provisioning overlay.