Skip to content

Commit

Permalink
Rename SID.ino -> sid.ino
Browse files Browse the repository at this point in the history
Recent versions of arduino-cli seem to throw an error when the casing is unexpected. So let
’s make it consistent.
  • Loading branch information
pje committed Oct 14, 2024
1 parent ce77854 commit d933749
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ $(ARDUINO_HARDWARE_DIR)/boards.local.txt: $(CURDIR)/config/arduino_overrides/boa
cp $< $@

build: $(ARDUINO_HARDWARE_DIR)/boards.local.txt $(ARDUINO_HARDWARE_DIR)/variants/micro_norxled/pins_arduino.h
arduino-cli compile --fqbn arduino:avr:micro --verbose --build-properties "compiler.warning_flags=-Wpedantic,$(BUILD_PROPERTIES)" SID.ino
arduino-cli compile --fqbn arduino:avr:micro --verbose --build-properties "compiler.warning_flags=-Wpedantic,$(BUILD_PROPERTIES)" sid.ino

upload: build
arduino-cli upload --port "$(BOARD_PORT)" --fqbn arduino:avr:micro --verbose SID.ino
arduino-cli upload --port "$(BOARD_PORT)" --fqbn arduino:avr:micro --verbose sid.ino

format:
clang-format -i SID.ino $(SOURCES) $(HEADERS)
clang-format -i sid.ino $(SOURCES) $(HEADERS)

clean:
arduino-cli cache clean
Expand Down
File renamed without changes.

0 comments on commit d933749

Please sign in to comment.