How can I use a two model approach for signal logging and parameter tuning on a TI C2000?

20 visualizaciones (últimos 30 días)
I need a faster way to log data in real-time from my model running on a TI C2000 device. Is there an alternative to External Mode?

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 11 de Abr. de 2023
Editada: MathWorks Support Team el 13 de Abr. de 2023
The two model approach is the fastest way to log data in realtime. In the two model approach, the idea is to create two models, one that runs on the target and sends data to serial. The second one runs on the host and gets data from the target. Here is an example of DC DC buck converter that takes this approach:
Differences between External mode and two model approach:
When using the two model approach
The number of signals that can be logged depends on the baud rate and the rate at which the data is transferred.  For example, consider that we need to transfer 10 bytes of data at 20kHz. 
  1. 10 bytes * 20,000Hz = 200,000 bytes/s 
  2. 200,000 bytes/s * 10 bits/byte = 2,000,000 bits/s (baud rate) i.e, 2e6. 
  3. The desired baud rate in this case is 2e6 i.e, 2 Mbps.
On the same lines, using two model approach, the data can be transferred at a higher rate of 200kHz. A maximum of 3 uint16 signals can be transferred at a rate of 200KHz if the baud rate is configured as 12Mbps. 
Details on how to use the two model approach are available here:

Más respuestas (0)

Categorías

Más información sobre Deployment, Integration, and Supported Hardware en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by