AT+LPMLVL=2 in RUI3 API?

Is there api.system.xxx command to activate stop2 low power mode in RUI3
(I’m aware api.system.lpm(1/0) to enable /disable)

If the only way is using AT+LPMLVL=2,

Is there an api.xxx to launch such AT command from my application? (something like serial1.send_at ?)

Thank you
Antonio

No, there is no API call for the LPM level.
You set it once with AT command, it is saved in the flash and used every time the module boots up.

The really cool things are only available on the AT command…

Have you considered a RUI api call to send AT commands from custom applications?

eg.
char response[64];
uint8_t status = api.system.at_command(“AT+LPMLVL=2”, response);
Serial.println(response);

Regards
Antonio