Effacer les filtres
Effacer les filtres

Converting double into custom data type (eg int14)

7 vues (au cours des 30 derniers jours)
Khalid Hersafril
Khalid Hersafril le 15 Jan 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 commentaires
Oliver Reimer
Oliver Reimer le 13 Fév 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 le 10 Mar 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

Connectez-vous pour commenter.

Réponses (1)

Benjamin Thompson
Benjamin Thompson le 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.

Catégories

En savoir plus sur Simulink Functions dans Help Center et File Exchange

Tags

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by