Skip to content

Commit

Permalink
Merge pull request #7 from mdaeron/master
Browse files Browse the repository at this point in the history
Small edits to README.md
  • Loading branch information
v923z committed Nov 4, 2019
2 parents f2deb06 + fd217df commit b4f4331
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ git clone https://github.com/micropython/micropython.git
on the command line. This will create a new repository with the name `micropython`. Staying there, clone the `ulab` repository with

```
git clone https://github.com/v923z/micropython-ulab.git
git clone https://github.com/v923z/micropython-ulab.git ulab
```

Then you have to include `ulab` in the compilation process by editing `mpconfigport.h` of the directory of the port for which you want to compile, so, still on the command line, navigate to `micropython/ports/unix`, or `micropython/ports/stm32`, or whichever port is your favourite, and edit the `mpconfigport.h` file there. All you have to do is add a single line at the end:
Expand All @@ -29,7 +29,7 @@ Then you have to include `ulab` in the compilation process by editing `mpconfigp
#define MODULE_ULAB_ENABLED (1)
```

This line will inform the compiler that you want `ulab` in the resulting firmware. If you don't have the cross-compiler installed, your might want to do that now by executing
This line will inform the compiler that you want `ulab` in the resulting firmware. If you don't have the cross-compiler installed, your might want to do that now, for instance on Linux by executing

```
sudo apt-get install gcc-arm-none-eabi
Expand Down

1 comment on commit b4f4331

@v923z
Copy link
Owner Author

@v923z v923z commented on b4f4331 Nov 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for taking the trouble! I have merged your changes.

Please sign in to comment.