Solved
Use Serial Wire Viewer on Cube Programmer for STM32 F405 Feather
I want to read the serial output from the STM32 F405 Feather using the SWV on Cube Programmer, but I do not receive Serial output from the board. I am running the .hex file from this Arduino sketch on the board:
#include <SWOStream.h>
SWOStream s(2000000, SWO_Async, 0, false); //swoEnable = false
void setup() {
delay(150);
}
void loop() {
s.print("Serial is alive!");
delay(500);
}
I have searched through the board documentation over and over and I can't find what clock frequency to use in my program and in the SWV terminal on Cube Programmer, so if anyone could point me in the right direction, it would be appreciated!
