Filter löschen
Filter löschen

Converting double into custom data type (eg int14)

6 Ansichten (letzte 30 Tage)
Khalid Hersafril
Khalid Hersafril am 15 Jan. 2024
Kommentiert: Khalid Hersafril am 10 Mär. 2024
I'm currently working on a library which will handle the DroneCAN transmission. However, one of the data types which is the uavcan.equipment.esc.RawCommand are using int14 data types which makes it a problem as most byte packs library and even natively, Simulink does not support int14. You can find the definition of this data type from here. I've also included the definition for the RawCommand below:
#
# Raw ESC command normalized into [-8192, 8191]; negative values indicate reverse rotation.
# The ESC should normalize the setpoint into its effective input range.
# Non-zero setpoint value below minimum should be interpreted as min valid setpoint for the given motor.
#
int14[<=20] cmd
I was wondering how should one go about this and try to get it working?
I am also fully aware that I could probably use the S-function, but I could not find much guidance on how I could possibly do this.
  5 Kommentare
Oliver Reimer
Oliver Reimer am 13 Feb. 2024
Do you plan to read in the DSDL definition files and generate the Matlab code for it, or do you want to implement them by hand?
Khalid Hersafril
Khalid Hersafril am 10 Mär. 2024
I was planning to simply implement it by hand since it is a lot faster to achieve my end goal for now. I may need to use the former approach if needed in the future, but I dont see any reason in spending time on it now

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Benjamin Thompson
Benjamin Thompson am 20 Jan. 2024
The embedded microcontroller or processing using the data can probably only work with 8-bit or 16-bit integers in doing calculations and storing in memory. There is no need to try to leave it in 14-bit format unless you need to send it back to the CAN network. So when you read this information from CAN, convert it all to 16-bit and perform calculations. Then convert it to 14-bit if you need to transmit it or store it.

Kategorien

Mehr zu Simulink Functions finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by