2015-09-30 04:18 AM
Hello! I'm trying to hookPCD8544 BW LCD with no success.
I've addedGUIDRV_Page1bpp.h with this contents:#ifndef GUIDRV_Page1bpp_H
#define GUIDRV_Page1bpp_H
/*********************************************************************
*
* Display drivers
*/
//
// Addresses
//
extern const GUI_DEVICE_API GUIDRV_Win_API;
extern const GUI_DEVICE_API GUIDRV_Page1bpp_API;
//
// Macros to be used in configuration files
//
#if defined(WIN32) && !defined(LCD_SIMCONTROLLER)
#define GUIDRV_PAGE1BPP &GUIDRV_Win_API
#else
#define GUIDRV_PAGE1BPP &GUIDRV_Page1bpp_API
#endif
#endif
Also I've added some defs:
#define LCD_CONTROLLER 1505
#define LCD_USE_PAGE1BPP
After a compilation, i've expected that there will be an errors with missing low level lcd functions, but compiler found, that there is noGUIDRV_Page1bpp_API functions in library.