-
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/ |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There is some limited RTT support included. You can use the Also see: https://tinygo.org/docs/reference/usage/important-options/ |
Beta Was this translation helpful? Give feedback.
There is some limited RTT support included. You can use the
-monitor
and-serial=rtt
flags 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/