Question
Data to Store Array
I keep the important information in 32 byte. But every block have 32 byte .There are more than 300 block and every block have 32 bytes of data. So I've 32*300 byte data. How can I keep in the RAM successfully. Sould I Keep with array (uint32_t) or pointer (malloc, alloc functions) ? Which one is logical and how ? I am using stm32f4 with 192kb RAM so RAM is surely enough. When I use this values I want to clear-free the memory.