Why am I getting "Potential conflicting usages of identifier "FALSE": a parameter and Language Keywords"

5 visualizaciones (últimos 30 días)
When trying to build a Simulink/Stateflow model in Matlab 2016b for use on a dSpace Microautobox I am getting the error "Potential conflicting usages of identifier 'FALSE': a parameter, and Language Keywords". I have used this same model and associated variables in version 2013a without any issues. Target file for the code generator is rti1401.tlc. Any insight would be appreciated.

Respuestas (1)

Fangjun Jiang
Fangjun Jiang el 5 de Oct. de 2021
Editada: Fangjun Jiang el 5 de Oct. de 2021
You know 'false' is used by MATLAB as logical value for 0. I think 'FALSE' might be used by Stateflow or some customized definition as the same as 'false'. So don't use 'FALSE' as a variable name in your code or model.
>> false
ans =
logical
0
>> FALSE
Undefined function or variable 'FALSE'.

Productos


Versión

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by