Skip to content

Commit

Permalink
Committing clang-format changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Clang Robot committed Oct 3, 2023
1 parent 94a597c commit 52e9948
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/boards/Inkplate4TEMPERA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ bool Inkplate::begin(void)
pinModeInternal(IO_INT_ADDR, ioRegsInt, INT_APDS, INPUT_PULLUP); // Gesture interrupt pin
pinModeInternal(IO_INT_ADDR, ioRegsInt, INT2_LSM, INPUT_PULLUP); // LSM interrupt pins
pinModeInternal(IO_INT_ADDR, ioRegsInt, INT1_LSM, INPUT_PULLUP);

pinModeInternal(IO_INT_ADDR, ioRegsInt, BUZZ_EN, OUTPUT); // Buzzer enable
digitalWriteInternal(IO_INT_ADDR, ioRegsInt, BUZZ_EN, HIGH);

Expand All @@ -159,7 +159,7 @@ bool Inkplate::begin(void)

pinModeInternal(IO_INT_ADDR, ioRegsInt, FRONTLIGHT_EN, OUTPUT);
digitalWriteInternal(IO_INT_ADDR, ioRegsInt, FRONTLIGHT_EN, LOW);

for (int i = 2; i < 15; i++)
{
pinModeInternal(IO_EXT_ADDR, ioRegsEx, i, OUTPUT);
Expand Down Expand Up @@ -580,7 +580,7 @@ void Inkplate::wakePeripheral(uint8_t _peripheral)
if (_peripheral & INKPLATE_APDS9960)
{
// Wake APDS
//apds9960.enablePower();
// apds9960.enablePower();
//
// TODO apds9960.begin();
}
Expand Down

0 comments on commit 52e9948

Please sign in to comment.