代码搜索结果
找到约 10,000 项符合
LED 的代码
led.__i
"led.c" BROWSE DEBUG OBJECTEXTEND
led.lst
C51 COMPILER V8.08 LED 09/28/2008 09:47:30 PAGE 1
C51 COMPILER V8.08, COMPILATION OF MODULE LED
OBJECT MODULE PLACED IN led
led.c
#include
#include
#define PORTBIT(adr, bit) ((unsigned)(&adr)*8+(bit))
volatile bit button @ PORTBIT(PORTB, 1);
const char Msg[] = {"This is a string\0"};
int sub1(int i,
led.hex
:0904A40001020408102040800050
:10045200E4F509F50EF50A750B01F50DF508120420
:02046200642212
:10024900A907AF05AE04E9C39401502DC2AF050A51
:10025900E99004A493550E60037F0022E99004A459
:1002690093420E42
led.plg
Build target 'Target 1'
compiling Os_core.c...
compiling Os_q.c...
compiling Os_sem.c...
compiling led.c...
LED.C(23): error C202: 'uint': undefined identifier
LED.C(23): error C141: syntax erro
led.hex
:0904FA00010204081020408000FA
:1004A800E4F509F50EF50A750B01F50DF5081204CA
:0204B800BA2266
:1002B600A907AF05AE04E9C39401502DC2AF050AE4
:1002C600E99004FA93550E60037F0022E99004FA40
:1002D60093420E42
led.opt
### uVision2 Project, (C) Keil Software
### Do not modify !
cExt (*.c)
aExt (*.a*; *.src)
oExt (*.obj)
lExt (*.lib)
tExt (*.txt)
pExt (*.plm)
CppX (*.cpp)
DaveTm { 0,0,0,0,0,0,0,0 }
led.c
#include "config.h"
//#ifndef mode
//#define mode 1
//#endif
void TaskA(void);
void init(void)
{
P1=0xFF;
TCON=0;
TMOD=0x01;
TH0=(65536-50000)/256;
TL0=(65536-50000)%256;
ET0=1;