• #pragma arm section as compiler command line arg
    I can use the following #pragma in my code to put variables into my own data section: #pragma arm section rwdata = "__my_data_block__" Is it possible to do this as a compiler option so that I can...
  • #pragma arm section as compiler command line arg
    I can use the following #pragma in my code to put variables into my own data section: #pragma arm section rwdata = "__my_data_block__" Is it possible to do this as a compiler option so that I can...
  • Even after using the pragma arm section zidata = ".test", i see some variables in the test section and some still in the data section. I am using RVCT2.2. Can someone please help me with this?
    I have few variables and am using the below pragma #pragma arm section zidata = ".test" i see that some of the vairable are going to the .test section but some are still in the .data section. The code...
  • Even after using the pragma arm section zidata = ".test", i see some variables in the test section and some still in the data section. I am using RVCT2.2. Can someone please help me with this?
    I have few variables and am using the below pragma #pragma arm section zidata = ".test" i see that some of the vairable are going to the .test section but some are still in the .data section. The code...
  • Bare Metal Criical Section Code for Cortex MO
    On a bare metal system you often need to protect code with a critical section. Here is an article describing what I need. mcuoneclipse.com/.../ At the end, the author provides an example...