Skip to content

Commit

Permalink
CKC: Add correct EDID
Browse files Browse the repository at this point in the history
Add the correct EDID for CKC to the detection methods.
  • Loading branch information
tombettany committed Jun 13, 2018
1 parent 5d2b4db commit ca4da76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kano_peripherals/wrappers/detection.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
# characteristic to distinguish it was the model name of the screen
# which was changed (to HTC-HDMI) for the second production run of CKCs.
'HTC-HDMI': (CKC, CKC_V_1_1_0),
# FIXME: Insert the correct CKT EDID here when it is available
'CKT-HDMI': (CKT, CKT_V_1_0_0)
# v1.0 of the CKT
'HCK-HDMI': (CKT, CKT_V_1_0_0)
}


Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/hw_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, kit, version, edid):
HWConfig(HWConfig.CKL, CKL_V_1_0_0, 'ANY'),
HWConfig(HWConfig.CKC, CKC_V_1_0_0, 'MST-HDMI'),
HWConfig(HWConfig.CKC, CKC_V_1_1_0, 'HTC-HDMI'),
HWConfig(HWConfig.CKT, CKT_V_1_0_0, 'CKT-HDMI'),
HWConfig(HWConfig.CKT, CKT_V_1_0_0, 'HCK-HDMI'),
]


Expand Down

0 comments on commit ca4da76

Please sign in to comment.