You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* WIP support for brd2601B
* Disable LCD/QRcode as brd2601 doesn't have a lcd
* Fix led polarity. Remove LCD code for BRD2601B
* update matter support submodule for new board files
print("RevA is deprecated, We suggest using BRD4186C (rev C)")
66
67
efr32_family="efr32mg24"
67
68
efr32_mcu="EFR32MG24A010F1536GM48"
69
+
} elseif (efr32_board=="BRD4186C") {
70
+
efr32_family="efr32mg24"
71
+
efr32_mcu="EFR32MG24B210F1536IM48"
72
+
} elseif (efr32_board=="BRD4187C") {
73
+
efr32_family="efr32mg24"
74
+
efr32_mcu="EFR32MG24B220F1536IM48"
75
+
} elseif (efr32_board=="BRD2601B") {
76
+
efr32_family="efr32mg24"
77
+
efr32_mcu="EFR32MG24B310F1536IM48"
68
78
} else {
69
79
print(
70
-
"Please provide a valid value for EFR32_BOARD env variable (currently supported BRD4304A, BRD4161A, BRD4163A, BRD4164A BRD4166A, BRD4170A, BRD4186A, BRD4187A)")
71
-
assert(false, "The board ${efr32_board} is unsupported as for now.")
80
+
"Please provide a valid value for EFR32_BOARD env variable (currently supported BRD4304A, BRD4161A, BRD4163A, BRD4164A BRD4166A, BRD4170A, BRD4186C, BRD4187C, BRD2601B)")
81
+
assert(false, "The board ${efr32_board} is unsupported")
0 commit comments