Skip to content

Commit 5bbcdbb

Browse files
committed
Some typos fixed
1 parent 0c935a3 commit 5bbcdbb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

source/stm32_basics_tutorial/basic_setup/build_setup.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Build setup
66
:local:
77

88

9-
Buid using Makefile
10-
-------------------
9+
Build using Makefile
10+
--------------------
1111

1212
1. Open your project folder. It is better to use ``VSCODE``.
1313

@@ -88,7 +88,7 @@ Build using CMake
8888
5. Create a ``build.sh`` file at your project folder for compiling and generating binary file.
8989

9090
.. code-block:: bash
91-
:caption: flash.sh
91+
:caption: build.sh
9292
9393
#!/bin/bash
9494

source/stm32_basics_tutorial/basic_setup/flash_binary.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Run this commnad in Terminal.
2828
.. code-block:: bash
2929
3030
# st-flash [--reset] write <build-directory/binaryfile.bin> <start-address>
31-
st-flash write buid/BasicSetup.bin 0x8000000
31+
st-flash write build/BasicSetup.bin 0x8000000
3232
3333
Use ``--reset`` option to reset afetr flash. Change binary file name to your program name.
3434

@@ -135,7 +135,7 @@ You do not need to write the long commnad every time, you can add them in ``Make
135135
136136
set +e
137137
138-
st-flash write buid/BasicSetup.bin 0x8000000
138+
st-flash write build/BasicSetup.bin 0x8000000
139139
140140
.. group-tab:: STM32CubeProgrammer
141141

0 commit comments

Comments
 (0)