gpt4 book ai didi

C错误: Expected expression before THROTTLE_MAP_Handle a pointer

转载 作者:行者123 更新时间:2023-11-30 16:32:24 25 4
gpt4 key购买 nike

我一直致力于 throttle 传感器的校准,并且我已经编写了相应的 C header 和程序来检查 throttle 传感器的功能,但最终出现以下错误。我已将抛出错误的代码放入其中

#include "Throttle_Map.h"
#include "main.h"
int main()
{
float inputValue;
for (inputValue=0; inputValue<=5 ; inputValue=inputValue+0.5)
{
THROTTLE_MAP_Equation(THROTTLE_MAP_Handle handle, const float inputValue);
}
}

错误信息如下:

14  32  D:\CIC\Codes\main.c [Error] expected expression before 'THROTTLE_MAP_Handle'
14 9 D:\CIC\Codes\main.c [Error] too few arguments to function 'THROTTLE_MAP_Equation'

最佳答案

调用函数时不要包含参数类型:

THROTTLE_MAP_Equation(handle, inputValue);

关于C错误: Expected expression before THROTTLE_MAP_Handle a pointer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50168367/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com