How do you reference the uninitialized .BSS data section using C. I will be storing a chunk of measurements from an ADC into memory. How do you tell C that I want to store it into this uninitialized section.
Any help is appriciated Thank you.
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
How do you reference the uninitialized .BSS data section using C. I will be storing a chunk of measurements from an ADC into memory. How do you tell C that I want to store it into this uninitialized section.
Any help is appriciated Thank you.
The .bss section contains all your global variables. If you measurements are put into global array, then it will be in .bss automatically.