diff --git a/README.md b/README.md index a750cc9..f2340e0 100644 --- a/README.md +++ b/README.md @@ -166,6 +166,7 @@ To compile directly in windows without the need of a linux virtual machine: ``` 1. Download and install "gcc-arm-none-eabi-10.3-2021.10-win32.exe" from https://developer.arm.com/downloads/-/gnu-rm 2. Download and install "gnu_make-3.81.exe" from https://gnuwin32.sourceforge.net/packages/make.htm +3. If need be (probably not), also download Dependency.zip that includes the library files from https://gnuwin32.sourceforge.net/packages/make.htm 3. You may need to (I didn't) manualy add gcc path to your OS environment PATH. ie add C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin diff --git a/firmware.bin b/firmware.bin index 9fdb3a7..0d42a01 100644 Binary files a/firmware.bin and b/firmware.bin differ diff --git a/firmware.packed.bin b/firmware.packed.bin index bcc5b37..b66f695 100644 Binary files a/firmware.packed.bin and b/firmware.packed.bin differ diff --git a/win_make.bat b/win_make.bat index 80c5998..28e0937 100644 --- a/win_make.bat +++ b/win_make.bat @@ -8,6 +8,7 @@ :: :: 1. Download and install "gcc-arm-none-eabi-10.3-2021.10-win32.exe" from https://developer.arm.com/downloads/-/gnu-rm :: 2. Download and install "gnu_make-3.81.exe" from https://gnuwin32.sourceforge.net/packages/make.htm +:: 3, If need be (probably not), also download Dependency.zip that includes the library files from https://gnuwin32.sourceforge.net/packages/make.htm :: :: 3. You may (or may not) need to manualy add a path to you OS environment PATH, ie .. :: C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin @@ -31,9 +32,9 @@ del /Q *.bin >nul 2>nul :: :: Temporarily add the compiler and make program directories to the system PATH .. :: -@set PATH="C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin";%PATH% -@set PATH="C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\arm-none-eabi\bin";%PATH% -@set PATH="C:\Program Files (x86)\GnuWin32\bin\";%PATH% +@set PATH=C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\bin;%PATH% +@set PATH=C:\Program Files (x86)\GNU Arm Embedded Toolchain\10 2021.10\arm-none-eabi\bin;%PATH% +@set PATH=C:\Program Files (x86)\GnuWin32\bin;%PATH% :: Do the compile ::