Skip to content

Commit

Permalink
Merge pull request #74 from lucidcode/build-target
Browse files Browse the repository at this point in the history
Update firmware build target
  • Loading branch information
IAmCoder authored Sep 22, 2024
2 parents 74afd91 + dba6a2a commit 27822dc
Show file tree
Hide file tree
Showing 14 changed files 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 @@ -40,7 +40,7 @@ sudo apt-get install git build-essential
```
TOOLCHAIN_PATH=${HOME}/cache/gcc
TOOLCHAIN_URL="https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-x86_64-arm-none-eabi.tar.xz"
sudo mkdir ${TOOLCHAIN_PATH}
mkdir -p ${TOOLCHAIN_PATH}
wget --no-check-certificate -O - ${TOOLCHAIN_URL} | tar --strip-components=1 -Jx -C ${TOOLCHAIN_PATH}
export PATH=${TOOLCHAIN_PATH}/bin:${PATH}
```
Expand All @@ -50,5 +50,5 @@ To build the firmware, run the following commands inside the openmv repository:
```bash
cd firmware
make -j$(nproc) -C src/micropython/mpy-cross
make -j$(nproc) TARGET=INSPEC -C src
make -j$(nproc) TARGET=OPENMV_INSPEC -C src
```
File renamed without changes.
File renamed without changes.
File renamed without changes.
Binary file modified release/firmware.bin
Binary file not shown.

0 comments on commit 27822dc

Please sign in to comment.