From d4aa5e189007cb2d0bd88512adb2a8ec26d9285b Mon Sep 17 00:00:00 2001 From: Nicholas Herriot Date: Wed, 17 Jul 2019 17:46:21 +0100 Subject: [PATCH] Updated Building Micropython Binaries (markdown) --- Building-Micropython-Binaries.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Building-Micropython-Binaries.md b/Building-Micropython-Binaries.md index e4fd112..be2c383 100644 --- a/Building-Micropython-Binaries.md +++ b/Building-Micropython-Binaries.md @@ -2,7 +2,7 @@ This describes the basics on building micropython binaries for different boards. Prerequisites to this are setting up your build environment. You can [get started and setup your build environment on Linux Mint 18.0 here](https://github.com/micropython/micropython/wiki/Getting-Started---Compiling-Micropython-for-Ubuntu-16.04) -Assuming that you have a working environment and you can run **make** to make a build for Linux we can now: +Assuming that you have a working environment and you can run **make** to make a build for Linux we can now explain the: * directory structure * making a build for an architecture * identify the firmware builds @@ -24,7 +24,7 @@ Within each platform directory there is build directory e.g. /ports/stm32/build-PYBD_SF2 /ports/stm32/build-PYBD_SF6 ``` -When a build is complete the firmware builds are placed in the relevant directory. Within a build directory there are two main build files that are used to flash onto a board. Which are named **firmware.hex** and **firmware.dfu*. The *dfu* file is the file that has to be flashed onto your microcontroller. +When a build is complete the firmware builds are placed in the relevant directory. Within a build directory there are two main build files that are used to flash onto a board. Which are named **firmware.hex** and **firmware.dfu**. The *dfu* file is the file that has to be flashed onto your microcontroller. Within the stm32 directory there is a **modules** directory. This is used to compile your own modules into a firmware build. This is explained later.