• ARM C/C++ Compiler, RVCT4.0
    Hello ; We were working on a project where we have to change our local time (UTC +2 ) . After development we changed our time from 10.12.2016 to 1.1.2020 to test our application . But accidentally...
  • Is --debug option equivalent to -g option in armcc?
    In armcc user guide I learned that description of --debug and -g are quite similar. Is --debug option equivalent to -g option in armcc?
  • ARMASM - include file using defined parameter
    Hello, I trying to include .s file into another .s file using INCLUDE directive with defined parameter, but without success. I check 2 scenario. Scenario 1 startup.s file: #include "Configuration...
  • Why are dynamically-sized arrays implemented as malloc()?
    I'm working on a project that should not use a Heap. In the process of revising my code for this, I've discovered that dynamically-sized arrays, e.g. uint8_t my_array[MIN(input_size, MAX_SIZE)]; are...
  • armcc 5.06u6: --multifile and the elimination of unused variables
    Hello, I have successfully used armcc 5.06u6 to compile and run a firmware for an ARM7TDMI target with 32kB flash. To save some space now I am trying to use the --multifile option. This actually saves...