diff --git a/oled/ssd1306/ssd1306.c b/oled/ssd1306/ssd1306.c index 906455e..e7defff 100644 --- a/oled/ssd1306/ssd1306.c +++ b/oled/ssd1306/ssd1306.c @@ -67,7 +67,7 @@ OLED_SendStatus_t SSD1306_display_page(OLED_HandleTypeDef *hOled) }; oled_SendCommand(hOled, config, sizeof(config)); - SSD1306_SendData(hOled->Buffer + (page * hOled->Width), hOled->Width); + oled_SendData(hOled, hOled->Buffer + (page * hOled->Width), hOled->Width); if (++page > 7) {