LED_Driver_Interface.c 2.28 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
#include "LED_Driver.h"
#include "GPIO.h"
#include <string.h>

/*注意需将u8LEDDriverRamData定义在休眠唤醒后不会被清空的RAM区域*/
LED_Driver_uint8_t u8LEDDriverRamData[LED_DRIVER_RAM_LEN];

const LED_Driver_uint8_t u8AW21036ChipAddress[LED_DRIVER_CHIP_NUM] = {

#if (LED_DRIVER_CHIP_NUM >= 1U)
	AW21036_CHIP1_ADDRESS,
#endif

#if (LED_DRIVER_CHIP_NUM >= 2U)
	AW21036_CHIP2_ADDRESS,
#endif

#if (LED_DRIVER_CHIP_NUM >= 3U)
	AW21036_CHIP3_ADDRESS,
#endif

#if (LED_DRIVER_CHIP_NUM >= 4U)
	AW21036_CHIP4_ADDRESS,
#endif

};

const LED_Driver_uint8_t u8IS31ChipAddress[LED_DRIVER_CHIP_NUM] = {

#if (LED_DRIVER_CHIP_NUM >= 1U)
	IS31_CHIP1_ADDRESS,
#endif

#if (LED_DRIVER_CHIP_NUM >= 2U)
	IS31_CHIP2_ADDRESS,
#endif

#if (LED_DRIVER_CHIP_NUM >= 3U)
	IS31_CHIP3_ADDRESS,
#endif

#if (LED_DRIVER_CHIP_NUM >= 4U)
	IS31_CHIP4_ADDRESS,
#endif

};

/*设置shutdown引脚*/
void LED_Driver_Shutdown_Pin_Set(LED_Driver_uint8_t u8Level)
{
	SDB_LED_DRIVER = u8Level;
}

GPIO_Config_st_t YZHDstGPIOConfig1;
void LED_Driver_Init(void)
{
    uint8_t i=0;
	LED_Driver_Par_st_t stLEDDriverPar;
/*
	YZHDstGPIOConfig1.enGPIOPort = GPIO_PORT_GROUP_42;
	YZHDstGPIOConfig1.enGPIOPIN = GPIO_PIN_0;
	YZHDstGPIOConfig1.enGPIODrive = GPIO_Drive_Slow;
	YZHDstGPIOConfig1.enGPIOCharacter = GPIO_Char_CMOS1;
	YZHDstGPIOConfig1.enGPIOPull = GPIO_PULL_NONE;
	YZHDstGPIOConfig1.enGPIOOutputValue = GPIO_Level_Low;
	YZHDstGPIOConfig1.enGPIOMode = GPIO_MODE_PORT;
	YZHDstGPIOConfig1.enGPIODir = GPIO_DIR_OUT;
	YZHDstGPIOConfig1.enGPIOAltFun = GPIO_ALTER_FUN_1;
	GPIO_Config(&YZHDstGPIOConfig1);
	YZHDstGPIOConfig1.enGPIOPort = GPIO_PORT_GROUP_42;
	YZHDstGPIOConfig1.enGPIOPIN = GPIO_PIN_1;
	GPIO_Config(&YZHDstGPIOConfig1);
	YZHDstGPIOConfig1.enGPIOPort = GPIO_PORT_GROUP_42;
	YZHDstGPIOConfig1.enGPIOPIN = GPIO_PIN_2;
	GPIO_Config(&YZHDstGPIOConfig1);
	*/

	stLEDDriverPar.pfnLEDDriverShutdownPinSetCallBack = LED_Driver_Shutdown_Pin_Set;
	stLEDDriverPar.u8LEDDriverChipNum = LED_DRIVER_CHIP_NUM;
	stLEDDriverPar.pu8IS31ChipAddress = u8IS31ChipAddress;
	stLEDDriverPar.pu8AW21036ChipAddress = u8AW21036ChipAddress;
	memset(u8LEDDriverRamData, 0, sizeof(u8LEDDriverRamData));
	Simulated_IIC_2_Init();
	LED_Driver_Init_KL30(u8LEDDriverRamData, &stLEDDriverPar);


}