aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp
Commit message (Collapse)AuthorAgeFilesLines
* updated license headersJoel Bodenmann2013-05-0245-418/+383
|
* Renamed HVGA_X81 to ILI9481Abhishek Kumar2013-04-308-20/+20
|
* New LLD: HVGA_X81Abhishek Kumar2013-04-307-0/+1143
| | | | | | | | For HVGA : 320 x 480, 16bpp displays, controlled by ILI9481 or compatible controllers. * Pixel readback TODO * Powermodes: Sleep implemented
* some doxygen fixesJoel Bodenmann2013-04-082-2/+2
|
* [ILI9320][olimex][pic32] extra dummy read after index writeDmytro Milinevskyy2013-04-071-0/+5
|
* [ILI9320] LLD for olimex pic32 demo boardDmytro Milinevskyy2013-04-052-0/+116
|
* [ILI9325] read LCD versionDmytro Milinevskyy2013-04-051-0/+2
|
* [ILI9320/ILI9325] use correct lld accessor to read the data from the LCDDmytro Milinevskyy2013-04-042-6/+2
|
* SSD1963 - Removed unused function that what using an inline macro.mobyfab2013-04-041-5/+0
|
* SSD1963 Driver - Removed old config filesmobyfab2013-04-042-268/+0
|
* Fixed SSD1963 Driver to work with latest GDISP.mobyfab2013-04-046-337/+768
|
* SSD2119: readme fixMateusz Tomaszkiewicz2013-04-041-2/+2
|
* ILI9320 fixJoel Bodenmann2013-04-032-0/+16
|
* GPIO interface-related fixesAbhishek Kumar2013-03-303-3/+63
| | | | | | Adding acquire_bus() and release_bus() so that orientation setting commands are not ignored.
* board file fixJoel Bodenmann2013-03-291-0/+8
|
* STMPE811 - initialJoel Bodenmann2013-03-291-8/+0
|
* SSD1289 SSD2119: fixed warning messagesMateusz Tomaszkiewicz2013-03-202-8/+8
| | | | | | Few type castings in order to suppress warnings (-Wsign-compare): "comparison between signed and unsigned integer expressions" "signed and unsigned type in conditional expression"
* SSD1963 rework by user: fredJoel Bodenmann2013-03-144-224/+294
|
* embest DMSTF4BB board fix - removed FSMC suffix because only FSMC existsJoel Bodenmann2013-03-082-2/+2
|
* Nokia6610GE8 driver updatesAndrew Hannam2013-03-081-116/+201
| | | | | | | | Fix screen size to ignore hidden pixels. Add orientation support. Fix bit blitting boundary conditions. Add power modes support. This driver is now fully implemented.
* updated copyright - 2013Joel Bodenmann2013-03-0635-35/+35
|
* __inline becomes inline because most compilers dont like the prefixJoel Bodenmann2013-03-0422-157/+157
|
* Add PWM backlight control to Nokia6610GE8Andrew Hannam2013-03-041-196/+238
| | | | | Add PWM backlight control to Nokia6610GE8 for the Olimex SAM7EX256 board.
* ILI9320 updateJoel Bodenmann2013-03-031-11/+25
|
* SSD2119: readme fixMateusz Tomaszkiewicz2013-03-021-3/+2
|
* SSD2119: GPIO board file removalMateusz Tomaszkiewicz2013-03-022-243/+0
| | | | | | Removed GPIO board file. It did not work (it wasn't finished nor started to be honest). It is always possible to make it, general idea is exactly the same as in SSD1289 driver.
* SSD2119: updated scroll function nameMateusz Tomaszkiewicz2013-03-011-1/+1
| | | | Changed to new scheme: gdisp_lld_*.
* SSD2119: orientation controlMateusz Tomaszkiewicz2013-02-282-16/+16
| | | | All angles supported: 0, 90, 180, 270.
* SSD2119: power controlMateusz Tomaszkiewicz2013-02-251-90/+125
| | | | All modes are working: powerOff, powerOn, powerSleep and powerDeepSleep.
* SSD2119: PWM period changeMateusz Tomaszkiewicz2013-02-222-3/+16
| | | | | 100 kHz PWM period made small induction coil onboard LCD to moan if the pulse width was smaller than 100%. I changed it to 1MHz.
* SSD2119: backlight controlMateusz Tomaszkiewicz2013-02-216-1096/+1123
| | | | | | | | | - Backlight uses PWM on TIM4 CH2. - Updated readme. - Updated gdisp_lld.c: moved from lld_gdisp_* to gdisp_lld_* functions names format. - One forgotten GDISP_LLD() macro removal. - General code cleanup (make diff with -w parameter ;))
* Merge branch 'master' into SSD2119Mateusz Tomaszkiewicz2013-02-1912-4360/+4360
|\
| * Fix compile error in GDISPAndrew Hannam2013-02-1812-4360/+4360
| | | | | | | | | | | | Fix compile error with wrongly named include file Revert lld_gdisp naming convention to gdisp_lld to fix problem and be consitant with all other low level drivers.
* | SSD2119: GDISP_LLD() macro removalMateusz Tomaszkiewicz2013-02-132-9/+8
| |
* | Merge branch 'master' into SSD2119Mateusz Tomaszkiewicz2013-02-1325-600/+117
|\|
| * more GDISP_LLD() cleanupJoel Bodenmann2013-02-1120-538/+55
| |
| * removed GDISP_LLD() macro - fixJoel Bodenmann2013-02-1155-0/+7114
| |
| * removed GDISP_LLD() macroJoel Bodenmann2013-02-1155-7114/+0
| |
* | SSD2119: code & comments cleanupMateusz Tomaszkiewicz2013-02-075-22/+28
| |
* | SSD2119: reorganization of filesresset2013-02-075-373/+184
| | | | | | | | | | | | - Added FSMC board file (_fsmc suffix) - working. - Added GPIO board file (no suffix) - not working. - Removed unneeded files.
* | SSD2119: first working version of driverresset2013-02-053-115/+213
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is a mix of barely changed few drivers already present in ChibiOS/GFX project. No other routines than initialization ones were changed. Properly displays "basics" demo. Main features and changes: - Based on SSD1289 and SSD1121 in FSMC mode. - Uses FSMC module. Maybe oneday I will make GPIO version. - LCD backlight PWM input is tied high (no timer yet). - Added ssd2119.h with SSD2119 registers' addresses. - Updated set_cursor and set_viewport functions. Not thoroughly tested, however. - Rewritten GDISP_LLD(init)(void) function.
* | SSD2119: created board fileresset2013-01-262-0/+159
| | | | | | | | | | Created board support file for Embest DM-STF4BB board with DM-LCD35RT LCD module. You simply plug STM32F4DISCOVERY into it.
* | initial commit: copy sources from SSD1289resset2013-01-267-0/+1106
|/ | | | | | | | | | | | | | I started project of new driver: SSD2119. This work is based on SSD1289. I don't know exactly if this one is the most similar to my one. It's just an experiment. There is no accompanying board file of any flavor, but the hardware lying on my desk is Embest DM-STF4BB with DM-LCD35RT LCD module. Changes already made: - Copied entire drivers/gdisp/SSD1289 directory into drivers/gdisp/SSD2119. - Changed every occurrence of "SSD1289" to "SSD2119" in each source file.
* small doxygen fixesJoel Bodenmann2013-01-113-4/+4
|
* cleanupJoel Bodenmann2013-01-033-25/+1
|
* added ILI9325 driver. Thanks to Chris van Dongen aka _SjaakJoel Bodenmann2013-01-036-0/+833
|
* Fixes for the SSD1289 driverAndrew Hannam2012-12-201-14/+17
| | | | | | | Put aquire_bus() and release_bus() in the right place in the control routine. Simplify reset_viewport(). A couple of other simple tidyups.
* - clear function: moved call to reset_viewport after aquire_bus, so LCD ↵etmatrix2012-12-171-11/+13
| | | | | | receive the new viewport - control function: added call to acquire_bus and release_bus
* SSD1289 calibration clear fixJoel Bodenmann2012-12-172-1/+1
|
* dirty dirty dirty very very dirty reset_viewport for mouse calibration fixJoel Bodenmann2012-12-171-0/+1
|