• STRING (XDATA)
    Hi All, Target : ST Micro uPSD3354V I have a number of (implicit) strings in my application that I want to move from CODE space to XADATA as I am approaching the 64KB threshold, and I do not...
  • STRING (XDATA)
    Hi All, Target : ST Micro uPSD3354V I have a number of (implicit) strings in my application that I want to move from CODE space to XADATA as I am approaching the 64KB threshold, and I do not...
  • string constants in XDATA
    Hi, In an attempt to free some code space, I'm looking at a couple of options; a) preventing the compiler from automatically placing all string constants in the common code area (regardless of in...
  • string constants in XDATA
    Hi, In an attempt to free some code space, I'm looking at a couple of options; a) preventing the compiler from automatically placing all string constants in the common code area (regardless of in...
  • #pragma STRING(XDATA) fatal-error
    I am having the problem that my program now uses 32kb which means the memory is full. void print(char *x) { while(*x) { SerialWrite(*x++);} } SerialWrite looks like: void SerialWrite(unsigned...