You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had exactly the same error. I used this setup in a project for a STM32F767ZI, for this, I think it is following hardware - independent reason for the bug of the current commit of this repo:
original: HAL_UART_Transmit_DMA(huart, &(tbuf), twind);
fix: HAL_UART_Transmit_DMA(huart, (uint8_t*)&(tbuf), twind);
-> typecast (uint8_t*) for tbuf was missing, HAL_UART_Transmit_DMA seems to require everytime a const uint8_t *
Hello.
Recently, I'm on a project using stm32 with ros
I should use this library to communicate with ros node, but compile error occurs like below
Plz let me know what would cause this issue...
entire error message is below
Sincerely looking forward to your answer
Thanks
The text was updated successfully, but these errors were encountered: