|
I am using RTT (Real Time Transfer) for debug print purpose. (Instead of UART) I discovered it when trying Rust for embedded. I use it with STM32 C codebase. Does anyone use it with Tinygo on RPI Pico ? https://www.segger.com/products/debug-probes/j-link/technology/about-real-time-transfer/ |
Answered by
aykevl
Apr 18, 2025
Replies: 1 comment 5 replies
|
There is some limited RTT support included. You can use the Also see: https://tinygo.org/docs/reference/usage/important-options/ |
5 replies
Answer selected by
dufguix
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There is some limited RTT support included. You can use the
-monitorand-serial=rttflags to use RTT instead of the normal UART (or USB-CDC) output. I've used it successfully in the past on a nrf52832 chip, I haven't tried it on stm32.Also see: https://tinygo.org/docs/reference/usage/important-options/