Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add opta support
  • Loading branch information
mirkokurt committed Jan 27, 2023
commit 20148c35ee5a1ea39e28f161456ff8eaadb8204b
1 change: 1 addition & 0 deletions .github/workflows/sync-binaries-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
arduino-cli core install arduino:mbed_nano
arduino-cli core install arduino:mbed_portenta
arduino-cli core install arduino:mbed_nicla
arduino-cli core install arduino:mbed_opta
arduino-cli lib install ArduinoIotCloud
arduino-cli lib install ArduinoECCX08
arduino-cli lib install ArduinoSTL
Expand Down
1 change: 1 addition & 0 deletions command/device/board.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ var (
"arduino:samd:mkr1000",
"arduino:samd:mkrgsm1400",
"arduino:samd:mkrnb1500",
"arduino:mbed_opta:opta",
}
loraFQBN = []string{
"arduino:samd:mkrwan1310",
Expand Down
1 change: 1 addition & 0 deletions command/ota/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ var (
"arduino:mbed_nano:nanorp2040connect": "005E",
"arduino:mbed_portenta:envie_m7": "025B",
"arduino:mbed_nicla:nicla_vision": "025F",
"arduino:mbed_opta:opta": "0064",
}
)

Expand Down
1 change: 1 addition & 0 deletions firmware/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
{"type": "crypto", "ext": ".bin", "fqbn": "arduino:samd:mkr1000"},
{"type": "crypto", "ext": ".bin", "fqbn": "arduino:samd:mkrgsm1400"},
{"type": "crypto", "ext": ".bin", "fqbn": "arduino:samd:mkrnb1500"},
{"type": "crypto", "ext": ".bin", "fqbn": "arduino:mbed_opta:opta"},
{"type": "lora", "ext": ".bin", "fqbn": "arduino:samd:mkrwan1300"},
{"type": "lora", "ext": ".bin", "fqbn": "arduino:samd:mkrwan1310"},
]
Expand Down