Kevin Tung | dcf4b60 | 2025-07-04 13:14:49 +0800 | [diff] [blame^] | 1 | #pragma once |
2 | |||||
3 | #include <cstdint> | ||||
4 | |||||
5 | enum class PMBusCmd : uint8_t | ||||
6 | { | ||||
7 | page = 0x00, | ||||
8 | writeProtect = 0x10, | ||||
9 | storeUserCode = 0x17, | ||||
10 | mfrId = 0x99, | ||||
11 | mfrSerial = 0x9E, | ||||
12 | icDeviceId = 0xAD, | ||||
13 | }; |