• far const declaration
    Hello, I'm using Silab IDE Simplicity Studio and MCU EFM8BB31F16GB. I'm try to locate const array in code memroy space, but I've been not able to find the correct syntax to do that. Searching the...
  • const far support in 8.06
    I upgraded Keil C PK51 from 7.1 to 8.06, then my project can't be rebuilt, some functions are missing: ?C?ISTOPTR: ?C?CSTOPTR: ?C?LSTKOPTR: ?C?LSTOPTR: Where can I find those functions? I...
  • far const in code banking strsuture
    Can I use the far const in 4 bank strusture? ex: const chat far LargeArray1[30*1024]; //assign to bank1 const chat far LargeArray2[30*1024]; //assign to bank2 const chat far LargeArray3[30*1024...
  • const far when used with structures
    I can not seam to get const far to work with structures, in replace of const . Both of the following sections of code compile but only the first one works as expected. I have used const far in many...
  • Compiling Error with FAR declaration
    I try to access a large data buffer using a far pointer that can exceed the 64k boundary, using the method introduced in http://www.keil.com/support/docs/2663.htm. But when I made the declaration...