Skip to content

Commit

Permalink
Setting up for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Stetsed committed Apr 25, 2024
1 parent 95fa872 commit dc89008
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ BOARD_TYPE ?= pololu-a-star:avr

compile:
/usr/bin/arduino-cli compile -v --profile zumo --build-path="./build/" $(PWD)

compile-windows:
C:\Program Files\arduino-cli.exe compile -v --profile zumo-windows --build-path="./build/" $(PWD)
3 changes: 3 additions & 0 deletions hhs-system-engineer-project.ino
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#include <Arduino.h>
#include <Zumo32U4.h>

void setup() {
}

void loop() {

}
29 changes: 27 additions & 2 deletions sketch.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
default_fqbn: pololu-a-star:avr:a-star32U4
default_port: /dev/ttyACM0

profiles:
zumo:
notes: "For the Zumo"
zumo-linux:
notes: "For the Linux Zumo Compile"
fqbn: pololu-a-star:avr:a-star32U4
platforms:
- platform: pololu-a-star:avr (5.1.0)
Expand All @@ -11,3 +12,27 @@ profiles:
libraries:
- Arduino_BuiltIn (1.0.0)
- Zumo32U4 (2.0.1)
- FastGPIO (2.2.0)
- Pushbutton (2.0.0)
- PololuBuzzer (1.2.0)
- PololuHD44780 (2.0.0)
- PololuMenu (2.0.0)
- PololuOLED (2.0.0)
- USBPause (2.0.0)
zumo-windows:
notes: "For the Zumo Compile on Windows"
fqbn: pololu-a-star:avr:a-star32U4
platforms:
- platform: pololu-a-star:avr (5.1.0)
platform_index_url: https://files.pololu.com/arduino/package_pololu_index.json
- platform: arduino:avr (1.8.6)
libraries:
- Arduino_BuiltIn (1.0.0)
- Zumo32U4 (2.0.1)
- FastGPIO (2.2.0)
- Pushbutton (2.0.0)
- PololuBuzzer (1.2.0)
- PololuHD44780 (2.0.0)
- PololuMenu (2.0.0)
- PololuOLED (2.0.0)
- USBPause (2.0.0)

0 comments on commit dc89008

Please sign in to comment.