Sandhya Bankar 60abe3510e Staging: fbtft: fb_agm1264k-fl: No space is necessary after cast. hace 9 años
..
Kconfig 12e2a34165 Staging: fbtft: add ssd1325 controller support hace 10 años
Makefile 12e2a34165 Staging: fbtft: add ssd1325 controller support hace 10 años
README b6935e2911 Staging: fbtft: remove trailing whitespace hace 11 años
fb_agm1264k-fl.c 60abe3510e Staging: fbtft: fb_agm1264k-fl: No space is necessary after cast. hace 9 años
fb_bd663474.c 64ffdc383b Staging: fbtft: Remove debug messages hace 10 años
fb_hx8340bn.c b15cd7e809 staging: fbtft: Add blank line after function declaration hace 10 años
fb_hx8347d.c b15cd7e809 staging: fbtft: Add blank line after function declaration hace 10 años
fb_hx8353d.c faad1a6cba staging: fbtft: Remove blank line after '{' brace hace 10 años
fb_hx8357d.c 5f10ef7dce staging: fbtft: Indent to match open parenthesis hace 10 años
fb_hx8357d.h e0246ea374 staging: fbtft: Fix block comments according to kernel coding style hace 10 años
fb_ili9163.c b4ac6b2885 staging: fbtft: Insert blank line after function declaration hace 10 años
fb_ili9320.c b4ac6b2885 staging: fbtft: Insert blank line after function declaration hace 10 años
fb_ili9325.c b4ac6b2885 staging: fbtft: Insert blank line after function declaration hace 10 años
fb_ili9340.c f07e89ce1e staging: fbtft: Fix alignment to match open parenthesis hace 10 años
fb_ili9341.c b4ac6b2885 staging: fbtft: Insert blank line after function declaration hace 10 años
fb_ili9481.c 61abd03a3d staging: fbtft: Remove the use of CamelCase hace 10 años
fb_ili9486.c 49475ed0cb staging: fbtft: Use standard MIPI DCS command defines for ili9486 hace 10 años
fb_pcd8544.c 4b6dc179dc staging: fbtft: use alternate screen pointer hace 10 años
fb_ra8875.c 264cd1d1c2 staging: fbtft: fb_ra8875.c: Remove unneeded void pointer cast hace 9 años
fb_s6d02a1.c 3d6924dd6a staging: fbtft: Use standard MIPI DCS command defines for s6d02a1 hace 10 años
fb_s6d1121.c 64ffdc383b Staging: fbtft: Remove debug messages hace 10 años
fb_ssd1289.c 64ffdc383b Staging: fbtft: Remove debug messages hace 10 años
fb_ssd1305.c 5795354f75 Staging: fbtft: add ssd1305 controller support hace 10 años
fb_ssd1306.c 4b6dc179dc staging: fbtft: use alternate screen pointer hace 10 años
fb_ssd1325.c 12e2a34165 Staging: fbtft: add ssd1325 controller support hace 10 años
fb_ssd1331.c f1092794c0 Staging: fbtft: fb_ssd1331: Remove unnecessary cast hace 10 años
fb_ssd1351.c ed400c9617 staging: fbtft: Fix multi-line comment style hace 10 años
fb_st7735r.c 79f5da7d33 staging: fbtft: Use standard MIPI DCS command defines for st7735r hace 10 años
fb_st7789v.c ef8f317795 staging: fbtft: use init function instead of init sequence hace 10 años
fb_tinylcd.c 440176316c staging: fbtft: Use standard MIPI DCS command defines for tinylcd hace 10 años
fb_tls8204.c 4b6dc179dc staging: fbtft: use alternate screen pointer hace 10 años
fb_uc1611.c 5084d7c662 staging: fbtft: fb_uc1611.c: Drop void pointer cast hace 9 años
fb_uc1701.c fd59f106f4 Staging: fbtft: Removed commented out/dead code hace 10 años
fb_upd161704.c 64ffdc383b Staging: fbtft: Remove debug messages hace 10 años
fb_watterott.c 4b6dc179dc staging: fbtft: use alternate screen pointer hace 10 años
fbtft-bus.c 64f93e1724 staging: fbtft: fbtft-bus.c: Drop unneeded void pointer cast hace 9 años
fbtft-core.c 0c9ab986e2 staging: fbtft: Use devm_kcalloc instead of devm_kzalloc hace 9 años
fbtft-io.c 8d771ea8bf Staging: fbtft: fbtft-io: No space is necessary after cast. hace 9 años
fbtft-sysfs.c 94c0a54427 staging/fbtft : Add missing whitespace around operators hace 10 años
fbtft.h 817d1648ec staging: fbtft: Remove unused and duplicated defines hace 10 años
fbtft_device.c 8cd977c316 Staging: fbtft: fbtft_device: No space is necessary after cast. hace 9 años
flexfb.c 75f5db39ff Merge tag 'spi-v4.4' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi hace 10 años
internal.h 27cbc73aac Staging: fbtft: fix header guard typo hace 10 años

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/