46a25c295c
* Lib: always include rfal * Gui: remove screen_stream * Input: decouple from Cli * Loader: decouple from Cli * Desktop: ignore missing favorite app, decouple from Archive * Make: make Notification a Gui dependency * Make: embed debugging information into elfs * Loader: hide Plugins submenu when plugins ga arimasen * Applications: update on start hook usage * Loader: fix dead lock on menu rebuild with open rpc, new cli command. Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
59 lines
1.8 KiB
C
59 lines
1.8 KiB
C
#include "power_cli.h"
|
|
|
|
#include <power/power_service/power.h>
|
|
#include <cli/cli.h>
|
|
#include <furi-hal.h>
|
|
|
|
void power_cli_poweroff(Cli* cli, string_t args, void* context) {
|
|
Power* power = furi_record_open("power");
|
|
printf("It's now safe to disconnect USB from your flipper\r\n");
|
|
power_off(power);
|
|
}
|
|
|
|
void power_cli_reboot(Cli* cli, string_t args, void* context) {
|
|
power_reboot(PowerBootModeNormal);
|
|
}
|
|
|
|
void power_cli_dfu(Cli* cli, string_t args, void* context) {
|
|
power_reboot(PowerBootModeDfu);
|
|
}
|
|
|
|
void power_cli_info(Cli* cli, string_t args, void* context) {
|
|
furi_hal_power_dump_state();
|
|
}
|
|
|
|
void power_cli_otg(Cli* cli, string_t args, void* context) {
|
|
if(!string_cmp(args, "0")) {
|
|
furi_hal_power_disable_otg();
|
|
} else if(!string_cmp(args, "1")) {
|
|
furi_hal_power_enable_otg();
|
|
} else {
|
|
cli_print_usage("power_otg", "<1|0>", string_get_cstr(args));
|
|
}
|
|
}
|
|
|
|
void power_cli_ext(Cli* cli, string_t args, void* context) {
|
|
if(!string_cmp(args, "0")) {
|
|
furi_hal_power_disable_external_3_3v();
|
|
} else if(!string_cmp(args, "1")) {
|
|
furi_hal_power_enable_external_3_3v();
|
|
} else {
|
|
cli_print_usage("power_ext", "<1|0>", string_get_cstr(args));
|
|
}
|
|
}
|
|
|
|
void power_on_system_start() {
|
|
#ifdef SRV_CLI
|
|
Cli* cli = furi_record_open("cli");
|
|
|
|
cli_add_command(cli, "poweroff", CliCommandFlagParallelSafe, power_cli_poweroff, NULL);
|
|
cli_add_command(cli, "reboot", CliCommandFlagParallelSafe, power_cli_reboot, NULL);
|
|
cli_add_command(cli, "dfu", CliCommandFlagParallelSafe, power_cli_dfu, NULL);
|
|
cli_add_command(cli, "power_info", CliCommandFlagParallelSafe, power_cli_info, NULL);
|
|
cli_add_command(cli, "power_otg", CliCommandFlagParallelSafe, power_cli_otg, NULL);
|
|
cli_add_command(cli, "power_ext", CliCommandFlagParallelSafe, power_cli_ext, NULL);
|
|
|
|
furi_record_close("cli");
|
|
#endif
|
|
}
|