led.c
上传用户:dongxin
上传日期:2022-06-22
资源大小:370k
文件大小:0k
源码类别:

uCOS

开发平台:

Others

  1. #include "includes.h"
  2. void LEDInit(void)
  3. {    
  4.     MCF_GPIO_PTCPAR &= 0x00;            //配置引脚功能为GPIO
  5.     MCF_GPIO_DDRTC  |= 0x0f;            //定义引脚为输出
  6.     MCF_GPIO_PORTTC &= 0x00;            //使小灯初始状态为暗
  7. }