Other Parts Discussed in Thread: MSP430FR6047
Tool/software:
while going through the TI code for Water flow meter using MSP430FR6047, I came across following:- in file USS_userConfig.h
#if (USS_ALG_DELTA_TOF_COMPUTATION_OPTION == USS_Alg_dToF_Calculation_Option_water)
#if (USS_ALG_HIGH_FLOW_OPTION != USS_highFlow_option_disabled)
#warning "USS_highFlow_option_version1 and USS_highFlow_option_version2 are \
discourage for new development. It is highly recommended to switch to \
USS_ALG_DELTA_TOF_COMPUTATION_OPTION = USS_Alg_dToF_Calculation_Option_estimate.\
When using USS_Alg_dToF_Calculation_Option_estimate, USS_ALG_HIGH_FLOW_OPTION \
is a don't care."
#endif
I concluded that I cannot use " USS_Alg_dToF_Calculation_Option_water " scheme for Delta time of flight calculation. I can only use " USS_Alg_dToF_Calculation_Option_estimate"
Is my conclusion is correct?