blob: 93d5fd8625258aa92341e343ee2295a941db9598 [file] [log] [blame]
ganesanb5502e3e2022-12-13 11:07:43 +00001#!/usr/bin/env python3
2
3r"""
4DCMI raw commands table:
5
6 - Define DCMI interface index, commands and expected output.
7
8"""
9
10DCMI_RAW_CMD = {
11 # Interface name
12 "DCMI": {
13 "MANAGEMENT_CONTROLLER_IDENTIFIER_STRING": {
14 "GET": "0x2c 0x09 0xdc 0x00 0x10",
15 "SET": "0x2c 0x0a 0xdc 0x00",
16 },
17 },
18}