Other Parts Discussed in Thread: INA228
我在helloworld程序中, 调用INA228的电流读取接口, 发现RF 1.2V的电流为-5uA, 但是最后计算出来的结果是个很大的值。
通过debug INA228的source code,发现
是否可以在箭头所指的两个语句之间处理正负的问题
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.
我在helloworld程序中, 调用INA228的电流读取接口, 发现RF 1.2V的电流为-5uA, 但是最后计算出来的结果是个很大的值。
通过debug INA228的source code,发现
是否可以在箭头所指的两个语句之间处理正负的问题
你好,
这个函数的最后一行代码确认输出的为正数。
return(iCurrent < 0 ? -iCurrent : iCurrent);
Thanks,
Chris
最后输出了4294.96729, 是个很大的正数。 你看我贴的图,return(iCurrent < 0 ? -iCurrent : iCurrent);之前那个值就是一个正数了。