Hello ST Community and Experts, I have an STM32STM32H745ZI and i have programmed it to send and receive some CAN messages from an other STM32 F446RE Nucleo Board. I would like to know if i can use STM32STM32H745ZI to connect to a different CAN Busno...
Using The HAL_CAN_AddTxMessage(CAN_HandleTypeDef *hcan, CAN_TxHeaderTypeDef *pHeader, uint8_t aData[], uint32_t *pTxMailbox) function , can a floating point value be sent as a payload?
The driver is not getting installed in windows 10. The device driver installation wizard says it was unable to find any drivers designed for my machine. I am using Windows 10 version 1903.
Is there any way to print a multidimensional array to console in eclipse for stm32. I am able to print a one dimensional array via UART. However , printing a 2 dimensional array via UART or to the console in eclipse seems impossible. Could anyone h...
Hello All, How to obtain the time difference between successive occurrence of two CAN messages .I am sending some CANIDs every 0.7 seconds and my aim is to measure the time difference between the successive occurrence of the CANids on reception by a...
Thank you ayarema, I know how a 2d array works in c language. I don't know how to print it to console on eclipse IDE. In eclipse , the printf statement doesn' t work. Each time i have to use UART to print something. I tried print a 2d array via UAR...
Thank you so much for the help. I am getting an output like this , which i am printing via UART---------num_ticks = 700num_ticks= 700---------The value 700 implies 700 ms have elapsed.. So it is 0.700 in seconds. Is there a way to obtain a floati...
Hello Clive, Thank you for the response. I don't know how to use the HAL Ticks . Should i just call the function HAL_GetTick() on reception of each CAN message ? Should i code something as below . Define a global variable as num_ticks tostore the HA...