From 7ab12882659ef98ac08a86e0d067be4f726604df Mon Sep 17 00:00:00 2001 From: Holger Adams <87605596+dm5tt@users.noreply.github.com> Date: Mon, 6 Jan 2025 10:22:29 +0100 Subject: [PATCH] hello_world: add beautiful README --- Apps/hello_world/README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/Apps/hello_world/README.md b/Apps/hello_world/README.md index 190d377..78c0000 100644 --- a/Apps/hello_world/README.md +++ b/Apps/hello_world/README.md @@ -1,3 +1,15 @@ -This target is a basic test to check if the RTOS and UART is working correctly. +# What is this thing? -Connect a UART to PA10 (TX) and PA9 (RX) using a FTDI like FT232H at a baudrate of 4MBaud. \ No newline at end of file +This application (hello_world) sets up the clock tree, UART and FreeRTOS to verify its functionality + +# How? + +Connect a UART (FT232 or whatever) to PA10 (TX) and PA9 (RX). + +# And now? + +Open picocom on your FT232 at 4MBaud: + +`# picocom -b 4000000 /dev/ttyUSB0` + +And you will see a piece of text every second spit out by a FreeRTOS task.