 b9a766d909
			
		
	
	
		b9a766d909
		
	
	
	
	
		
			
			* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "power_i.h"
 | |
| 
 | |
| #include <furi.h>
 | |
| #include <furi_hal.h>
 | |
| #include <update_util/update_operation.h>
 | |
| 
 | |
| void power_off(Power* power) {
 | |
|     furi_hal_power_off();
 | |
|     // Notify user if USB is plugged
 | |
|     view_dispatcher_send_to_front(power->view_dispatcher);
 | |
|     view_dispatcher_switch_to_view(power->view_dispatcher, PowerViewUnplugUsb);
 | |
|     furi_delay_ms(100);
 | |
|     furi_halt("Disconnect USB for safe shutdown");
 | |
| }
 | |
| 
 | |
| void power_reboot(PowerBootMode mode) {
 | |
|     if(mode == PowerBootModeNormal) {
 | |
|         update_operation_disarm();
 | |
|     } else if(mode == PowerBootModeDfu) {
 | |
|         furi_hal_rtc_set_boot_mode(FuriHalRtcBootModeDfu);
 | |
|     } else if(mode == PowerBootModeUpdateStart) {
 | |
|         furi_hal_rtc_set_boot_mode(FuriHalRtcBootModePreUpdate);
 | |
|     }
 | |
|     furi_hal_power_reset();
 | |
| }
 | |
| 
 | |
| void power_get_info(Power* power, PowerInfo* info) {
 | |
|     furi_assert(power);
 | |
|     furi_assert(info);
 | |
| 
 | |
|     furi_mutex_acquire(power->api_mtx, FuriWaitForever);
 | |
|     memcpy(info, &power->info, sizeof(power->info));
 | |
|     furi_mutex_release(power->api_mtx);
 | |
| }
 | |
| 
 | |
| FuriPubSub* power_get_pubsub(Power* power) {
 | |
|     furi_assert(power);
 | |
|     return power->event_pubsub;
 | |
| }
 | |
| 
 | |
| bool power_is_battery_healthy(Power* power) {
 | |
|     furi_assert(power);
 | |
|     bool is_healthy = false;
 | |
|     furi_mutex_acquire(power->api_mtx, FuriWaitForever);
 | |
|     is_healthy = power->info.health > POWER_BATTERY_HEALTHY_LEVEL;
 | |
|     furi_mutex_release(power->api_mtx);
 | |
|     return is_healthy;
 | |
| }
 | |
| 
 | |
| void power_enable_low_battery_level_notification(Power* power, bool enable) {
 | |
|     furi_assert(power);
 | |
|     furi_mutex_acquire(power->api_mtx, FuriWaitForever);
 | |
|     power->show_low_bat_level_message = enable;
 | |
|     furi_mutex_release(power->api_mtx);
 | |
| }
 |