mirror of
https://github.com/g4klx/MMDVM_HS.git
synced 2026-03-31 01:54:50 +02:00
Merge b6e5bb3dfa into 7ff74ed1ba
This commit is contained in:
commit
5bbcacf567
6
BUILD.md
6
BUILD.md
|
|
@ -85,7 +85,7 @@ Enable RW filesystem if you are using Pi-Star:
|
||||||
Install the necessary software tools:
|
Install the necessary software tools:
|
||||||
|
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install gcc-arm-none-eabi gdb-arm-none-eabi libstdc++-arm-none-eabi-newlib libnewlib-arm-none-eabi
|
sudo apt-get install gcc-arm-none-eabi gdb-multiarch libstdc++-arm-none-eabi-newlib libnewlib-arm-none-eabi
|
||||||
|
|
||||||
cd ~
|
cd ~
|
||||||
git clone https://git.code.sf.net/p/stm32flash/code stm32flash
|
git clone https://git.code.sf.net/p/stm32flash/code stm32flash
|
||||||
|
|
@ -276,7 +276,7 @@ Enable RW filesystem if you are using Pi-Star:
|
||||||
Install the necessary software tools:
|
Install the necessary software tools:
|
||||||
|
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install gcc-arm-none-eabi gdb-arm-none-eabi libstdc++-arm-none-eabi-newlib libnewlib-arm-none-eabi
|
sudo apt-get install gcc-arm-none-eabi gdb-multiarch libstdc++-arm-none-eabi-newlib libnewlib-arm-none-eabi
|
||||||
|
|
||||||
Download the sources:
|
Download the sources:
|
||||||
|
|
||||||
|
|
@ -411,7 +411,7 @@ Enable RW filesystem if you are using Pi-Star:
|
||||||
Install the necessary software tools:
|
Install the necessary software tools:
|
||||||
|
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install gcc-arm-none-eabi gdb-arm-none-eabi libstdc++-arm-none-eabi-newlib libnewlib-arm-none-eabi
|
sudo apt-get install gcc-arm-none-eabi gdb-multiarch libstdc++-arm-none-eabi-newlib libnewlib-arm-none-eabi
|
||||||
|
|
||||||
Download the sources:
|
Download the sources:
|
||||||
|
|
||||||
|
|
|
||||||
5
Makefile
5
Makefile
|
|
@ -125,6 +125,11 @@ else
|
||||||
ST_FLASH_OPTS=
|
ST_FLASH_OPTS=
|
||||||
endif
|
endif
|
||||||
STM32FLASH=./$(F1_LIB_PATH)/utils/linux64/stm32flash
|
STM32FLASH=./$(F1_LIB_PATH)/utils/linux64/stm32flash
|
||||||
|
else ifeq ($(shell uname -m),aarch64)
|
||||||
|
DFU_RST=./$(F1_LIB_PATH)/utils/rpi32/upload-reset
|
||||||
|
DFU_UTIL=./$(F1_LIB_PATH)/utils/rpi32/dfu-util
|
||||||
|
ST_FLASH=./$(F1_LIB_PATH)/utils/rpi32/st-flash
|
||||||
|
STM32FLASH=./$(F1_LIB_PATH)/utils/rpi32/stm32flash
|
||||||
else ifeq ($(shell uname -m),armv7l)
|
else ifeq ($(shell uname -m),armv7l)
|
||||||
DFU_RST=./$(F1_LIB_PATH)/utils/rpi32/upload-reset
|
DFU_RST=./$(F1_LIB_PATH)/utils/rpi32/upload-reset
|
||||||
DFU_UTIL=./$(F1_LIB_PATH)/utils/rpi32/dfu-util
|
DFU_UTIL=./$(F1_LIB_PATH)/utils/rpi32/dfu-util
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue