You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/08.mega/boards/giga-r1/tutorials/giga-dual-core/dual-core.md
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -128,7 +128,7 @@ void loop() {
128
128
129
129
To install MicroPython on the GIGA R1, you will need to flash a specific MicroPython firmware to the **M7 processor.** This requires the [dfu-util](https://dfu-util.sourceforge.net/) tool.
130
130
131
-
**2.1.** Download the [MicroPython firmware for GIGA R1]().
131
+
**2.1.** Download the [MicroPython firmware for GIGA R1](/micropython).
132
132
133
133
**2.2.** Download [dfu-util](https://dfu-util.sourceforge.net/) (also available via [brew.sh](https://formulae.brew.sh/formula/dfu-util)). Make sure the tool is added to PATH on your machine.
134
134
@@ -138,8 +138,8 @@ To install MicroPython on the GIGA R1, you will need to flash a specific MicroPy
138
138
139
139
**2.5.** Finally, load the MicroPython firmware, by using the following command:
140
140
141
-
```sh
142
-
dfu-util -w -a 0 -d 2341:0366 -D <firmware>.dfu
141
+
```
142
+
$ dfu-util -w -a 0 -d 2341:0366 -D <firmware>.dfu
143
143
```
144
144
145
145
This will start an uploading process that can be tracked in the terminal. Once it is done, the green LED will be pulsing. Success!
@@ -158,8 +158,6 @@ When we install MicroPython on the M7 core, we create a mass storage device that
158
158
159
159
**3.2.** Open the mass storage device (available in e.g. finder), and drag only the `umsg` folder to the root of the mass storage device.
160
160
161
-
![Drag and drop the umsg folder.]()
162
-
163
161
You now have the `umsg` module available on your board, and can be called from a MicroPython script.
0 commit comments