mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-26 22:40:25 +00:00
bf6c6c231f
* Abstract primitive type from main logic in FuriEventLoop * Remove message_queue_i.h * Add stream buffer support for event loop * Add semaphore support for event loop * Add temporary unit test workaround * Make the linter happy * Add mutex support for event loop * Implement event subscription and unsubscription while the event loop is running * Implement edge events * Fix leftover logical errors * Add event loop timer example application * Implement flag-based edge trigger and one-shot mode * Add event loop mutex example application * Only notify the event loop if stream buffer is at or above its trigger level * Reformat comments * Add event loop stream buffer example application * Add event loop multiple elements example application * Improve event loop flag names * Remove redundant signal handler as it is already handled by the event loop * Refactor Power service, improve ViewHolder * Use ViewHolder instead of ViewDispatcher in About app * Enable ViewDispatcher queue on construction, deprecate view_dispatcher_enable_queue() * Remove all invocations of view_dispatcher_enable_queue() * Remove app-scened-template * Remove missing library from target.json * Port Accessor app to ViewHolder * Make the linter happy * Add example_view_holder application, update ViewHolder docs * Add example_view_dispatcher application, update ViewDispatcher docs * Replace FuriSemaphore with FuriApiLock, remove workaround delay * Fix logical error * Fix another logical error * Use the sources directive to speed up compilation * Use constant define macro * Improve FuriEventLoop documentation * Improve FuriEventLoop documentation once more * Bump API Version * Gui: remove redundant checks from ViewDispatcher * Gui: remove dead ifs from ViewDispatcher Co-authored-by: Silent <CookiePLMonster@users.noreply.github.com> Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: あく <alleteam@gmail.com>
121 lines
3.1 KiB
C
121 lines
3.1 KiB
C
#include "power_cli.h"
|
|
|
|
#include <furi_hal.h>
|
|
#include <cli/cli.h>
|
|
#include <lib/toolbox/args.h>
|
|
#include <power/power_service/power.h>
|
|
|
|
void power_cli_off(Cli* cli, FuriString* args) {
|
|
UNUSED(cli);
|
|
UNUSED(args);
|
|
Power* power = furi_record_open(RECORD_POWER);
|
|
printf("It's now safe to disconnect USB from your flipper\r\n");
|
|
furi_delay_ms(666);
|
|
power_off(power);
|
|
}
|
|
|
|
void power_cli_reboot(Cli* cli, FuriString* args) {
|
|
UNUSED(cli);
|
|
UNUSED(args);
|
|
Power* power = furi_record_open(RECORD_POWER);
|
|
power_reboot(power, PowerBootModeNormal);
|
|
}
|
|
|
|
void power_cli_reboot2dfu(Cli* cli, FuriString* args) {
|
|
UNUSED(cli);
|
|
UNUSED(args);
|
|
Power* power = furi_record_open(RECORD_POWER);
|
|
power_reboot(power, PowerBootModeDfu);
|
|
}
|
|
|
|
void power_cli_5v(Cli* cli, FuriString* args) {
|
|
UNUSED(cli);
|
|
if(!furi_string_cmp(args, "0")) {
|
|
furi_hal_power_disable_otg();
|
|
} else if(!furi_string_cmp(args, "1")) {
|
|
furi_hal_power_enable_otg();
|
|
} else {
|
|
cli_print_usage("power_otg", "<1|0>", furi_string_get_cstr(args));
|
|
}
|
|
}
|
|
|
|
void power_cli_3v3(Cli* cli, FuriString* args) {
|
|
UNUSED(cli);
|
|
if(!furi_string_cmp(args, "0")) {
|
|
furi_hal_power_disable_external_3_3v();
|
|
} else if(!furi_string_cmp(args, "1")) {
|
|
furi_hal_power_enable_external_3_3v();
|
|
} else {
|
|
cli_print_usage("power_ext", "<1|0>", furi_string_get_cstr(args));
|
|
}
|
|
}
|
|
|
|
static void power_cli_command_print_usage(void) {
|
|
printf("Usage:\r\n");
|
|
printf("power <cmd> <args>\r\n");
|
|
printf("Cmd list:\r\n");
|
|
|
|
printf("\toff\t - shutdown power\r\n");
|
|
printf("\treboot\t - reboot\r\n");
|
|
printf("\treboot2dfu\t - reboot to dfu bootloader\r\n");
|
|
printf("\t5v <0 or 1>\t - enable or disable 5v ext\r\n");
|
|
if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagDebug)) {
|
|
printf("\t3v3 <0 or 1>\t - enable or disable 3v3 ext\r\n");
|
|
}
|
|
}
|
|
|
|
void power_cli(Cli* cli, FuriString* args, void* context) {
|
|
UNUSED(context);
|
|
FuriString* cmd;
|
|
cmd = furi_string_alloc();
|
|
|
|
do {
|
|
if(!args_read_string_and_trim(args, cmd)) {
|
|
power_cli_command_print_usage();
|
|
break;
|
|
}
|
|
|
|
if(furi_string_cmp_str(cmd, "off") == 0) {
|
|
power_cli_off(cli, args);
|
|
break;
|
|
}
|
|
|
|
if(furi_string_cmp_str(cmd, "reboot") == 0) {
|
|
power_cli_reboot(cli, args);
|
|
break;
|
|
}
|
|
|
|
if(furi_string_cmp_str(cmd, "reboot2dfu") == 0) {
|
|
power_cli_reboot2dfu(cli, args);
|
|
break;
|
|
}
|
|
|
|
if(furi_string_cmp_str(cmd, "5v") == 0) {
|
|
power_cli_5v(cli, args);
|
|
break;
|
|
}
|
|
|
|
if(furi_hal_rtc_is_flag_set(FuriHalRtcFlagDebug)) {
|
|
if(furi_string_cmp_str(cmd, "3v3") == 0) {
|
|
power_cli_3v3(cli, args);
|
|
break;
|
|
}
|
|
}
|
|
|
|
power_cli_command_print_usage();
|
|
} while(false);
|
|
|
|
furi_string_free(cmd);
|
|
}
|
|
|
|
void power_on_system_start(void) {
|
|
#ifdef SRV_CLI
|
|
Cli* cli = furi_record_open(RECORD_CLI);
|
|
|
|
cli_add_command(cli, "power", CliCommandFlagParallelSafe, power_cli, NULL);
|
|
|
|
furi_record_close(RECORD_CLI);
|
|
#else
|
|
UNUSED(power_cli);
|
|
#endif
|
|
}
|