Sys_Task_List.c 2.86 KB
Newer Older
李俭双's avatar
李俭双 committed
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

#include "Sys_Scheduler_Lib.h"
#include "Application.h"
#include "Components.h"
#include "RTE.h"
#include "UDS_ISO14229_Server.h"
void Sys_Pseudo_Real_Time_Tasks(void)
{
    Power_Management_Service();
    DoCAN_Communication_Service();              
    UDS_Server_Application_Service();
    BU98R10_Update_Service();
    LED_Driver_Service();
    
}

void Sys_2ms_Tasks(void)
{
    Common_Input_Para();
    Can_Write_Fun(&CAN_CH0_CanMsgTxOp, 2000u);
    Sys_Status_Update_Service();
    Analog_Signal_Conv_Service();
    CanMSg_XMS_Analysis(&CAN_CH0_CanMsgOp,2u);

    // if (RTE_GPIO_Get_Level(VSPEED_TEN_OUT))
    // {
    //     RTE_GPIO_Config(VSPEED_TEN_OUT, RTE_GPIO_DIR_OUT|RTE_GPIO_LEVEL_LOW);
    // }
    // else
    // {
    //     RTE_GPIO_Config(VSPEED_TEN_OUT, RTE_GPIO_DIR_OUT|RTE_GPIO_LEVEL_HIGH);
    // }
}

void Sys_5ms_Tasks(void)
{
    Flash_Sync_Signal_Generation_Service();

李俭双's avatar
李俭双 committed
39
}
李俭双's avatar
李俭双 committed
40

李俭双's avatar
李俭双 committed
41
uint8_t ljs_buf[200] = {0};
李俭双's avatar
李俭双 committed
42 43
void Sys_10ms_Tasks(void)
{
李俭双's avatar
李俭双 committed
44 45
    memset(ljs_buf, 0x55, 200);
		Line_In_Debounce_Service(10u);
李俭双's avatar
李俭双 committed
46 47 48 49 50 51
    Key_Service();
    Data_Mileage_Write_EEPROM();
    Can_BusOff_Recover(10u);
    Turn_Left_Right_Lamp();
    Fuel_R_Cal(10u);
    TYW_Check_Count();
52
    Data_TPMS_Processing_Service();
李俭双's avatar
李俭双 committed
53 54 55
    Protocol_Service();
    Protocol_Send_Service();  
    //Uart0_IntSend(ljs_buf, 200)  ;
李俭双's avatar
李俭双 committed
56 57 58 59 60 61 62 63
}

void Sys_20ms_Tasks(void)
{
    Key_Clear_Time();
    Key_Auto_Save();
    Data_Vehicle_Speed_Processing_Service();
    Data_Engine_Speed_Processing_Service();
64
    Data_Coolant_Temp_Processing_Service();
李俭双's avatar
李俭双 committed
65
    
66
    
李俭双's avatar
李俭双 committed
67 68 69 70 71 72 73 74 75 76 77 78
}

void Sys_50ms_Tasks(void)
{
    BU98R10_Update_Request();
    LED_Driver_Scan_Refresh();
    Telltales_Management();
    Gauge_Service();
    Key_Check_Service();
}

uint8_t u8LEDDriverCheckCount = 0U;
79
uint16_t ljs_voltage = 0;
李俭双's avatar
李俭双 committed
80 81
void Sys_100ms_Tasks(void)
{
李俭双's avatar
李俭双 committed
82 83 84 85 86 87
    if((PageType != Page_Time_Hour)&&(PageType != Page_Time_Minute))
    {
        RTE_RTC_Get_CounterValue(&counter_val);
        counter_val.time.RTC_Hours = RTC_Bcd2ToByte(counter_val.time.RTC_Hours);
		counter_val.time.RTC_Minutes = RTC_Bcd2ToByte(counter_val.time.RTC_Minutes);
    }
李俭双's avatar
李俭双 committed
88 89 90
    Fuel_Cal_Sevice(100u);
    BackLight_Process();
    Services_Mileage_Callback();
91
    Data_Voltage_Processing_Service();
李俭双's avatar
李俭双 committed
92
	S3_ServerCNTT();
93
    //ECU_FaultCode_Processing_Service();
94 95
    Send_UUID_To_Esp32();
    ljs_voltage = ADC_Conv_Single_Channel(ADC_CH_KL15_VOLTAGE);
李俭双's avatar
李俭双 committed
96 97 98 99 100
    if (u8LEDDriverCheckCount >= 10U)
    {
        u8LEDDriverCheckCount = 0U;
        LED_Driver_Work_Check();
        LED_Driver_Service_Immediate();//注意顺序1
101
        //ALS_Service();//注意顺序2
李俭双's avatar
李俭双 committed
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
    }
    else
    {
        u8LEDDriverCheckCount++;
    }    
}


/**
 * @brief 50us中断服务 尽可能的减少中断使用
 * 
 */
void Sys_Exact_50us_Tasks(void)
{
    static uint32_t task_1ms = 0u;
    DoCAN_Timer_Update(50u);
    GenDelay_Tick();
    task_1ms++;
    if ( task_1ms >=20U )   
    {
        task_1ms =0U;
        eeprom_1ms_timeCount( );
    }
李俭双's avatar
李俭双 committed
125

李俭双's avatar
李俭双 committed
126
}