Why C codes generated by Matlab Coder contain strange dataor variables like 0U?

3 Ansichten (letzte 30 Tage)
greetings community
I am working on the C codes generated by Simulink, and when I generate the codes unknown variables appear. For example in the ".c" code, it appears in the 0U code, and in the libraries and other codes, I only find the following statement where that value appears.
On the other hand, in the file ".c" 0U appears as a value to compare (all the comparisons [<,> =, etc] that I make between the variables is with respect to zero). Is it normal for these situations to arise?
Below I show part of the function of matlab.
Next, we have part of the generated code
I appreciate any information, see if I can trust the generated code and take the code to TI C2000 MCU

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 23 Jul. 2020
In the two subtractions that you do, at least one of the variables is uint16 datatype. Operations on uint16 are defined as converting the numbers to double, then doing the operations, then converting to uint16. Conversion to uint16 is defined as 0 for negative values, and 65535 for values larger than that, and otherwise the actual value.
If you follow the code sequence you can see it testing against 0 and 65536 and imposing those as limits.
0U is not an identifier name: it is zero with suffix U which indicates that it is 0 with datatype unsigned int
  5 Kommentare
Walter Roberson
Walter Roberson am 24 Jul. 2020
Change
function duty = MPPT_algorithm(Vpv,Ipa)
to
function duty = MPPT_algorithm(Vpv_u16,Ipa_u16)
Vpv = double(Vpv_u16);
Ipa = double(Ipa_u16);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by