aboutsummaryrefslogtreecommitdiffstats
path: root/readme1.txt
blob: 907c7eb44ab1af7190cc3a82e70d9608da2d375e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
To include any of these functions/drivers in your project...

	1/ Specify the path to the LCDLIB. If none defined, default is $(CHIBIOS)/ext/lcd

	2/ In your project Makefile (amongst similiar lines but after the hal line) add the line...
		include $(LCDLIB)/lcd.mk

	3/ 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/gdispNokia6610/gdisp_lld.mk

	4/ In your project halconf.h turn on the support you want eg.
		/**
		 * @brief   Enables the Touchpad subsystem.
		 */
		#if !defined(HAL_USE_TOUCHPAD) || defined(__DOXYGEN__)
			#define HAL_USE_TOUCHPAD           TRUE
		#endif
		/**
		 * @brief   Enables the GDISP subsystem.
		 */
		#if !defined(HAL_USE_GDISP) || defined(__DOXYGEN__)
			#define HAL_USE_GDISP           TRUE
			/* Any driver specific defines required go here. The below line is an example. */
			#define GDISP_NEED_MULTITHREAD	TRUE
		#endif
	5/ Do a make clean.