Skip to content

Commit

Permalink
[IOT-2358] Add support for GIGA (#134)
Browse files Browse the repository at this point in the history
* doc: add missing opta FQBN to supported boards

* feat: add GIGA board support
  • Loading branch information
robgee86 authored Mar 15, 2023
1 parent 7d0fbf8 commit e87bf00
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
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

0 comments on commit e87bf00

Please sign in to comment.