E dùng kelic đã thuốc nước đầy đủ rồi, khi viết chương trình xong F7 toàn báo lỗi này là sao ạ:
Build target 'Target 1'
compiling ledtraitim.c...
LEDTRAITIM.C(12): error C202: 'p0': undefined identifier
Target not created
mong các bác chỉ giáo!
Em mới thử đoạn mã này thôi:
#include <REGX52.H>
void delay(int time)
{
while(time--);
}
void blink()
{
P0 = P1 = P2 = P3 =0;
delay(10000);
p0 = p1 = p2 = p3 = 0xff;
delay(10000);
}
void main()
{
while(1)
{
blink();
}
}
Build target 'Target 1'
compiling ledtraitim.c...
LEDTRAITIM.C(12): error C202: 'p0': undefined identifier
Target not created
mong các bác chỉ giáo!
Em mới thử đoạn mã này thôi:
#include <REGX52.H>
void delay(int time)
{
while(time--);
}
void blink()
{
P0 = P1 = P2 = P3 =0;
delay(10000);
p0 = p1 = p2 = p3 = 0xff;
delay(10000);
}
void main()
{
while(1)
{
blink();
}
}
Comment