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

조회 수: 4 (최근 30일)
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

채택된 답변

Walter Roberson
Walter Roberson 2020년 7월 23일
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
Walter Roberson
Walter Roberson 2020년 7월 24일
Change
function duty = MPPT_algorithm(Vpv,Ipa)
to
function duty = MPPT_algorithm(Vpv_u16,Ipa_u16)
Vpv = double(Vpv_u16);
Ipa = double(Ipa_u16);

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by