• 大小: 813B
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-05-22
  • 语言: 其他
  • 标签: STM32  时分  多任务  

资源简介

STM32时分法多任务处理例程

资源截图

代码片段和文件信息


#include 


__IO  u16  Delay_Led=0;  //需要在stm32f10x_it.c里外部声明
__IO  u16  Delay_Key=0;
__IO  u16  Delay_Power=0;


int main()
{
   SystemInit();
   
   while(1)
   {
     Led_Status();
     Key_Status();
     Power_Status();
   }

}


void SysTick_Handler(void) /*这个函数在中断文件stm32f10x_it.c里*/
{
   Delay_Led++;
   if(Delay_Key)   Delay_Key--;
   

评论

共有 条评论