olikraus / U8g2_for_Adafruit_GFX

Add U8g2 fonts to any Adafruit GFX based graphics library.
Other
103 stars 32 forks source link

ESp32 1.0.3rc-1 #16

Closed G6EJD closed 5 years ago

G6EJD commented 5 years ago

Using ESP32 1.0.3rc-1 the compilation fails because 'sum' is not initialised

int16_t sum, delta; // original source

I changed it to:

int16_t sum = 0, delta;

And it then compiles and all works correctly.

olikraus commented 5 years ago

oh, nice finding... fixed.

G6EJD commented 5 years ago

Thanks, problem solved now the updated version installed.