Converting double into custom data type (eg int14)
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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
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?
Antworten (1)
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.
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!