Skip to content

Commit

Permalink
Format code according to conventions (qmk#20846)
Browse files Browse the repository at this point in the history
  • Loading branch information
qmk-bot committed May 10, 2023
1 parent 2ddad24 commit 853c8d4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions drivers/oled/oled_driver.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.
# define OLED_PRE_CHARGE_PERIOD 0xF1
#endif


#define OLED_ALL_BLOCKS_MASK (((((OLED_BLOCK_TYPE)1 << (OLED_BLOCK_COUNT - 1)) - 1) << 1) | 1)

#define OLED_IC_HAS_HORIZONTAL_MODE (OLED_IC == OLED_IC_SSD1306)
Expand Down Expand Up @@ -142,7 +141,7 @@ along with this program. If not, see <http:https://www.gnu.org/licenses/>.
// parts of the display unusable or don't get cleared correctly
// and also allows for drawing & inverting
uint8_t oled_buffer[OLED_MATRIX_SIZE];
uint8_t *oled_cursor;
uint8_t * oled_cursor;
OLED_BLOCK_TYPE oled_dirty = 0;
bool oled_initialized = false;
bool oled_active = false;
Expand Down

0 comments on commit 853c8d4

Please sign in to comment.