Difference between revisions of "Zephyr RTOS releases"
From Wiki at Neela Nurseries
m |
|||
Line 12: | Line 12: | ||
* https://devzone.nordicsemi.com/f/nordic-q-a/87493/at-command-interface-library-removed-in-ncs-1-9-1 | * https://devzone.nordicsemi.com/f/nordic-q-a/87493/at-command-interface-library-removed-in-ncs-1-9-1 | ||
* https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.9.0/nrfxlib/nrf_modem/doc/at_interface.html | * https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.9.0/nrfxlib/nrf_modem/doc/at_interface.html | ||
+ | |||
+ | Calls to `rstatus = at_cmd_write("AT+CFUN=1", buffer_at_response, sizeof(buffer_at_response), NULL)` must become calls to `int nrf_modem_at_cmd(void *buf, size_t len, const char *fmt, ...);` | ||
+ | |||
Revision as of 21:29, 26 July 2022
2022-07-26 martes, mangalvaar . . .
Change to at_cmd.h header file and larger library:
- https://devzone.nordicsemi.com/f/nordic-q-a/87493/at-command-interface-library-removed-in-ncs-1-9-1
- https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.9.0/nrfxlib/nrf_modem/doc/at_interface.html
Calls to `rstatus = at_cmd_write("AT+CFUN=1", buffer_at_response, sizeof(buffer_at_response), NULL)` must become calls to `int nrf_modem_at_cmd(void *buf, size_t len, const char *fmt, ...);`
^ References