This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
要使用浮点功能,需要怎么初始化,能否提供例程
添加头文件
#include "driverlib/fpu.h"
初始化添加代码:
// // Turn on FPU and Enable lazy stacking for interrupt handlers. // FPUEnable(); FPULazyStackingEnable();
浮点初始化后,编程时候使用float类型就可以了
编译器会自动使用浮点功能的。