logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

STM32报错 Error: L6971E: system_stm32h7xx.o(.data) type RW incompatible with malloc.o(.ARM.__AT_0x2000

Error: L6971E: system_stm32h7xx.o(.data) type RW incompatible with malloc.o(.ARM.__AT_0x2000F000) type ZI in er RW_IRAM1.字面意思是有一个RW类型的量,malloc给它分配了ZI类型的区域程序报错在写片外Flash的时候:W25QXX_Write((u8*) &te...

从double到float的强制类型转换

#include <stdio.h>union FLOATUN{unsigned int a;float b;};int main(){FLOATUN fun;fun.b = 12.34;printf("c:%x\n&

#c++
到底了