• Subfolders in uvision2/uvision3
    Is it possible to create subfolders in uvision2/uvision3 project management window of your code directory structure to maintain code more systematically as it is in IAR Embedded Worknench ?
  • RL-ARM 3.21 and folders / subfolders functions ...
    Hi, I have just saw the release note for the 3.21 : "# Added: SD/MMC file caching to increase the speed of file write and file read. Cache buffer size is configured in File_Config.c file. # Added...
  • Flash write / read functions
    Hi, there, one thing I missed going from PIC to ARM is the ability to write to and read from onboard eeprom, or flash with supplied functions. Obviously, I haven't seen an ARM chip with onboard...
  • Constant function pointer in On-chip Flash
    #include "LPC177x_8x.H" void f1(U8 *ptr); void f2(U8 *ptr); void (*fpTest1[2])(U8 *ptr1)={&f1,&f2}; void (*const fpTest[2])(U8 *ptr1)={&f1,&f2}; U8 b[2][2]={{0,1},{2,3}}; int main(void) { (*fpTest...
  • Function writing in Flash of ADuC841
    I would like to write one function in flash location E000h and another function from 0000h. I wanted to switch between these functions. How could i access these locations and implement this?