• error while execution
    I am working on a project of interfacing sensors with lpc2148 and I am using keil uvision 4 for simulation of program .When I press build target I getting an error as --- Error: failed to execute 'C...
  • program execution
    I have 8031 connected with 64KB external EPROM and 8KB external RAM. I around 15 C files and after compiling all the files my xdata size is - 4450 and code - 37750. But i face a problem in executing...
  • error in execution
    in the below code mov A,80h does not work correctly.There seems to be 0FFh in 80h but mov A,80h makes A=0; MOV P0,#00H ; P0=0 MOV P1,#01H ; P1=1 PLOOP1: ; CALL DELAY PLOOP2: MOV A,P1 CJNE A...
  • Error while compileing example RTX51 tiny program
    Hi there, Iam trying to get familiarized with the RTX51 Tiny RTOS. I am trying the below example but iam getting the following error after compilation MYTASK.C(7): error C129: missing ';' before ...
  • Error while using 'sprintf'
    Hi, I have added the library, stdio.h and written a piece of code as : int TempVal; char w[10]; TempMeas = 25.56; TempVal = sprintf(w,"%f",TempMeas); I am geeting following error while...