Replace tabs with four spaces. Remove trailing whitespace.

This commit is contained in:
Daniel
2023-05-16 04:50:38 -07:00
parent 58998da466
commit 56e649bd4e
2 changed files with 35 additions and 35 deletions

View File

@@ -237,13 +237,13 @@ void AXP192Component::UpdateBrightness()
case AXP192_M5CORE2:
{
uint8_t buf = Read8bit( 0x27 );
Write1Byte( 0x27 , ((buf & 0x80) | (ubri << 3)) );
Write1Byte( 0x27 , ((buf & 0x80) | (ubri << 3)) );
break;
}
case AXP192_M5TOUGH:
{
uint8_t buf = Read8bit( 0x27 );
Write1Byte( 0x27 , ((buf & 0x80) | (ubri << 3)) );
Write1Byte( 0x27 , ((buf & 0x80) | (ubri << 3)) );
break;
}
}