[fix] documentation
[fw/stlink] / doc / tutorial / tutorial.tex
1 \documentclass[a4paper, 11pt]{article}
2
3 \usepackage{graphicx}
4 \usepackage{graphics}
5 \usepackage{verbatim}
6 \usepackage{listings}
7 \usepackage{color}
8
9 \begin{document}
10
11 \title{Using STM32 discovery kits with open source tools}
12 \author{STLINK development team}
13 \date{}
14
15 \maketitle
16
17 \newpage
18 \tableofcontents
19 \addtocontents{toc}{\protect\setcounter{tocdepth}{1}}
20
21
22 \newpage
23
24 \section{Overview}
25 \paragraph{}
26 This guide details the use of STMicroelectronics STM32 discovery kits in
27 an opensource environment.
28
29
30 \newpage
31
32 \section{Installing a GNU toolchain}
33 \paragraph{}
34 Any toolchain supporting the cortex m3 should do. You can find the necessary
35 to install such a toolchain here:\\
36 \begin{small}
37 \begin{lstlisting}[frame=tb]
38 https://github.com/esden/summon-arm-toolchain
39 \end{lstlisting}
40 \end{small}
41
42 \paragraph{}
43 Details for the installation are provided in the topmost README file.
44 This documentation assumes the toolchains is installed in a \$TOOLCHAIN\_PATH.
45
46
47 \newpage
48
49 \section{Installing STLINK}
50 \paragraph{}
51 STLINK is an opensource software to program and debug the discovery kits. Those
52 kits have an onboard chip that translates USB commands sent by the host PC into
53 JTAG commands. This chip is called STLINK, which is confusing since the software
54 has the same name. It comes into 2 versions (STLINK v1 and v2). From a software
55 point of view, those versions differ only in the transport layer used to communicate
56 (v1 uses SCSI passthru commands, while v2 uses raw USB).
57
58 \paragraph{}
59 Before continuing, the following dependencies are required:
60 \begin{itemize}
61 \item libusb-1.0
62 \item libsg2
63 \end{itemize}
64
65 \paragraph{}
66 The STLINK software source code is retrieved using:\\
67 \begin{small}
68 \begin{lstlisting}[frame=tb]
69 git clone https://github.com/texane/stlink stlink.git
70 \end{lstlisting}
71 \end{small}
72
73 \paragraph{}
74 Everything can be built from the top directory:\\
75 \begin{small}
76 \begin{lstlisting}[frame=tb]
77 $> cd stlink.git ;
78 $> make ;
79 \end{lstlisting}
80 \end{small}
81 It includes:
82 \begin{itemize}
83 \item a communication library (stlink.git/libstlink.a),
84 \item a GDB server (stlink.git/gdbserver/st-util),
85 \item a flash manipulation tool (stlink.git/flash/flash).
86 \end{itemize}
87
88
89 \newpage
90
91 \section{Building and running a program}
92 A simple LED blinking example is provided in the example directory. It is built using:\\
93 \begin{small}
94 \begin{lstlisting}[frame=tb]
95 # update the make option accordingly to your architecture
96 cd stlink.git/example/blink ;
97 PATH=$TOOLCHAIN_PATH/bin:$PATH make CONFIG_STM32L_DISCOVERY=1;
98 \end{lstlisting}
99 \end{small}
100
101 \paragraph{}
102 A GDB server must be start to interact with the STM32. Depending on the discovery kit you
103 are using, you must run one of the 2 commands:\\
104 \begin{small}
105 \begin{lstlisting}[frame=tb]
106 # STM32VL discovery kit
107 $> sudo ./st-util /dev/sg2
108
109 # STM32L discovery kit
110 # 2 dummy command line arguments needed, will be fixed soon
111 $> sudo ./st-util fu bar
112 \end{lstlisting}
113 \end{small}
114
115 \paragraph{}
116 Then, GDB can be used to interact with the kit:\\
117 \begin{small}
118 \begin{lstlisting}[frame=tb]
119 $> $TOOLCHAIN_PATH/bin/arm-none-eabi-gdb
120 \end{lstlisting}
121 \end{small}
122
123 \paragraph{}
124 From GDB, connect to the server using:\\
125 \begin{small}
126 \begin{lstlisting}[frame=tb]
127 $> target extended localhost:4242
128 \end{lstlisting}
129 \end{small}
130
131 \paragraph{}
132 By default, the program was linked such that the base address is 0x20000000. From the architecture
133 memory map, GDB knows this address belongs to SRAM. To load the program in SRAM, simply use:\\
134 \begin{small}
135 \begin{lstlisting}[frame=tb]
136 $> load blink.elf
137 \end{lstlisting}
138 \end{small}
139
140 \paragraph{}
141 GDB automatically set the PC register to the correct value, 0x20000000 in this case. Then, you
142 can run the program using:\\
143 \begin{small}
144 \begin{lstlisting}[frame=tb]
145 $> continue
146 \end{lstlisting}
147 \end{small}
148
149 \paragraph{}
150 The board BLUE and GREEN leds should be blinking (those leds are near the user and reset buttons).
151
152
153 \newpage
154 \section{Reading and writing to flash}
155 \paragraph{}
156 Flash memory reading and writing is done by a separate tool. A binary running in flash is assumed to
157 be linked against address 0x8000000. The flash tool is then used as shown below:\\
158 \begin{small}
159 \begin{lstlisting}[frame=tb]
160 # change to the flash tool directory
161 $> cd stlink.git/flash ;
162
163 # stlinkv1 command to read 4096 from flash into out.bin
164 $> ./flash read /dev/sg2 out.bin 0x8000000 4096
165
166 # stlinkv2 command
167 $> ./flash read out.bin 0x8000000 4096
168
169 # stlinkv1 command to write the file in.bin into flash
170 $> ./flash write /dev/sg2 in.bin 0x8000000
171
172 # stlinkv2 command
173 $> ./flash write in.bin 0x8000000
174 \end{lstlisting}
175 \end{small}
176
177
178 \newpage
179 \section{Notes}
180
181 \subsection{Disassembling THUMB code in GDB}
182 \paragraph{}
183 By default, the disassemble command in GDB operates in ARM mode. The programs running on CORTEX-M3
184 are compiled in THUMB mode. To correctly disassemble them under GDB, uses an odd address. For instance,
185 if you want to disassemble the code at 0x20000000, use:\\
186 \begin{small}
187 \begin{lstlisting}[frame=tb]
188 $> disassemble 0x20000001
189 \end{lstlisting}
190 \end{small}
191
192
193 \subsection{libstm32l\_discovery}
194 \paragraph{}
195 The repository includes the STM32L discovery library source code from ST original firmware packages,
196 available here:\\
197 \begin{small}
198 \begin{lstlisting}[frame=tb]
199 http://www.st.com/internet/evalboard/product/250990.jsp#FIRMWARE
200 \end{lstlisting}
201 \end{small}
202
203 \paragraph{}
204 It is built using:\\
205 \begin{small}
206 \begin{lstlisting}[frame=tb]
207 $> cd stlink.git/example/libstm32l_discovery/build
208 $> make
209 \end{lstlisting}
210 \end{small}
211
212 \paragraph{}
213 An example using the library can be built using:\\
214 \begin{small}
215 \begin{lstlisting}[frame=tb]
216 $> cd stlink.git/example/lcd
217 $> make
218 \end{lstlisting}
219 \end{small}
220
221 \newpage
222 \section{References}
223 \begin{itemize}
224 \item http://www.st.com/internet/mcu/product/248823.jsp\\
225   documentation related to the STM32L mcu
226 \item http://www.st.com/internet/evalboard/product/250990.jsp\\
227   documentation related to the STM32L discovery kit
228 \end{itemize}
229
230 \end{document}