Tool/software: TI C/C++ Compiler
Hi!
Given the following code, gcc will produce a warning when using the -Wconversion flag since the integer conversion causes a precision loss.
uint32_t a = 0; uint16_t b = a;
The C2000 complier produces no such warning. Is there a way to enable this?
Thanks! :)