P100脱机下载器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
653 B

4 years ago
  1. #ifndef __LED_H
  2. #define __LED_H
  3. #include "sys.h"
  4. //////////////////////////////////////////////////////////////////////////////////
  5. //������ֻ��ѧϰʹ�ã�δ���������ɣ��������������κ���;
  6. //ALIENTEK STM32F407������
  7. //LED��������
  8. //����ԭ��@ALIENTEK
  9. //������̳:www.openedv.com
  10. //��������:2014/5/2
  11. //�汾��V1.0
  12. //��Ȩ���У������ؾ���
  13. //Copyright(C) �������������ӿƼ����޹�˾ 2014-2024
  14. //All rights reserved
  15. //////////////////////////////////////////////////////////////////////////////////
  16. //LED�˿ڶ���
  17. #define LED0 PFout(9) // DS0
  18. #define LED1 PFout(10) // DS1
  19. void LED_Init(void);//��ʼ��
  20. #endif