Task Manager and C28x Hardware Interrupt for F28P65x

6 次查看(过去 30 天)
I'm trying to develop a software that involves a Task manager and interrupts but when I try to compile it I have this error (see below of this question):
The issue is that Task Manager define the "runModel" variable as an enum and the block C28x Hardware Interrupt define it as a boolean.
If I import the code to CCS and I comment the line 102 works well.
If I use only the Task Manager (removing C28x Hardware Interrupt) works well using Build from simulink.
If I use only C28x Hardware Interrupt (removing Task Manager) works well using Build from simulink.
So, anyone knows how to use the Task Manager and C28x Hardware Interrupt without this issue?
This is the code that I'm using:
"C:\MatlabCoder\DSP_F28P65DK\DSP_F28P65DK_ert_rtw\DSP_F28P65DK.h", line 107: error: declaration is incompatible with "volatile boolean_T runModel" (declared at line 102)
"C:/ti/c2000/C2000Ware_5_02_00_00/driverlib/f28p65x/driverlib/inc/hw_types.h", line 127: warning: typedef name has already been declared (with same type)
"C:/ti/c2000/C2000Ware_5_02_00_00/driverlib/f28p65x/driverlib/inc/hw_types.h", line 128: warning: typedef name has already been declared (with same type)
1 error detected in the compilation of "C:/MatlabCoder/DSP_F28P65DK/DSP_F28P65DK_ert_rtw/MW_c28xx_csl.c".
>> Compilation failure
gmake: *** [MW_c28xx_csl.obj] Error 1
gmake: *** Waiting for unfinished jobs....
"C:\MatlabCoder\DSP_F28P65DK\DSP_F28P65DK_ert_rtw\DSP_F28P65DK.h", line 107: error: declaration is incompatible with "volatile boolean_T runModel" (declared at line 102)
"C:\MatlabCoder\DSP_F28P65DK\DSP_F28P65DK_ert_rtw\DSP_F28P65DK.h", line 107: error: declaration is incompatible with "volatile boolean_T runModel" (declared at line 102)
1 error detected in the compilation of "C:/MatlabCoder/DSP_F28P65DK/DSP_F28P65DK_ert_rtw/MW_c28xx_board.c".
1 error detected in the compilation of "C:/MatlabCoder/DSP_F28P65DK/DSP_F28P65DK_ert_rtw/DSP_F28P65DK.c".
>> Compilation failure

采纳的回答

Sagar Shubham
Sagar Shubham 2024-11-28
Hello Victor,
I understand that you wish to use the Task Manager Block in conjunction with interrupts generated from your hardware. However, I must inform you that using the Task Manager Block alongside the Hardware Interrupt Block is not supported.
The Task Manager Block is designed for use with an entire reference model from another model, often referred to as a top model. In your case, the reference model should have a processing unit set to, for example 'c28xCPU1', while the top model should be set to 'None' Processing Unit. Within the top model, you can establish the different rates for your tasks in the Task Manager. These rates can be applied to subsystems or individual blocks, such as the constant blocks in your model for each function-call subsystem. For asynchronous tasks, you should use the function-call subsystems and the Asynchronous Task Specification Block in the reference model, along with the event sources block along with the same Task Manager Block in the top model. You can then map this event in the Hardware Mapping to the specific hardware interrupt you are expecting. Additionally, when using this top-model/reference-model design method, please note that the CLA needs to be a separate reference model within the top model.
The idea of the Task Manager block is to manage all the tasks running on a core of a multicore microcontroller, both of periodic and asynschronous nature. While the idea of the Hardware Interrupt Block is to support asynchronous tasks only. So if you are using the former, you do not need to use the latter in your modeling.
For further guidance, I recommend referring to this example on setting up multicore models. Although the example may not be specific to your current microcontroller, it is applicable to all hardware boards within the TI C2000 family of microcontrollers supported by the C2000 MicroController Blockset.
All the best,
Sagar Shubham.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Deployment, Integration, and Supported Hardware 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by