aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/SSD2119/gdisp_lld_config.h
Commit message (Collapse)AuthorAgeFilesLines
* Update license headerTibo Clausen2018-10-011-1/+1
|
* First set of V3 macro changesinmarket2018-02-271-6/+6
|
* Update SSD1289 and SSD2119 drivers to support using CCM memory for stack ↵inmarket2014-12-171-1/+1
| | | | | | when using DMA. Use GDISP_NO_DMA_FROM_STACK.
* Removed the doxygen inside of every driver as doxygen is only meant for ↵Joel Bodenmann2014-03-281-9/+0
| | | | | | highlevel API documentation. Documenting the drivers interface should be done inside a template driver or the gdisp LLD abstraction.
* New GDISP now supports multiple controllers with different pixel formats.inmarket2013-11-051-1/+4
| | | | | You can now have a main color display and a secondary monochrome display. You can now optionally set GDISP_PIXELFORMAT to any color or grayscale format for your application and the driver will internally convert to the display hardware format.
* Auto-generate pixel formats using macro's.inmarket2013-11-051-1/+1
| | | | | Prepare for (but not yet complete) supporting a different high level GDISP pixel format to the low level driver format. This will be useful in multiple display scenario's where displays have different pixel formats.
* Convert SSD2119 to new driver formatinmarket2013-10-221-7/+8
|
* fixed license headersJoel Bodenmann2013-07-211-1/+1
|
* License header updatesinmarket2013-06-151-1/+1
|
* updated license headersJoel Bodenmann2013-05-031-18/+5
|
* Revert "updated license headers"Joel Bodenmann2013-05-021-8/+19
| | | | This reverts commit 0a26d9983b6d1deab272ff6dde98f7c77ff2a56c.
* updated license headersJoel Bodenmann2013-05-021-19/+8
|
* updated copyright - 2013Joel Bodenmann2013-03-061-1/+1
|
* SSD2119: backlight controlMateusz Tomaszkiewicz2013-02-211-52/+52
| | | | | | | | | - 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 ;))
* SSD2119: GDISP_LLD() macro removalMateusz Tomaszkiewicz2013-02-131-1/+0
|
* initial commit: copy sources from SSD1289resset2013-01-261-0/+53
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.