Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | embest DMSTF4BB board fix - removed FSMC suffix because only FSMC exists | Joel Bodenmann | 2013-03-08 | 3 | -3/+5 |
| | |||||
* | small cleanup | Joel Bodenmann | 2013-03-08 | 1 | -1/+2 |
| | |||||
* | STMPE811: comment fix | Mateusz Tomaszkiewicz | 2013-03-08 | 1 | -2/+2 |
| | |||||
* | STMPE811: added header with registers addresses | Mateusz Tomaszkiewicz | 2013-03-08 | 3 | -6/+111 |
| | | | | | Also changed filename of board file from *_embest_lcd.h to *_embest_dmstf4bb.h. | ||||
* | added basic STMPE811 skeleton | Joel Bodenmann | 2013-03-08 | 6 | -0/+377 |
| | |||||
* | Nokia6610GE8 driver updates | Andrew Hannam | 2013-03-08 | 1 | -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. | ||||
* | Fix Olimex SAM7EX256 button definitions | Andrew Hannam | 2013-03-08 | 1 | -57/+57 |
| | |||||
* | Correction of copyright message | Andrew Hannam | 2013-03-08 | 6 | -6/+6 |
| | |||||
* | updated copyright - 2013 | Joel Bodenmann | 2013-03-06 | 62 | -62/+62 |
| | |||||
* | __inline becomes inline because most compilers dont like the prefix | Joel Bodenmann | 2013-03-04 | 27 | -184/+184 |
| | |||||
* | Add PWM backlight control to Nokia6610GE8 | Andrew Hannam | 2013-03-04 | 1 | -196/+238 |
| | | | | | Add PWM backlight control to Nokia6610GE8 for the Olimex SAM7EX256 board. | ||||
* | ILI9320 update | Joel Bodenmann | 2013-03-03 | 1 | -11/+25 |
| | |||||
* | TDISP update | Joel Bodenmann | 2013-03-02 | 4 | -11/+83 |
| | |||||
* | Merge branch 'SSD2119' | Mateusz Tomaszkiewicz | 2013-03-02 | 1 | -3/+2 |
|\ | |||||
| * | SSD2119: readme fix | Mateusz Tomaszkiewicz | 2013-03-02 | 1 | -3/+2 |
| | | |||||
* | | Merge branch 'SSD2119' | Mateusz Tomaszkiewicz | 2013-03-02 | 6 | -0/+1011 |
|\| | |||||
| * | SSD2119: GPIO board file removal | Mateusz Tomaszkiewicz | 2013-03-02 | 2 | -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 name | Mateusz Tomaszkiewicz | 2013-03-01 | 1 | -1/+1 |
| | | | | | | | | Changed to new scheme: gdisp_lld_*. | ||||
| * | SSD2119: orientation control | Mateusz Tomaszkiewicz | 2013-02-28 | 2 | -16/+16 |
| | | | | | | | | All angles supported: 0, 90, 180, 270. | ||||
| * | SSD2119: power control | Mateusz Tomaszkiewicz | 2013-02-25 | 1 | -90/+125 |
| | | | | | | | | All modes are working: powerOff, powerOn, powerSleep and powerDeepSleep. | ||||
| * | SSD2119: PWM period change | Mateusz Tomaszkiewicz | 2013-02-22 | 2 | -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 control | Mateusz Tomaszkiewicz | 2013-02-21 | 6 | -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 SSD2119 | Mateusz Tomaszkiewicz | 2013-02-19 | 20 | -5538/+5803 |
| |\ | |||||
| * | | SSD2119: GDISP_LLD() macro removal | Mateusz Tomaszkiewicz | 2013-02-13 | 2 | -9/+8 |
| | | | |||||
| * | | Merge branch 'master' into SSD2119 | Mateusz Tomaszkiewicz | 2013-02-13 | 27 | -609/+125 |
| |\ \ | |||||
| * | | | SSD2119: code & comments cleanup | Mateusz Tomaszkiewicz | 2013-02-07 | 5 | -22/+28 |
| | | | | |||||
| * | | | SSD2119: reorganization of files | resset | 2013-02-07 | 5 | -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 driver | resset | 2013-02-05 | 3 | -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 file | resset | 2013-01-26 | 2 | -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 SSD1289 | resset | 2013-01-26 | 7 | -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. | ||||
* | | | | GAUDIN implemented with GADC driver | Andrew Hannam | 2013-03-01 | 5 | -1/+226 |
| |_|/ |/| | | |||||
* | | | GADC implementation with demo program | Andrew Hannam | 2013-02-18 | 4 | -0/+231 |
| | | | | | | | | | | | | Also includes driver for AT91SAM7 cpu | ||||
* | | | TDISP to take ROWS and COLUMNS from board file | Andrew Hannam | 2013-02-18 | 2 | -212/+225 |
| | | | | | | | | | | | | TDISP to take ROWS and COLUMNS from board file | ||||
* | | | Fix compile error in GDISP | Andrew Hannam | 2013-02-18 | 13 | -5386/+5386 |
| | | | | | | | | | | | | | | | | | | 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. | ||||
* | | | TDISP merge - NOT TESTED!!! | Joel Bodenmann | 2013-02-18 | 4 | -262/+283 |
|\ \ \ | |_|/ |/| | | |||||
| * | | TDISP cleanup | Andrew Hannam | 2013-01-19 | 4 | -262/+283 |
| |/ | | | | | | | | | | | Seperate High level and low level code better Implement tdispControl Cleanup | ||||
* | | more GDISP_LLD() cleanup | Joel Bodenmann | 2013-02-11 | 21 | -539/+55 |
| | | |||||
* | | removed GDISP_LLD() macro - fix | Joel Bodenmann | 2013-02-11 | 84 | -0/+9809 |
| | | |||||
* | | removed GDISP_LLD() macro | Joel Bodenmann | 2013-02-11 | 84 | -9809/+0 |
|/ | |||||
* | TDISP cleanup | Joel Bodenmann | 2013-01-17 | 1 | -0/+33 |
| | |||||
* | some more TDISP cleanup | Joel Bodenmann | 2013-01-16 | 1 | -0/+8 |
| | |||||
* | removed internal TDISP_LLD() macro | Joel Bodenmann | 2013-01-16 | 2 | -13/+12 |
| | |||||
* | TDISP update | Joel Bodenmann | 2013-01-16 | 1 | -0/+22 |
| | |||||
* | TDISP: added custom character routine | Joel Bodenmann | 2013-01-12 | 1 | -0/+2 |
| | |||||
* | Merge branch 'tdisp' | Joel Bodenmann | 2013-01-11 | 4 | -0/+204 |
|\ | |||||
| * | TDISP update | Joel Bodenmann | 2013-01-10 | 1 | -7/+0 |
| | | |||||
| * | 4-bit mode implemented | Joel Bodenmann | 2013-01-10 | 2 | -15/+24 |
| | | |||||
| * | some TDISP doxygen | Joel Bodenmann | 2013-01-10 | 2 | -0/+2 |
| | | |||||
| * | added TDISP - experimental | Joel Bodenmann | 2013-01-09 | 4 | -0/+200 |
| | | |||||
* | | small doxygen fixes | Joel Bodenmann | 2013-01-11 | 4 | -6/+6 |
|/ |