Skip to content

Commit e87bf00

Browse files
authoredMar 15, 2023
[IOT-2358] Add support for GIGA (#134)
* doc: add missing opta FQBN to supported boards * feat: add GIGA board support
1 parent 7d0fbf8 commit e87bf00

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed
 

‎.github/workflows/sync-binaries-task.yml

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ jobs:
2828
arduino-cli core install arduino:mbed_portenta
2929
arduino-cli core install arduino:mbed_nicla
3030
arduino-cli core install arduino:mbed_opta
31+
arduino-cli core install arduino:mbed_giga
3132
arduino-cli lib install ArduinoIotCloud
3233
arduino-cli lib install ArduinoECCX08
3334
arduino-cli lib install ArduinoSTL

‎README.md

+2
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ Here are the FQBNs of the Arduino boards that can be provisioned with this comma
109109
* `arduino:samd:mkr1000`
110110
* `arduino:samd:mkrgsm1400`
111111
* `arduino:samd:mkrnb1500`
112+
* `arduino:mbed_opta:opta`
113+
* `arduino:mbed_giga:giga`
112114

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

‎command/device/board.go

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ var (
3434
"arduino:samd:mkrgsm1400",
3535
"arduino:samd:mkrnb1500",
3636
"arduino:mbed_opta:opta",
37+
"arduino:mbed_giga:giga",
3738
}
3839
loraFQBN = []string{
3940
"arduino:samd:mkrwan1310",

‎command/ota/generate.go

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ var (
3939
"arduino:mbed_portenta:envie_m7": "025B",
4040
"arduino:mbed_nicla:nicla_vision": "025F",
4141
"arduino:mbed_opta:opta": "0064",
42+
"arduino:mbed_giga:giga": "0266",
4243
}
4344
esp32MagicNumberPart1 = "4553"
4445
esp32MagicNumberPart2 = "5033"

‎firmware/generator.py

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
{"type": "crypto", "ext": ".bin", "fqbn": "arduino:samd:mkrgsm1400"},
3131
{"type": "crypto", "ext": ".bin", "fqbn": "arduino:samd:mkrnb1500"},
3232
{"type": "crypto", "ext": ".bin", "fqbn": "arduino:mbed_opta:opta"},
33+
{"type": "crypto", "ext": ".bin", "fqbn": "arduino:mbed_giga:giga"},
3334
{"type": "lora", "ext": ".bin", "fqbn": "arduino:samd:mkrwan1300"},
3435
{"type": "lora", "ext": ".bin", "fqbn": "arduino:samd:mkrwan1310"},
3536
]

0 commit comments

Comments
 (0)
Please sign in to comment.