Maninder Singh 1007e6136c staging: fbtft: Fix 'line over 80 characters' 8 years ago
..
Kconfig 12e2a34165 Staging: fbtft: add ssd1325 controller support 9 years ago
Makefile 12e2a34165 Staging: fbtft: add ssd1325 controller support 9 years ago
README b6935e2911 Staging: fbtft: remove trailing whitespace 10 years ago
fb_agm1264k-fl.c 5cf793714e Staging: fbtft: Fix too many leading tabs warning 8 years ago
fb_bd663474.c 64ffdc383b Staging: fbtft: Remove debug messages 9 years ago
fb_hx8340bn.c b15cd7e809 staging: fbtft: Add blank line after function declaration 9 years ago
fb_hx8347d.c b15cd7e809 staging: fbtft: Add blank line after function declaration 9 years ago
fb_hx8353d.c faad1a6cba staging: fbtft: Remove blank line after '{' brace 9 years ago
fb_hx8357d.c 5f10ef7dce staging: fbtft: Indent to match open parenthesis 9 years ago
fb_hx8357d.h e0246ea374 staging: fbtft: Fix block comments according to kernel coding style 9 years ago
fb_ili9163.c b4ac6b2885 staging: fbtft: Insert blank line after function declaration 9 years ago
fb_ili9320.c 1c41494adf Staging: fbtft: fixed unsigned type warnings 8 years ago
fb_ili9325.c c444ebc83e Staging:fbtft: Replace decimal permissions with 4 digit octal 8 years ago
fb_ili9340.c f07e89ce1e staging: fbtft: Fix alignment to match open parenthesis 9 years ago
fb_ili9341.c b4ac6b2885 staging: fbtft: Insert blank line after function declaration 9 years ago
fb_ili9481.c 9f8e0562e3 staging: fbtft: Convert int arrays to s16 8 years ago
fb_ili9486.c 9f8e0562e3 staging: fbtft: Convert int arrays to s16 8 years ago
fb_pcd8544.c 1c41494adf Staging: fbtft: fixed unsigned type warnings 8 years ago
fb_ra8875.c 264cd1d1c2 staging: fbtft: fb_ra8875.c: Remove unneeded void pointer cast 9 years ago
fb_s6d02a1.c 9f8e0562e3 staging: fbtft: Convert int arrays to s16 8 years ago
fb_s6d1121.c a40fe1555b staging: fbtft: fb_s6d1121.c: Fix checkpatch warning 8 years ago
fb_ssd1289.c b2a8bb7749 staging: fbtft: fb_ssd1289: Fix checkpatch warning 8 years ago
fb_ssd1305.c 5795354f75 Staging: fbtft: add ssd1305 controller support 9 years ago
fb_ssd1306.c d0b6ecbedd staging: fbtft: fb_ssd1306: Fix checkpatch warning 8 years ago
fb_ssd1325.c 12e2a34165 Staging: fbtft: add ssd1325 controller support 9 years ago
fb_ssd1331.c ba6ed6431b staging: fbtft: fb_ssd1331: Fix checkpatch warning 8 years ago
fb_ssd1351.c e3f680ddae staging: fbtft: add spaces around << 8 years ago
fb_st7735r.c 9f8e0562e3 staging: fbtft: Convert int arrays to s16 8 years ago
fb_st7789v.c ef8f317795 staging: fbtft: use init function instead of init sequence 9 years ago
fb_tinylcd.c 440176316c staging: fbtft: Use standard MIPI DCS command defines for tinylcd 9 years ago
fb_tls8204.c 7bba53e9c2 staging: fbtft: fb_tls8204: Fix checkpatch warning 8 years ago
fb_uc1611.c 1c41494adf Staging: fbtft: fixed unsigned type warnings 8 years ago
fb_uc1701.c fd59f106f4 Staging: fbtft: Removed commented out/dead code 9 years ago
fb_upd161704.c 64ffdc383b Staging: fbtft: Remove debug messages 9 years ago
fb_watterott.c 1c41494adf Staging: fbtft: fixed unsigned type warnings 8 years ago
fbtft-bus.c b2ac4a9270 staging: fbtft: fbtft-bus: Fix checkpatch warning 8 years ago
fbtft-core.c 1007e6136c staging: fbtft: Fix 'line over 80 characters' 8 years ago
fbtft-io.c 8d771ea8bf Staging: fbtft: fbtft-io: No space is necessary after cast. 9 years ago
fbtft-sysfs.c 94c0a54427 staging/fbtft : Add missing whitespace around operators 9 years ago
fbtft.h 9f8e0562e3 staging: fbtft: Convert int arrays to s16 8 years ago
fbtft_device.c 9f8e0562e3 staging: fbtft: Convert int arrays to s16 8 years ago
flexfb.c f2503acfe3 staging: fbtft: Fix module autoload 8 years ago
internal.h 27cbc73aac Staging: fbtft: fix header guard typo 9 years ago

README

FBTFT
=========

Linux Framebuffer drivers for small TFT LCD display modules.
The module 'fbtft' makes writing drivers for some of these displays very easy.

Development is done on a Raspberry Pi running the Raspbian "wheezy" distribution.

INSTALLATION
Download kernel sources

From Linux 3.15
cd drivers/video/fbdev/fbtft
git clone https://github.com/notro/fbtft.git

Add to drivers/video/fbdev/Kconfig: source "drivers/video/fbdev/fbtft/Kconfig"
Add to drivers/video/fbdev/Makefile: obj-y += fbtft/

Before Linux 3.15
cd drivers/video
git clone https://github.com/notro/fbtft.git

Add to drivers/video/Kconfig: source "drivers/video/fbtft/Kconfig"
Add to drivers/video/Makefile: obj-y += fbtft/

Enable driver(s) in menuconfig and build the kernel


See wiki for more information: https://github.com/notro/fbtft/wiki


Source: https://github.com/notro/fbtft/