Skip to content

Commit 2251feb

Browse files
Add AUMA0-E8K4-0101 Aura SMBus controller as a V2 register device
1 parent 8b84510 commit 2251feb

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Controllers/AuraSMBusController/AuraSMBusController.cpp

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,13 @@ AuraSMBusController::AuraSMBusController(i2c_smbus_interface* bus, aura_dev_id d
8383
effect_reg = AURA_REG_COLORS_EFFECT_V2;
8484
channel_cfg = AURA_CONFIG_CHANNEL_V2;
8585
}
86+
// AUMA0-E8K4-0101 - Second generation motherboard controller
87+
else if (strcmp(device_name, "AUMA0-E8K4-0101") == 0)
88+
{
89+
direct_reg = AURA_REG_COLORS_DIRECT_V2;
90+
effect_reg = AURA_REG_COLORS_EFFECT_V2;
91+
channel_cfg = AURA_CONFIG_CHANNEL_V2;
92+
}
8693
// Assume first generation controller if string does not match
8794
else
8895
{

0 commit comments

Comments
 (0)