lexus2k / ssd1306

Driver for SSD1306, SSD1331, SSD1351, IL9163, ILI9341, ST7735, PCD8544, Nokia 5110 displays running on Arduino/ESP32/Linux (Rasperry) platforms
MIT License
651 stars 125 forks source link

ssd1306/src/ssd1306_hal/esp/platform.c line 244 should the line platform_i2c_send(*data) be platform_spi_send(*data); #131

Closed SamMcCormick61 closed 2 years ago

SamMcCormick61 commented 2 years ago

esp/platform.c line 244 should the line
platform_i2c_send(data)
be platform_spi_send(
data);

static void platform_spi_send_buffer(const uint8_t *data, uint16_t len) { while (len--) { *platform_i2c_send(data);** data++; } }

lexus2k commented 2 years ago

Hi :) nice catch, the fix is ready on the master branch