diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-07-08 20:06:31 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-07-08 20:06:31 +0200 |
| commit | 809e737176b0ed1ddc3524321d0afd6b3e502b53 (patch) | |
| tree | a9fd4963b3cbe7a7f37d9d21af8f5d1b945606a6 | |
| parent | 66e26fac8715c5d83a21b85b2fe9276afc08dfd1 (diff) | |
MHR-36: Update specs.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
| -rw-r--r-- | Kernel/Modules/MBCI/MBCI.hxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/Kernel/Modules/MBCI/MBCI.hxx b/Kernel/Modules/MBCI/MBCI.hxx index 354b9a26..c39cc129 100644 --- a/Kernel/Modules/MBCI/MBCI.hxx +++ b/Kernel/Modules/MBCI/MBCI.hxx @@ -13,10 +13,10 @@ - VCC (IN) (OUT for MCU) - CLK (IN) (OUT for MCU) - ACK (BI) (Contains an Acknowledge Packet Frame) -- D0- (IN) (Starts with the Host Imterface Packet Frame) -- D1- (IN) (Starts with the Host Imterface Packet Frame) -- D0+ (OUT) (Starts with the Host Imterface Packet Frame) -- D1+ (OUT) (Starts with the Host Imterface Packet Frame) +- D0- (IN) (Starts with the Host Interface Packet Frame) +- D1- (IN) (Starts with the Host Interface Packet Frame) +- D0+ (OUT) (Starts with the Host Interface Packet Frame) +- D1+ (OUT) (Starts with the Host Interface Packet Frame) - GND (IN) (OUT for MCU) */ @@ -60,11 +60,11 @@ namespace Kernel /// @brief MBCI host flags. enum MBCIHostFlags { - kMBCIHostFlagsSupportsPageProtection, /// Page protected. - kMBCIHostFlagsSupportsAPM, /// Advanced Power Management. - kMBCIHostFlagsSupportsDaisyChain, /// Is daisy chained. - kMBCIHostFlagsSupportsHWInterrupts, /// Has HW interrupts. - kMBCIHostFlagsSupportsDMA, /// Has DMA. + kMBCIHostFlagsSupportsNothing, // Invalid MBCI device. + kMBCIHostFlagsSupportsAPM, // Advanced Power Management. + kMBCIHostFlagsSupportsDaisyChain, // Is daisy chained. + kMBCIHostFlagsSupportsHWInterrupts, // Has HW interrupts. + kMBCIHostFlagsSupportsDMA, // Has DMA. kMBCIHostFlagsExtended = __UINT16_MAX__, // Extended flags table. }; @@ -78,6 +78,6 @@ namespace Kernel kMBCIHostKindKeyboardHigh, kMBCIHostKindNetworkInterface, kMBCIHostKindDaisyChain, - kMBCIHostKindStartExtended = __UINT16_MAX__, /// Extended vendor table. + kMBCIHostKindStartExtended = __UINT16_MAX__, // Extended vendor table. }; } // namespace Kernel |
