Force reboot Cubecell with downlink message

Hi all,
I’m tryng to force reboot of Cubecell-AB01 board with a downlink message,I have methods to handle downlink, and I can manage other command, but I have not found a method to do it.

I had try with;

void(* resetfunc) (void) = 0;
resetfunc();

but the board remains freezed and the reset does not work.

Could you help me to find a method to reboot the board?

Thank you for the support

Try

 HW_Reset(0); // software reset?

(you can pass 0 for the software reset, 1 seems to be a deeper reboot, but I’ve not tested it a lot).

2 Likes

it works! thank you!