 224d0aefe4
			
		
	
	
		224d0aefe4
		
			
		
	
	
	
	
		
			
			* First part of multitarget porting * Delete firmware/targets/f7/Inc directory * Delete firmware/targets/f7/Src directory * gpio: cli fixes; about: using version from HAL * sdk: path fixes * gui: include fixes * applications: more include fixes * gpio: ported to new apis * hal: introduced furi_hal_target_hw.h; libs: added one_wire * hal: f18 target * github: also build f18 by default * typo fix * fbt: removed extra checks on app list * api: explicitly bundling select mlib headers with sdk * hal: f18: changed INPUT_DEBOUNCE_TICKS to match f7 * cleaned up commented out code * docs: added info on hw targets * docs: targets: formatting fixes * f18: fixed link error * f18: fixed API version to match f7 * docs: hardware: minor wording fixes * faploader: added fw target check * docs: typo fixes * github: not building komi target by default * fbt: support for `targets` field for built-in apps * github: reworked build flow to exclude app_set; fbt: removed komi-specific appset; added additional target buildset check * github: fixed build; nfc: fixed pvs warnings * attempt to fix target id * f7, f18: removed certain HAL function from public API * apps: debug: enabled bt_debug_app for f18 * Targets: backport input pins configuration routine from F7 to F18 Co-authored-by: Aleksandr Kutuzov <alleteam@gmail.com>
		
			
				
	
	
		
			117 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			117 lines
		
	
	
		
			4.5 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include <core/common_defines.h>
 | |
| #include <furi_hal_resources.h>
 | |
| #include <furi_hal_light.h>
 | |
| #include <lp5562.h>
 | |
| #include <stdint.h>
 | |
| 
 | |
| #define LED_CURRENT_RED 50
 | |
| #define LED_CURRENT_GREEN 50
 | |
| #define LED_CURRENT_BLUE 50
 | |
| #define LED_CURRENT_WHITE 150
 | |
| 
 | |
| void furi_hal_light_init() {
 | |
|     furi_hal_i2c_acquire(&furi_hal_i2c_handle_power);
 | |
| 
 | |
|     lp5562_reset(&furi_hal_i2c_handle_power);
 | |
| 
 | |
|     lp5562_set_channel_current(&furi_hal_i2c_handle_power, LP5562ChannelRed, LED_CURRENT_RED);
 | |
|     lp5562_set_channel_current(&furi_hal_i2c_handle_power, LP5562ChannelGreen, LED_CURRENT_GREEN);
 | |
|     lp5562_set_channel_current(&furi_hal_i2c_handle_power, LP5562ChannelBlue, LED_CURRENT_BLUE);
 | |
|     lp5562_set_channel_current(&furi_hal_i2c_handle_power, LP5562ChannelWhite, LED_CURRENT_WHITE);
 | |
| 
 | |
|     lp5562_set_channel_value(&furi_hal_i2c_handle_power, LP5562ChannelRed, 0x00);
 | |
|     lp5562_set_channel_value(&furi_hal_i2c_handle_power, LP5562ChannelGreen, 0x00);
 | |
|     lp5562_set_channel_value(&furi_hal_i2c_handle_power, LP5562ChannelBlue, 0x00);
 | |
|     lp5562_set_channel_value(&furi_hal_i2c_handle_power, LP5562ChannelWhite, 0x00);
 | |
| 
 | |
|     lp5562_enable(&furi_hal_i2c_handle_power);
 | |
|     lp5562_configure(&furi_hal_i2c_handle_power);
 | |
| 
 | |
|     furi_hal_i2c_release(&furi_hal_i2c_handle_power);
 | |
| }
 | |
| 
 | |
| void furi_hal_light_set(Light light, uint8_t value) {
 | |
|     furi_hal_i2c_acquire(&furi_hal_i2c_handle_power);
 | |
|     if(light & LightRed) {
 | |
|         lp5562_set_channel_value(&furi_hal_i2c_handle_power, LP5562ChannelRed, value);
 | |
|     }
 | |
|     if(light & LightGreen) {
 | |
|         lp5562_set_channel_value(&furi_hal_i2c_handle_power, LP5562ChannelGreen, value);
 | |
|     }
 | |
|     if(light & LightBlue) {
 | |
|         lp5562_set_channel_value(&furi_hal_i2c_handle_power, LP5562ChannelBlue, value);
 | |
|     }
 | |
|     if(light & LightBacklight) {
 | |
|         uint8_t prev = lp5562_get_channel_value(&furi_hal_i2c_handle_power, LP5562ChannelWhite);
 | |
|         lp5562_execute_ramp(
 | |
|             &furi_hal_i2c_handle_power, LP5562Engine1, LP5562ChannelWhite, prev, value, 100);
 | |
|     }
 | |
|     furi_hal_i2c_release(&furi_hal_i2c_handle_power);
 | |
| }
 | |
| 
 | |
| void furi_hal_light_blink_start(Light light, uint8_t brightness, uint16_t on_time, uint16_t period) {
 | |
|     furi_hal_i2c_acquire(&furi_hal_i2c_handle_power);
 | |
|     lp5562_set_channel_src(
 | |
|         &furi_hal_i2c_handle_power,
 | |
|         LP5562ChannelRed | LP5562ChannelGreen | LP5562ChannelBlue,
 | |
|         LP5562Direct);
 | |
|     LP5562Channel led_ch = 0;
 | |
|     if(light & LightRed) led_ch |= LP5562ChannelRed;
 | |
|     if(light & LightGreen) led_ch |= LP5562ChannelGreen;
 | |
|     if(light & LightBlue) led_ch |= LP5562ChannelBlue;
 | |
|     lp5562_execute_blink(
 | |
|         &furi_hal_i2c_handle_power, LP5562Engine2, led_ch, on_time, period, brightness);
 | |
|     furi_hal_i2c_release(&furi_hal_i2c_handle_power);
 | |
| }
 | |
| 
 | |
| void furi_hal_light_blink_stop() {
 | |
|     furi_hal_i2c_acquire(&furi_hal_i2c_handle_power);
 | |
|     lp5562_set_channel_src(
 | |
|         &furi_hal_i2c_handle_power,
 | |
|         LP5562ChannelRed | LP5562ChannelGreen | LP5562ChannelBlue,
 | |
|         LP5562Direct);
 | |
|     lp5562_stop_program(&furi_hal_i2c_handle_power, LP5562Engine2);
 | |
|     furi_hal_i2c_release(&furi_hal_i2c_handle_power);
 | |
| }
 | |
| 
 | |
| void furi_hal_light_blink_set_color(Light light) {
 | |
|     furi_hal_i2c_acquire(&furi_hal_i2c_handle_power);
 | |
|     LP5562Channel led_ch = 0;
 | |
|     lp5562_set_channel_src(
 | |
|         &furi_hal_i2c_handle_power,
 | |
|         LP5562ChannelRed | LP5562ChannelGreen | LP5562ChannelBlue,
 | |
|         LP5562Direct);
 | |
|     if(light & LightRed) led_ch |= LP5562ChannelRed;
 | |
|     if(light & LightGreen) led_ch |= LP5562ChannelGreen;
 | |
|     if(light & LightBlue) led_ch |= LP5562ChannelBlue;
 | |
|     lp5562_set_channel_src(&furi_hal_i2c_handle_power, led_ch, LP5562Engine2);
 | |
|     furi_hal_i2c_release(&furi_hal_i2c_handle_power);
 | |
| }
 | |
| 
 | |
| void furi_hal_light_sequence(const char* sequence) {
 | |
|     do {
 | |
|         if(*sequence == 'R') {
 | |
|             furi_hal_light_set(LightRed, 0xFF);
 | |
|         } else if(*sequence == 'r') {
 | |
|             furi_hal_light_set(LightRed, 0x00);
 | |
|         } else if(*sequence == 'G') {
 | |
|             furi_hal_light_set(LightGreen, 0xFF);
 | |
|         } else if(*sequence == 'g') {
 | |
|             furi_hal_light_set(LightGreen, 0x00);
 | |
|         } else if(*sequence == 'B') {
 | |
|             furi_hal_light_set(LightBlue, 0xFF);
 | |
|         } else if(*sequence == 'b') {
 | |
|             furi_hal_light_set(LightBlue, 0x00);
 | |
|         } else if(*sequence == 'W') {
 | |
|             furi_hal_light_set(LightBacklight, 0xFF);
 | |
|         } else if(*sequence == 'w') {
 | |
|             furi_hal_light_set(LightBacklight, 0x00);
 | |
|         } else if(*sequence == '.') {
 | |
|             furi_delay_ms(250);
 | |
|         } else if(*sequence == '-') {
 | |
|             furi_delay_ms(500);
 | |
|         }
 | |
|         sequence++;
 | |
|     } while(*sequence != 0);
 | |
| }
 |