I'm using the at cmd library ( commands like at_cmd_write_with_callback ) to communicate with the modem.
I'm trying to enable the nrf_modem library to enable OTA updates;
# Modem library
CONFIG_NRF_MODEM_LIB=y
CONFIG_NRF_MODEM_LIB_SYS_INIT=n
it breaks the at command functions;
[00:00:12.856,750] <err> at_cmd: Failed to send AT command (err:9)
[00:00:13.056,915] <err> at_cmd: Failed to send AT command (err:9)
[00:00:13.257,049] <err> at_cmd: Failed to send AT command (err:9)
[00:00:13.457,183] <err> at_cmd: Failed to send AT command (err:9)
is this expected behavior? How can I do OTA without breaking my current modem implementation?