Resolved! Can't send data through the USART Tx Pin in the STM32F411E-Disco Board
#include "stm32f4xx.h" // Device header void USART2_Init(void); void USART2_Write(int ch); void delayMS(int delay); int main(void){ USART2_Init(); while(1){ USART2_Write('H'); USART2_Write('i'); delayMS(1000); } } vo...