diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2022-07-14 21:34:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 21:34:53 -0500 |
commit | 8d7748b1ad37bd7c4866145bc0d0ddfa3ef61139 (patch) | |
tree | c759942dcbffaa5d093c903600a85a61c3b01144 | |
parent | 87da5f15ea314d53d97cee5f9fd13b4f83455256 (diff) | |
parent | 6f96e848c233abd39e12e15bcf1cd32f48331894 (diff) | |
download | Sensor-Watch-8d7748b1ad37bd7c4866145bc0d0ddfa3ef61139.tar.gz Sensor-Watch-8d7748b1ad37bd7c4866145bc0d0ddfa3ef61139.tar.bz2 Sensor-Watch-8d7748b1ad37bd7c4866145bc0d0ddfa3ef61139.zip |
Merge pull request #78 from tahnok/fix-python3-uf2
Replace python with python3 for calling uf2conv
-rw-r--r-- | make.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |