• _at_
    How can I write a specific value in a specif adress of my Flash? For example, I would like to write the value 0x55 in the adress 0x1fff of my flash, then if I use the command below: unsigned char...
  • _at_
    How can I write a specific value in a specif adress of my Flash? For example, I would like to write the value 0x55 in the adress 0x1fff of my flash, then if I use the command below: unsigned char...
  • How to initial the value when using "_at_" locate instruction?
    This is correct code with absolute address locating: #define USER_FLASH_SIZE 32 #define USER_FLASH_BASE_ADDR 07df code unsigned char USER_FLASH_SPACE[USER_FLASH_SIZE] _at_ USER_FLASH_BASE_ADDR; ...
  • How to initial the value when using "_at_" locate instruction?
    This is correct code with absolute address locating: #define USER_FLASH_SIZE 32 #define USER_FLASH_BASE_ADDR 07df code unsigned char USER_FLASH_SPACE[USER_FLASH_SIZE] _at_ USER_FLASH_BASE_ADDR; ...
  • _at_ keyword
    Hello, We are using _at_ keyword to locate a variable at particular address. We declared the variable as per the description given in Help for the _at_ keyword. The declaration of variable we done...