I'm developing an application that communicates with the OPTA via the internet. I'd like to have a reset feature in case there are any issues. Can this be done programmatically? I'd prefer not to create a separate circuit that disconnects the OPTA's power
maybe watchdog can help?
There is an mbed OS API that might do the job. system_reset()
Use this function to make a reset:
NVIC_SystemReset();