fix compile bug for hc32f4a0 #286
Loading…
Reference in New Issue
No description provided.
Delete Branch "JeremyMo/xiuos:prepare_for_master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
HC32F4A0使用FCU处理浮点计算
若要与libs7.a库兼容,需要将编译参数设置为
-mfloat-abi=softfpfloat-abi有三个参数可选:
soft:有浮点运算全部在软件层实现,效率不高,适合于早期没有浮点计算单元的ARM处理器softfp:它将浮点计算交给FPU处理,但函数参数的传递使用通用的整型寄存器而不是FPU寄存器-
hard:使用FPU浮点寄存器将函数参数传递给FPU处理Pull request closed