• Generalized approach for getting bits of varaibles declared As BDATA
    Hello all, I have been pondering upon getting each bit of a variable (e.g. declared as char) using a for loop char bdata Char1; bit y; for(x=0; x<7; x++) y = Char1^x; My question is ...
  • Crash for global array when assign variable to varaible
    i'm doing file explore using fatfs and i declare path string as a char array on top of file explorer file.c problem when i add some code which is not belong to any thing just as test and that code contain...
  • Locating members of a struct variable to absolute memory locations
    I would like to know if I can use "_at_" to locate struct members to absolute memory locations. For instance, I have a struct variable defined as following, xdata struct { unsigned char member1;...
  • Changing Flash memory location?
    Hi , Iam using LPC1769 for my project with Flash Memory size of 512KB (0x00000000-0x0007FFFF). I want to load the code at any FLash location(eg: from 0x00002000 or from 0x00008000) using Keil...
  • To check external memory location
    unsigned char xdata temp _at_ 0x8000; temp= 0xab; In the above program, using the DEBUG MODE, how do I see the external data memory contents.In the above example " ab" at location 0x8000. PLEASE...