Tool/software:
Hi,
I have an application that starts by initializing most functions in a 'c' program then goes into assembly code for most functionality after that. The application operates at remote sites and communicates over LTE modems periodically to a central office. The modem is kept powered off most of the time to save energy and the application powers the modem up on a preset schedule to communicate with the central office.
My customer recently started using a new Netgear LM 1300 LTE modem and it turns out that this modem needs to have the DHCP connection re-initialized every time it is powered up.
The DHCP connection is initialized in the 'c' program with this instruction:
lwIPInit(g_ui32SysClock, pui8MACArray, 0, 0, 0, IPADDR_USE_DHCP);
So I need to call this function from inside my assembly code after the LTE modem is powered up.
Can someone please tell me how I can call this function from inside my assembly code? I've tried a number of different things and so far nothing has worked.
Thank you,
Brad McMillan