 cf591ef7eb
			
		
	
	
		cf591ef7eb
		
			
		
	
	
	
	
		
			
			* Project: fix release build, replace asserts with checks. * FuriHal: i2c refactoring, new bus access model, flexible bus gpio configuration. * FuriHal: set i2c pins to high on detach. * FuriHal: more i2c bus events, put bus under reset when not used, move bus enable/disable routine to bus handler. * FuriHal: fix i2c deadlock in power api, add external i2c handle.
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #include "lp5562.h"
 | |
| #include "lp5562_reg.h"
 | |
| 
 | |
| #include <stdio.h>
 | |
| 
 | |
| static bool lp5562_write_reg(FuriHalI2cBusHandle* handle, uint8_t address, uint8_t* data) {
 | |
|     uint8_t buffer[2] = {address, *data};
 | |
|     return furi_hal_i2c_tx(handle, LP5562_ADDRESS, buffer, 2, LP5562_I2C_TIMEOUT);
 | |
| }
 | |
| 
 | |
| void lp5562_reset(FuriHalI2cBusHandle* handle) {
 | |
|     Reg0D_Reset reg = {.value = 0xFF};
 | |
|     lp5562_write_reg(handle, 0x0D, (uint8_t*)®);
 | |
| }
 | |
| 
 | |
| void lp5562_configure(FuriHalI2cBusHandle* handle) {
 | |
|     Reg08_Config config = {.INT_CLK_EN = true, .PS_EN = true, .PWM_HF = true};
 | |
|     lp5562_write_reg(handle, 0x08, (uint8_t*)&config);
 | |
| 
 | |
|     Reg70_LedMap map = {
 | |
|         .red = EngSelectI2C,
 | |
|         .green = EngSelectI2C,
 | |
|         .blue = EngSelectI2C,
 | |
|         .white = EngSelectI2C,
 | |
|     };
 | |
|     lp5562_write_reg(handle, 0x70, (uint8_t*)&map);
 | |
| }
 | |
| 
 | |
| void lp5562_enable(FuriHalI2cBusHandle* handle) {
 | |
|     Reg00_Enable reg = {.CHIP_EN = true, .LOG_EN = true};
 | |
|     lp5562_write_reg(handle, 0x00, (uint8_t*)®);
 | |
| }
 | |
| 
 | |
| void lp5562_set_channel_current(FuriHalI2cBusHandle* handle, LP5562Channel channel, uint8_t value) {
 | |
|     uint8_t reg_no;
 | |
|     if(channel == LP5562ChannelRed) {
 | |
|         reg_no = 0x07;
 | |
|     } else if(channel == LP5562ChannelGreen) {
 | |
|         reg_no = 0x06;
 | |
|     } else if(channel == LP5562ChannelBlue) {
 | |
|         reg_no = 0x05;
 | |
|     } else if(channel == LP5562ChannelWhite) {
 | |
|         reg_no = 0x0F;
 | |
|     } else {
 | |
|         return;
 | |
|     }
 | |
|     lp5562_write_reg(handle, reg_no, &value);
 | |
| }
 | |
| 
 | |
| void lp5562_set_channel_value(FuriHalI2cBusHandle* handle, LP5562Channel channel, uint8_t value) {
 | |
|     uint8_t reg_no;
 | |
|     if(channel == LP5562ChannelRed) {
 | |
|         reg_no = 0x04;
 | |
|     } else if(channel == LP5562ChannelGreen) {
 | |
|         reg_no = 0x03;
 | |
|     } else if(channel == LP5562ChannelBlue) {
 | |
|         reg_no = 0x02;
 | |
|     } else if(channel == LP5562ChannelWhite) {
 | |
|         reg_no = 0x0E;
 | |
|     } else {
 | |
|         return;
 | |
|     }
 | |
|     lp5562_write_reg(handle, reg_no, &value);
 | |
| }
 |