这篇文章主要介绍了C语言在STM32中的内存分配,本文通过实例代码给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
01、前言
不说废话,先上示例代码
uint8_t num_byte[4];
uint32_t num_word;
const uint32_t num_word_const = 0x1234;
uint32_t *point_heap;
int main(void)
{
uint8_t num_byte_stack;
static uint8_t num_byte_static;
point_heap = (uint32_t *)malloc(4);
*point_heap = 0x3421;
free(point_heap);
num_byte_stack = 0x11;
#pragma section = "CSTACK"
char *pbeginstk = __section_begin("CSTACK");
#pragma section = "HEAP"
char *pbeginheap = __section_begin("HEAP");
printf("CSTACK addr is 0x%x\r\n",pbeginstk);
printf("HEAP addr is 0x%x\r\n",pbeginheap);
printf("num_byte addr is 0x%x\r\n",&num_byte);
printf("num_word addr is 0x%x\r\n",&num_word);
printf("num_word_const addr is 0x%x\r\n",&num_word_const);
printf("point_heap addr is 0x%x\r\n",&point_heap);
printf("point_heap is 0x%x\r\n",point_heap);
printf("num_byte_stack addr is 0x%x\r\n",&num_byte_stack);
printf("num_byte_static addr is 0x%x\r\n",&num_byte_static);
}
打印如下
STACK addr is 0x20000320HEAP addr is 0x20000720num_byte addr is 0x20000308num_word addr is 0x2000030cnum_word_const addr is 0x8002a44point_heap addr is 0x20000310point_heap is 0x20000728num_byte_stack addr is 0x200006f8num_byte_static addr is 0x20000318
先说结论:
num_byte、num_word、num_byte_static和point_heap存储在内部RAM中。
num_byte_stack存贮在栈中。
point_heap申请到的内存在堆中。
num_word_const在内部flash中。
如果是有同学对这个了然于胸,可以出门左转了,如果有些同学有兴趣,可以进一步往下看。
02、大小端
因为后面的内容涉及到大小端问题,这里先说下大小端问题。
大端(Big-endian):数据的高位字节存放在地址的低端低位字节存放在地址高端;
小端(Little-endian):数据的高位字节存放在地址的高端低位字节存放在地址低端;
例如:
数据0x12345678存储格式
大端格式
低地址<----0x12|0x34|0x56|0x78---->高地址
小端格式
低地址<----0x78|0x56|0x34|0x12---->高地址
#pragma section = "CSTACK"
char *pbeginstk = __section_begin("CSTACK");
#pragma section = "HEAP"
char *pbeginheap = __section_begin("HEAP");
打印的结果如下
STACK addr is 0x20000320
HEAP addr is 0x20000720
这个地址是否正确,我们可以在IARdebug时,使用Disassembly窗口查看。
点击查看本文所在的专辑,STM32F207教程
到此这篇关于C语言在STM32中的内存分配的文章就介绍到这了,更多相关C语言内存分配内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!
本文标题为:详解C语言在STM32中的内存分配问题


- 从父 CMakeLists.txt 覆盖 CMake 中的默认选项(...)值 2021-01-01
- 将函数的返回值分配给引用 C++? 2022-01-01
- 如何提取 __VA_ARGS__? 2022-01-01
- XML Schema 到 C++ 类 2022-01-01
- GDB 不显示函数名 2022-01-01
- 将 hdc 内容复制到位图 2022-09-04
- OpenGL 对象的 RAII 包装器 2021-01-01
- 哪个更快:if (bool) 或 if(int)? 2022-01-01
- DoEvents 等效于 C++? 2021-01-01
- 使用 __stdcall & 调用 DLLVS2013 中的 GetProcAddress() 2021-01-01