Christophe Colin b40f7808a0 staging: fbtft: fix open parentheses alignment 8 年之前
..
Kconfig 079306e979 staging: fbtft: add adriver for SH1106 8 年之前
Makefile 079306e979 staging: fbtft: add adriver for SH1106 8 年之前
README b6935e2911 Staging: fbtft: remove trailing whitespace 10 年之前
fb_agm1264k-fl.c 12eed2f2fb staging: fbtft: Replace a bit shift by a use of BIT. 8 年之前
fb_bd663474.c 64ffdc383b Staging: fbtft: Remove debug messages 10 年之前
fb_hx8340bn.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_hx8347d.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_hx8353d.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_hx8357d.c 5f10ef7dce staging: fbtft: Indent to match open parenthesis 9 年之前
fb_hx8357d.h e0246ea374 staging: fbtft: Fix block comments according to kernel coding style 9 年之前
fb_ili9163.c 12eed2f2fb staging: fbtft: Replace a bit shift by a use of BIT. 8 年之前
fb_ili9320.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_ili9325.c 12eed2f2fb staging: fbtft: Replace a bit shift by a use of BIT. 8 年之前
fb_ili9340.c f07e89ce1e staging: fbtft: Fix alignment to match open parenthesis 9 年之前
fb_ili9341.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_ili9481.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 年之前
fb_ili9486.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 年之前
fb_pcd8544.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_ra8875.c eb1d69c21c staging:fbtft: Fix some warnings regarding types. 8 年之前
fb_s6d02a1.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 年之前
fb_s6d1121.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_sh1106.c 74ec0a0e37 staging: fbtft: fb_sh1106: use new helper helper fbtft_write_buf_dc 8 年之前
fb_ssd1289.c 12eed2f2fb staging: fbtft: Replace a bit shift by a use of BIT. 8 年之前
fb_ssd1305.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_ssd1306.c 307a082484 staging: fbtft: fix unaligned parentheses 8 年之前
fb_ssd1325.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_ssd1331.c 8c8a4186ed staging/fbtft: Hush checkpatch.pl warning about unnecessary line continuations 8 年之前
fb_ssd1351.c 307a082484 staging: fbtft: fix unaligned parentheses 8 年之前
fb_st7735r.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 年之前
fb_st7789v.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_tinylcd.c 440176316c staging: fbtft: Use standard MIPI DCS command defines for tinylcd 9 年之前
fb_tls8204.c 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前
fb_uc1611.c ced04842d2 staging: fbtft: fix checkpatch decimal permissions error 8 年之前
fb_uc1701.c fd59f106f4 Staging: fbtft: Removed commented out/dead code 9 年之前
fb_upd161704.c 64ffdc383b Staging: fbtft: Remove debug messages 10 年之前
fb_watterott.c e8e9cd9786 Staging: fbtft: fb_watterott: fix incorrect type in assignments 8 年之前
fbtft-bus.c 919a9bb607 staging: fbtft: fix type assignment warning 8 年之前
fbtft-core.c 60da70204e staging: fbtft: add helper fbtft_write_buf_dc 8 年之前
fbtft-io.c 7c3eaadd02 staging: fbtft: remove custom DMA mapped buffer 8 年之前
fbtft-sysfs.c b40f7808a0 staging: fbtft: fix open parentheses alignment 8 年之前
fbtft.h 60da70204e staging: fbtft: add helper fbtft_write_buf_dc 8 年之前
fbtft_device.c 2fad31423d staging: fbtft: Merged two identical conditionals into one. 8 年之前
flexfb.c 999c8c28a8 staging: fbtft: Make some s16 arrays const 8 年之前
internal.h 22eb36b814 staging: fbtft: change 'gamma' array to u32 8 年之前

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/