olikraus / u8glib

Arduino Monochrom Graphics Library for LCDs and OLEDs
https://github.com/olikraus/u8glib/wiki
Other
1.24k stars 313 forks source link

u8glib with PIC Microcontrollers #516

Closed ahmedbasheer4 closed 3 years ago

ahmedbasheer4 commented 3 years ago

Is there anyone who can run u8glib with any family of PIC MicroControllers?

olikraus commented 3 years ago

U8glib and u8g2lib will not run on any PIC controller unless you have the professional version of the PIC C Compiler. The freeware version of the PIC C Compiler does not include a linker garbage collector which is a required precondition for u8glib and u8g2lib. The linker garbage collector is part of the GNU compiler, so u8glib/u8g2lib will run on any system which is supported by GNU C Compiler.

Reference: https://www.microchip.com/forums/m668638.aspx

ahmedbasheer4 commented 3 years ago

thanks a lot I succeeded to run the library on atmega32 and atmega2560 on Atmel studio and I will try to run it on PIC18F452.