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
I was trying to use the nrf9160-demo application with the latest version of this repo, but I had some errors.
I had to change the nrf9160-hal to use 0x0000_C000 as the load address, because that's what the latest SPM seems to use. Or at least, that's what the SPM built with the "at_sample" application was expecting; I think they might auto-configure the flash partition layout depending on the application you are building.
I couldn't init nrfxlib with trace off, but it did work with trace on.
Creating a TLS socket failed with Err(Nrfxlib(Nordic("new_socket", -1, 41))) if I tried to make a TLS v1.3 socket with verification enabled. Error 41 is NRF_EPROTOTYPE.
Creating a TLS socket worked if I made a TLS v1.2 socket with verification disabled, but connecting to it gave Err(Nrfxlib(Nordic("tls_connect", -1, 45)), which is NRF_EOPNOTSUPP.
The text was updated successfully, but these errors were encountered:
Connecting to jsonplaceholder.typicode.com following the example in the demo repo (https://github.com/42-technology-ltd/nrf9160-demo) works, but when I try my own endpoint, I get the errors described above.
I tried storing the correct CA_CHAIN, but nrfxlib::tls::provision_certificates fails with AtError(Error).
Currently unsure as to where to start locking for the problem.
I was trying to use the nrf9160-demo application with the latest version of this repo, but I had some errors.
0x0000_C000
as the load address, because that's what the latest SPM seems to use. Or at least, that's what the SPM built with the "at_sample" application was expecting; I think they might auto-configure the flash partition layout depending on the application you are building.Err(Nrfxlib(Nordic("new_socket", -1, 41)))
if I tried to make a TLS v1.3 socket with verification enabled. Error 41 isNRF_EPROTOTYPE
.Err(Nrfxlib(Nordic("tls_connect", -1, 45))
, which isNRF_EOPNOTSUPP
.The text was updated successfully, but these errors were encountered: