• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..16-May-2021-

KconfigH A D16-May-20215.1 KiB209175

MakefileH A D16-May-20211.8 KiB4035

READMEH A D16-May-2021910 3320

TODOH A D16-May-2021400 97

fb_agm1264k-fl.cH A D16-May-202110.7 KiB456335

fb_bd663474.cH A D16-May-20214.2 KiB176133

fb_hx8340bn.cH A D16-May-20215.9 KiB226126

fb_hx8347d.cH A D16-May-20214 KiB161114

fb_hx8353d.cH A D16-May-20213.5 KiB14995

fb_hx8357d.cH A D16-May-20214 KiB202146

fb_hx8357d.hH A D16-May-20211.9 KiB7243

fb_ili9163.cH A D16-May-20217.6 KiB265183

fb_ili9320.cH A D16-May-20216.5 KiB270165

fb_ili9325.cH A D16-May-20218.2 KiB266173

fb_ili9340.cH A D16-May-20213.2 KiB14189

fb_ili9341.cH A D16-May-20214.5 KiB158112

fb_ili9481.cH A D16-May-20212.3 KiB10474

fb_ili9486.cH A D16-May-20212.4 KiB10475

fb_pcd8544.cH A D16-May-20213.4 KiB16885

fb_ra8875.cH A D16-May-20217.4 KiB306238

fb_s6d02a1.cH A D16-May-20213.6 KiB167109

fb_s6d1121.cH A D16-May-20214.9 KiB187143

fb_seps525.cH A D16-May-20216.3 KiB214152

fb_sh1106.cH A D16-May-20214.2 KiB187113

fb_ssd1289.cH A D16-May-20214.7 KiB184144

fb_ssd1305.cH A D16-May-20214.5 KiB208120

fb_ssd1306.cH A D16-May-20215 KiB229136

fb_ssd1325.cH A D16-May-20214.3 KiB197144

fb_ssd1331.cH A D16-May-20215.5 KiB207160

fb_ssd1351.cH A D16-May-20216.6 KiB249192

fb_st7735r.cH A D16-May-20214.3 KiB187106

fb_st7789v.cH A D16-May-20219.1 KiB393222

fb_tinylcd.cH A D16-May-20212.5 KiB10482

fb_tls8204.cH A D16-May-20213.5 KiB16190

fb_uc1611.cH A D16-May-20218.3 KiB338241

fb_uc1701.cH A D16-May-20214.1 KiB171102

fb_upd161704.cH A D16-May-20215.2 KiB189128

fb_watterott.cH A D16-May-20217 KiB304238

fbtft-bus.cH A D16-May-20217.6 KiB245192

fbtft-core.cH A D16-May-202134.5 KiB1,3501,036

fbtft-io.cH A D16-May-20215.2 KiB237185

fbtft-sysfs.cH A D16-May-20214.7 KiB221183

fbtft.hH A D16-May-202116.3 KiB421273

internal.hH A D16-May-2021427 148

README

1  FBTFT
2=========
3
4Linux Framebuffer drivers for small TFT LCD display modules.
5The module 'fbtft' makes writing drivers for some of these displays very easy.
6
7Development is done on a Raspberry Pi running the Raspbian "wheezy" distribution.
8
9INSTALLATION
10  Download kernel sources
11
12  From Linux 3.15
13    cd drivers/video/fbdev/fbtft
14    git clone https://github.com/notro/fbtft.git
15
16    Add to drivers/video/fbdev/Kconfig:   source "drivers/video/fbdev/fbtft/Kconfig"
17    Add to drivers/video/fbdev/Makefile:  obj-y += fbtft/
18
19  Before Linux 3.15
20    cd drivers/video
21    git clone https://github.com/notro/fbtft.git
22
23    Add to drivers/video/Kconfig:   source "drivers/video/fbtft/Kconfig"
24    Add to drivers/video/Makefile:  obj-y += fbtft/
25
26  Enable driver(s) in menuconfig and build the kernel
27
28
29See wiki for more information: https://github.com/notro/fbtft/wiki
30
31
32Source: https://github.com/notro/fbtft/
33