Embedded Coder changes function names from step to output
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Mike Bardill
am 14 Mär. 2024
Kommentiert: Mike Bardill
am 18 Mär. 2024
We have recently upgraded to R2023b. We have noticed that when we generate code from models a lot of function names have changed from 'step' to 'output'. Whilst this is not a problem we are curious to understand what has caused this change. The code still builds and works fine.
Previous:
// ModelReference: '<Root>/MeasurementController'
MeasurementControllerMDLOBJ5.step(rtu_control_run,
Now:
// ModelReference: '<Root>/MeasurementController'
MeasurementControllerMDLOBJ5.output(rtu_control_run,
0 Kommentare
Akzeptierte Antwort
Mark McBroom
am 16 Mär. 2024
Not sure how the method name changed to output ... the default should still be step(). However, you can easily change back to "step" via code mappings:
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!