mirror of
https://github.com/firewalkwithm3/Sensor-Watch.git
synced 2024-11-22 11:10:29 +08:00
Replace python with python3 for calling uf2conv
Instead of calling python use python3. On a default debian 11 install there is no python binary, only python3. Given that the uf2conv script is written for python 3 I think this is a safe change to make
This commit is contained in:
parent
87da5f15ea
commit
6f96e848c2
2
make.mk
2
make.mk
|
@ -45,7 +45,7 @@ ifndef EMSCRIPTEN
|
|||
CC = arm-none-eabi-gcc
|
||||
OBJCOPY = arm-none-eabi-objcopy
|
||||
SIZE = arm-none-eabi-size
|
||||
UF2 = python $(TOP)/utils/uf2conv.py
|
||||
UF2 = python3 $(TOP)/utils/uf2conv.py
|
||||
|
||||
CFLAGS += -W -Wall -Wextra -Wmissing-prototypes -Wmissing-declarations
|
||||
CFLAGS += --std=gnu99 -Os
|
||||
|
|
Loading…
Reference in a new issue