Hi everyone,
I am trying to connect my 4dsystems display to a nucleo STM32 and make them communicate via UART. However, once I send the following command:
HAL_UART_Transmit(&huart2, (uint8_t*)&send_cmd, 6, 10)
my display is not able to receive that instruction, so the led on the display that I want to turn on doesn't activate because it seems that the command is not understood by the display.
Has someone an idea how to solve this problem or what can be the reason why this UART communication does not work?
I am trying to connect my 4dsystems display to a nucleo STM32 and make them communicate via UART. However, once I send the following command:
HAL_UART_Transmit(&huart2, (uint8_t*)&send_cmd, 6, 10)
my display is not able to receive that instruction, so the led on the display that I want to turn on doesn't activate because it seems that the command is not understood by the display.
Has someone an idea how to solve this problem or what can be the reason why this UART communication does not work?
Comment