Skip to content

Commit

Permalink
Merge branch 'main' into rae_wip
Browse files Browse the repository at this point in the history
  • Loading branch information
MaticTonin committed Aug 9, 2023
2 parents f131050 + 8d3c82b commit c522e6c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
1 change: 0 additions & 1 deletion batch/oak_d_lr.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
"options": {
"bootloader": "poe",
"imu": true,
"environment": "oak_d_lr",
"tv_calibration": {
"camera_settings": {
"left": {"isp_scale": [2,3]},
Expand Down
5 changes: 3 additions & 2 deletions batch/rae.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@
"configs": [
"config-rae.tar"
],
"fip": "fip-dm3370-r5m2e5-1.6.0.bin",
"test_suite": "DM3370_R4M2E4_rae"
"fip": "fip-dm3370-r5m2e5-1.7.1.bin",
"test_suite": "DM3370_R5M2E5_rae",
"os": "luxonisos-1.11.zip"
},
{
"title": "rae (DM3370_R4M2E4)",
Expand Down
2 changes: 1 addition & 1 deletion boards/DM2097-C11.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"extrinsics": {
"to_cam": "CAM_A",
"specTranslation": {
"x": 7,
"x": 1.3,
"y": 0,
"z": 0
},
Expand Down
2 changes: 1 addition & 1 deletion boards/DM2097.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"extrinsics": {
"to_cam": "CAM_A",
"specTranslation": {
"x": 7,
"x": 1.3,
"y": 0,
"z": 0
},
Expand Down
5 changes: 4 additions & 1 deletion boards_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,9 @@ class VariantConfig(BaseModel):
fip: Optional[str] = None
""" Name of the FIP fipe to be flashed."""

os: Optional[str] = None
"""Name of the OS zip to be flashed."""

configs: Optional[List[str]] = None
""" List of config tars names to be flashed. """

Expand Down Expand Up @@ -310,4 +313,4 @@ def get_variant_by_eeprom_typed(calibration):
f"Variant with eeprom data 'productName: {eeprom.productName}, \
boardName: {eeprom.boardName}, boardRev: {eeprom.boardRev}, \
boardConf: {eeprom.boardConf} \
hardwareConf: {eeprom.hardwareConf}' not found")
hardwareConf: {eeprom.hardwareConf}' not found")

0 comments on commit c522e6c

Please sign in to comment.