• strlen function not working properly
    Hi Guys I am facing a very strange problem related to the strlen inbuilt function in the keil C51. I wrote few functions as follows: Function 1 : void ModMasterData(uChar *,uChar *...
  • error 65: access violation : no 'execute/read' permission
    hello, i am using the following code to generate a delay of 200ms. while(tfcount <= 16666) { if (TF1 == 1) { tfcount++; TF1 = 0; } } im using the Timer 1 as a baud rate generator and it overflows...
  • Code banking with NAND flash
    Hi all, I am new to 8051 architecture. The code memory device of my 8051 system is implemented as 64k RAM instead of ROM/EEPROM. Does it make sense to load the 8051 code dynamically from the NAND...
  • asm/endasm requires src-control to be active
    I'm basically trying to replicate a project onto a new blank project at the moment. I've created the new project in a different directory, matched up all the settings, copied all the files over and added...
  • TOGGLE.C(10): error C141: syntax error near '}'
    i am facing error C141: syntax error near '}' my program is given below: #include<reg51.h> void main ( ) { int x; while (1) { P1 = 0x00 ; for (x=0 ; x<=5000 ; x++) P1 = 0xFF ; for (x=0 ; x...