#include #include #include #include "t_spi.h" #include "t_iic.h" #include "t_task.h" #include "t_arg.h" #include "tool.h" #include int main() { srand((unsigned) time(NULL)); int i = 1; POUT((++i) + (++i)); char str[] = "123.456"; float result = Str2Float(str); printf("Result: %.3f\n", result); Test_RunTime("SPI", Test_spi); // Test_RunTime("IIC", Test_iic); // Test_RunTime("ArgPase", Test_argpase); // Test_RunTime("Task", Test_task); return 0; }