Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 NUCLEOL152RE 上有一个代码我想将此代码迁移到 STM32L073RZ
将此代码从 NUCLEO152RE 迁移到 STM32L073 需要执行哪些步骤。
您正在切换的内核之间存在显着差异。
Cortex M0+ 不支持非对齐访问:
“在 Cortex-M0+ 处理器上不支持未对齐的访问。任何尝试执行未对齐的内存访问操作都会导致 HardFault 异常。”
这意味着例如 4B 变量地址必须是 4 可分的。解析协议帧等时是否不舒服?
它也不支持位带(对内存的位访问)。