readme update
This commit is contained in:
parent
e27d04d002
commit
eb4d5be986
1 changed files with 9 additions and 5 deletions
14
readme1.txt
14
readme1.txt
|
@ -5,17 +5,20 @@ To include any of these functions/drivers in your project...
|
||||||
2/ In your project Makefile (amongst similiar lines but after the hal line) add the line...
|
2/ In your project Makefile (amongst similiar lines but after the hal line) add the line...
|
||||||
include $(LCDLIB)/lcd.mk
|
include $(LCDLIB)/lcd.mk
|
||||||
|
|
||||||
3/ In your project Makefile add the makefiles for any specific drivers you want e.g
|
3/ Add $(LCDSRC) and $(LCDINC) to your SRCS and INCDIR of your projects Makefile
|
||||||
include $(LCDLIB)/halext/drivers/touchpad/touchpadXPT2046/touchpad_lld.mk
|
|
||||||
include $(LCDLIB)/halext/drivers/gdispNokia6610/gdisp_lld.mk
|
|
||||||
|
|
||||||
4/ In your project halconf.h turn on the support you want eg.
|
4/ In your project Makefile add the makefiles for any specific drivers you want e.g
|
||||||
|
include $(LCDLIB)/halext/drivers/touchpad/touchpadXPT2046/touchpad_lld.mk
|
||||||
|
include $(LCDLIB)/halext/drivers/gdisp/gdispNokia6610/gdisp_lld.mk
|
||||||
|
|
||||||
|
5/ In your project halconf.h turn on the support you want eg.
|
||||||
/**
|
/**
|
||||||
* @brief Enables the Touchpad subsystem.
|
* @brief Enables the Touchpad subsystem.
|
||||||
*/
|
*/
|
||||||
#if !defined(HAL_USE_TOUCHPAD) || defined(__DOXYGEN__)
|
#if !defined(HAL_USE_TOUCHPAD) || defined(__DOXYGEN__)
|
||||||
#define HAL_USE_TOUCHPAD TRUE
|
#define HAL_USE_TOUCHPAD TRUE
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Enables the GDISP subsystem.
|
* @brief Enables the GDISP subsystem.
|
||||||
*/
|
*/
|
||||||
|
@ -24,5 +27,6 @@ To include any of these functions/drivers in your project...
|
||||||
/* Any driver specific defines required go here. The below line is an example. */
|
/* Any driver specific defines required go here. The below line is an example. */
|
||||||
#define GDISP_NEED_MULTITHREAD TRUE
|
#define GDISP_NEED_MULTITHREAD TRUE
|
||||||
#endif
|
#endif
|
||||||
5/ Do a make clean.
|
|
||||||
|
6/ Do a make clean.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue