• change Baudrate on LPC935 during the execution of the program
    hi all, i would like to know whether it is possible to change the baudrate of the serial port to different rates, i have a program which have to communicate with different devices with different baudrates...
  • Copying RAM data into Flash during program execution
    Hi all, I m using Teridian 71M6543G microcontroller which has 5KB of RAM & 128KB Flash. But, now I m running out of RAM memory. So is there any way to copy data to flash during program execution...
  • const data is always initialized
    Hi, I have a product with some ROM containing some constant data and regular flash to keep code. I would like to declare a data structure in my program to access the data in ROM and I have tried...
  • Const data location (again)
    Hi, Having read various articles on the location of const data within a bank switched application, it appears that the compiler/linker will, by default, place all const data from a particular module...
  • const placed in DATA segment
    Hi All, when I write: const char mysting[] ={"my string"}; data are placed to DATA segment, not code sement. I know if it would be written like this: code char mysting[] ={"my string"}; data...