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.
|
|
#ifndef __LED_H
#define __LED_H
#include "sys.h"
//////////////////////////////////////////////////////////////////////////////////
//������ֻ��ѧϰʹ�ã�δ���������ɣ��������������κ���;
//ALIENTEKս��STM32������
//LED��������
//����ԭ��@ALIENTEK
//������̳:www.openedv.com
//������:2012/9/2
//�汾��V1.0
//��Ȩ���У������ؾ���
//Copyright(C) �������������ӿƼ�����˾ 2009-2019
//All rights reserved
//////////////////////////////////////////////////////////////////////////////////
#define LED0 PAout(8) // PA8
#define LED1 PDout(2) // PD2
void LED_Init(void);//��ʼ��
#endif
|