]> sigrok.org Git - sigrok-dumps.git/blame - uart/hello_world/README
uart: hello world: Add some more info + URLs.
[sigrok-dumps.git] / uart / hello_world / README
CommitLineData
ab2a2831
UH
1-------------------------------------------------------------------------------
2Hello World UART output using various options
3-------------------------------------------------------------------------------
4
5This is a collection of example UART communication (only in one direction).
6The repeatedly transmitted data is "Hello World!\r\n", using 8n1 settings.
7
44f6cffb
UH
8The hardware sending the data is an Olimex STM32-H103 eval kit with an
9ST STM32 (ARM Cortex-M3) microcontroller. The firmware used is based on a
10simple libopencm3 UART example. The USART1 (USART1.TX pin) is used.
11
12For details see:
13http://libopencm3.org
14http://libopencm3.git.sourceforge.net/git/gitweb.cgi?p=libopencm3/libopencm3;a=tree;f=examples/stm32/f1/stm32-h103/usart_printf
15http://olimex.com/dev/stm32-h103.html
16
ab2a2831
UH
17
18Logic analyzer setup
19--------------------
20
21The logic analyzer used for capturing is a ChronoVu LA8 at a sample rate
22of 5MHz (for baud rates 921600 - 230400), 1MHz (for 115200 - 19200),
207cc70f 23and 625kHz (for baud rates 9600 - 1200).
ab2a2831
UH
24
25The ChronoVu LA8 probes were connected to the UART like this:
26
27 Probe UART
28 -------------------
29 0 (green) TX
30 GND GND
31
32
33Data
34----
35
36The sigrok command line used was:
37
38 sigrok-cli -d 0:samplerate=<hz> --samples 8388608 -p '1=TX' -o <file>.sr
39
40We capture as many samples as fit into the 8MByte buffer of the logic analyzer.
41