Em chào các anh. Em mới học Psoc. Em muốn nhấp nháy led. led nối với công P0.7 em đặt là device là strong . Em viết một đoạn chương trình như thế này nhưng nạp xuông thì nó không chạy đúng mà led sáng mãi.
#include <m8c.h> // part specific constants and macros
#include "PSoCAPI.h" // PSoC API definitions for all User Modules
void delay(long y)
{
long i;
for(i=0;i<y;i++)
{
;
}
}
void main()
{
while(1)
{
LED_2_Start();
LED_2_On;
delay(1000);
LED_2_Off;
delay(1000);
}
// Insert your main routine code here.
}
#include <m8c.h> // part specific constants and macros
#include "PSoCAPI.h" // PSoC API definitions for all User Modules
void delay(long y)
{
long i;
for(i=0;i<y;i++)
{
;
}
}
void main()
{
while(1)
{
LED_2_Start();
LED_2_On;
delay(1000);
LED_2_Off;
delay(1000);
}
// Insert your main routine code here.
}
Comment