Skip to content

Commit

Permalink
specify parent
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 8, 2021
1 parent e46a7f9 commit 39d90e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/lcd/dogm/HAL_LCD_class_defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class U8GLIB_SH1106_128X64_2X_I2C_2_WIRE : public U8GLIB {
U8GLIB_SH1106_128X64_2X_I2C_2_WIRE(uint8_t options)
: U8GLIB(&u8g_dev_sh1106_128x64_2x_i2c_2_wire, options)
{ }
void init(uint8_t options = U8G_I2C_OPT_NONE) { init(&u8g_dev_sh1106_128x64_2x_i2c_2_wire, options); }
void init(uint8_t options = U8G_I2C_OPT_NONE) { U8GLIB::init(&u8g_dev_sh1106_128x64_2x_i2c_2_wire, options); }
};

extern u8g_dev_t u8g_dev_ssd1306_128x64_2x_i2c_2_wire;
Expand All @@ -86,7 +86,7 @@ class U8GLIB_SSD1306_128X64_2X_I2C_2_WIRE : public U8GLIB {
U8GLIB_SSD1306_128X64_2X_I2C_2_WIRE(uint8_t options)
: U8GLIB(&u8g_dev_ssd1306_128x64_2x_i2c_2_wire, options)
{ }
void init(uint8_t options = U8G_I2C_OPT_NONE) { init(&u8g_dev_ssd1306_128x64_2x_i2c_2_wire, options); }
void init(uint8_t options = U8G_I2C_OPT_NONE) { U8GLIB::init(&u8g_dev_ssd1306_128x64_2x_i2c_2_wire, options); }
};

//
Expand Down

0 comments on commit 39d90e6

Please sign in to comment.