CAPL Signal value assignment and read use physical or raw data?
I am new to CAPL and Canoe, my question is when assign value to signal in CAN message should you assign using physical signal like this:
MSG.Signal_A = raw_data * scale + offset;
Or just assign the raw_data:
MSG.Signal_A = raw_data;
I am learning using demo version and simulation without real HW so i do not know how to check.