I am looking for information to help ease the porting of the STM32L4 driving the ADIN1110 to a nRF52840. Analog devices has already incorporated the secure_mqtt_sensor_actuator application within the Zephyr library. Having made that the base of my hardware I can compile a hex file that operates on the nrf52840 usb dongle. The hex operates the COM over USB and spits out a few messages, but the one that I would like to address is the <wrn> net_if: No default interface found! The main.c fills the variable net_if_get_default() with null. because the array _net_if_list_start[0] equals _netif_list_end[0]. I need to configure the interface with the SPI of the nrf52840 usb dongle. I thought this might be possible with a device tree overlay, but thus far has not changed the warning message. Leveraging the Zephyr library in a best practices sort of manner seems to be deep within the internet and elusive, but given the copying of a sample application like the secure_mqtt_sensor_actuator the development steps might be to select an appropriate board, add a application.conf, add a hardware.overlay, and compile. Any help towards the solution of my problem would be greatly appreciated.
Cy