Skip to content

Commit

Permalink
Makefile: Removed .exe extension for arduino-cli.
Browse files Browse the repository at this point in the history
Signed-off-by: jaenrig-ifx <[email protected]>
  • Loading branch information
jaenrig-ifx committed Jan 31, 2025
1 parent 87514b1 commit 53c0ccf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ ifeq ($(FQBN),)
$(error "Must set variable FQBN in order to be able to compile Arduino sketches !")
else
# CAUTION : only use '=' when assigning values to vars, not '+='
arduino-cli.exe compile \
arduino-cli compile \
--clean \
--log \
--warnings all \
Expand All @@ -104,7 +104,7 @@ ifeq ($(FQBN),)
else
# compiler.c.extra_flags : switch to -std=c23 whenever XMCLib is conforming; currently neither c99 nor c11 work !
# CAUTION : only use '=' when assigning values to vars, not '+='
arduino-cli.exe compile \
arduino-cli compile \
--clean \
--log \
--warnings all \
Expand All @@ -127,7 +127,7 @@ endif
ifeq ($(FQBN),)
$(error "Must set variable FQBN in order to be able to flash Arduino sketches !")
else
arduino-cli.exe upload \
arduino-cli upload \
-p $(PORT) \
--fqbn $(FQBN) \
--verbose \
Expand All @@ -145,7 +145,7 @@ endif
ifeq ($(FQBN),)
$(error "Must set variable FQBN in order to be able to flash Arduino sketches !")
else
arduino-cli.exe monitor \
arduino-cli monitor \
-c baudrate=$(BAUD_RATE) \
-p $(PORT) \
--fqbn $(FQBN)
Expand Down

0 comments on commit 53c0ccf

Please sign in to comment.