User Activity

I am trying to establish Serial communication between Arduino and Nucleo-f411re,I have connected the TX of Arduino to PA10 (UART 1 RX) of the Nucleo, I have tried using a voltage divider also but t did not workNucleo code#include "stm32f4xx.h" ...
#include <stdio.h> #include <stdint.h> #include "stm32f4xx.h" void delayMs(int n); void LCD_init(void); void PORTS_init(void); void LCD_DATA(char DATA); void LCD_commands(unsigned char commands); int main(void){ LCD_init(); LCD_DATA('l'); LCD_DATA...