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.
We are developing a water meter using the MSP430FR6047 and the USS library as our reference design.
We are having trouble in getting the results of our flow measurements, so that our code can then use the results (to collect data, and also tally Liters consumed, ...).
We can access the floating point results in hmi.c, but we would like to access the fixed point calculations as using these saves energy.
Can you tell us how we can access the results inside USS_Algorithms_Results_Fixed_Point such as iq16VolumeFlowRate?
Thanks much!
Hi Allen,
You can reach the fixed point results in struct USS_Algorithms_Results_fixed_point. It defines in ussSwLib.h.
Best regards,
Cash Hao
Hi Allen,
Just to add a few more details, the library has 2 functions to run algorithms:
USS_runAlgorithmsFixedPoint and USS_runAlgorithms.
As you can see, the first function runs the algorithms in fixed point.
One of the parameters of this function is a pointer to a structure to store results in fixed point (USS_Algorithms_Results_fixed_point *results).
In the demo application, the function is called as:
code = USS_runAlgorithmsFixedPoint(&gUssSWConfig,&algResFixed);
So, you can access the fixed point results in algResFixed.
Regards,
Luis R
**Attention** This is a public forum