Skip to content

[IOT-2358] Add support for GIGA #134

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions .github/workflows/sync-binaries-task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
arduino-cli core install arduino:mbed_portenta
arduino-cli core install arduino:mbed_nicla
arduino-cli core install arduino:mbed_opta
arduino-cli core install arduino:mbed_giga
arduino-cli lib install ArduinoIotCloud
arduino-cli lib install ArduinoECCX08
arduino-cli lib install ArduinoSTL
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ Here are the FQBNs of the Arduino boards that can be provisioned with this comma
* `arduino:samd:mkr1000`
* `arduino:samd:mkrgsm1400`
* `arduino:samd:mkrnb1500`
* `arduino:mbed_opta:opta`
* `arduino:mbed_giga:giga`

If the device supports more than one connectivity type (Eg: WiFi and Ethernet) the --connection flag can be used to set the desired connectivity

Expand Down
1 change: 1 addition & 0 deletions command/device/board.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ var (
"arduino:samd:mkrgsm1400",
"arduino:samd:mkrnb1500",
"arduino:mbed_opta:opta",
"arduino:mbed_giga:giga",
}
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 @@ -39,6 +39,7 @@ var (
"arduino:mbed_portenta:envie_m7": "025B",
"arduino:mbed_nicla:nicla_vision": "025F",
"arduino:mbed_opta:opta": "0064",
"arduino:mbed_giga:giga": "0266",
}
esp32MagicNumberPart1 = "4553"
esp32MagicNumberPart2 = "5033"
Expand Down
1 change: 1 addition & 0 deletions firmware/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
{"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": "crypto", "ext": ".bin", "fqbn": "arduino:mbed_giga:giga"},
{"type": "lora", "ext": ".bin", "fqbn": "arduino:samd:mkrwan1300"},
{"type": "lora", "ext": ".bin", "fqbn": "arduino:samd:mkrwan1310"},
]
Expand Down