aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* GDISP fix bug in non-multithreadinmarket2013-07-082-1/+4
|
* Image decoders not setting image type correctly.inmarket2013-07-083-0/+3
|
* Add gdispImageIsOpen() function.inmarket2013-07-012-1/+22
|
* doxygen fixJoel Bodenmann2013-06-282-2/+2
|
* Merge pull request #78 from resset/masterAndrew Hannam2013-06-251-1/+1
|\ | | | | gdisp: fixed bug in line drawing function
| * gdisp: fixed bug in line drawing functionMateusz Tomaszkiewicz2013-06-261-1/+1
|/ | | | | | | | There was a problem when you drew a line from (x0,y0) to (x1,y1) and these points met following conditions: y0 = y1 and x0 > x1. The viewport was set incorrectly to start from (x0,y1) when it should start from (x1,y0) since x1 is lower in this case. (x1,y1) would be also OK since y0 = y1.
* quick board file fixJoel Bodenmann2013-06-241-1/+1
|
* one more typo fix...Joel Bodenmann2013-06-221-1/+1
|
* typo fixJoel Bodenmann2013-06-221-1/+1
|
* Added FT5x06 GINPUT driverJoel Bodenmann2013-06-228-0/+431
|
* Added RA8875 GDISP driverJoel Bodenmann2013-06-2211-0/+1264
|
* Merge pull request #77 from resset/masterTectu2013-06-2015-38/+33
|\ | | | | Various README updates
| * Various README updatesMateusz Tomaszkiewicz2013-06-2115-38/+33
|/ | | | Changed misleading description.
* SSD2119: FSMC settings tunedMateusz Tomaszkiewicz2013-06-202-33/+11
| | | | | With FSMC BTR timing register settings tuned and DMA on, we get over 10.2 Mpx/s instead of 4.7 Mpx/s.
* SSD2119: GDISP_USE_FSMC "switch" addedMateusz Tomaszkiewicz2013-06-182-14/+29
| | | | Enable FSMC functions only when GDISP_USE_FSMC is set.
* Various readme updateMateusz Tomaszkiewicz2013-06-182-8/+11
| | | | For GDISP drivers SSD2119 & SSD1289.
* SSD2119: make use of DMAMateusz Tomaszkiewicz2013-06-182-42/+134
| | | | | | | | | | This is mostly a copy from Eddie's work posted here: http://forum.chibios.org/phpbb/viewtopic.php?f=11&t=851#p11054 No work was done towards making it work as fast as possible. Tested with: https://github.com/etmatrix/ChibiOS-GFX-Example/blob/master/bench/main.c Results show performance of ~5.34 Mpx/s with use of DMA compared to ~4.78 Mpx/s without.
* minor fix to GFX license v1.1Joel Bodenmann2013-06-181-1/+1
|
* GFX license v1.1 updateJoel Bodenmann2013-06-152-855/+185
|
* License header updatesinmarket2013-06-15211-412/+401
|
* License header fixes to some demos.inmarket2013-06-064-72/+100
|
* checkbox cleanupJoel Bodenmann2013-06-042-6/+2
|
* added new ADS7843 board fileJoel Bodenmann2013-06-041-0/+2
|
* added f4 disovery file for ADS7843Joel Bodenmann2013-06-041-0/+90
|
* SSD1289 update by user EddieJoel Bodenmann2013-06-043-568/+820
|
* added custom render interface for checkboxesJoel Bodenmann2013-06-032-1/+25
|
* checkbox event fixJoel Bodenmann2013-06-031-1/+2
|
* member state of checkbox is now called isCheckedJoel Bodenmann2013-06-022-9/+9
|
* some more checkbox fixesJoel Bodenmann2013-06-022-2/+4
|
* GWIN checkbox fixJoel Bodenmann2013-06-022-1/+11
|
* doxygen updateJoel Bodenmann2013-06-021-54/+136
|
* added default themeJoel Bodenmann2013-06-022-75/+48
|
* Notepad-2 demo updated to work on ChibiOS or pure Win32 compileinmarket2013-06-028-58/+65
|
* Fix license issues and GOS issues in TDISPinmarket2013-06-028-198/+85
|
* GOS updatesinmarket2013-06-0215-100/+160
|
* Had extra elements to gitignore and fix image problems created by githubinmarket2013-06-025-0/+7
|
* added basic implementation of checkboxes (functional)Joel Bodenmann2013-06-021-0/+171
|
* added basic implementation of checkboxes (functional)Joel Bodenmann2013-06-024-5/+185
|
* doxygen fixesJoel Bodenmann2013-06-014-33/+2
|
* TDISP updateJoel Bodenmann2013-06-0117-446/+2573
|
* gdispInit() -> gfxInit() in all demosJoel Bodenmann2013-05-308-3/+3
|
* added obsolete #warning to gdispInit()Joel Bodenmann2013-05-302-2/+9
|
* API fixJoel Bodenmann2013-05-271-2/+2
|
* added slider enable/disable APIJoel Bodenmann2013-05-272-0/+31
|
* docsJoel Bodenmann2013-05-271-0/+2
|
* Merge pull request #74 from inmarket/masterAndrew Hannam2013-05-2518-315/+1107
|\ | | | | More GOS changes incl adding Win32 O/S support
| * More GOS module changesinmarket2013-05-2618-315/+1107
| | | | | | | | | | GQUEUE as a seperate module GOS changes including basic Win32 O/S support
* | Merge pull request #73 from inmarket/masterAndrew Hannam2013-05-24122-957/+2213
|\| | | | | GOS module for OS independance, GMISC additions
| * GOS module, for operating system independanceinmarket2013-05-25122-957/+2213
| | | | | | | | | | GMISC fast floating point trig GMISC fast fixed point trig
| * Merge pull request #30 from Tectu/masterAndrew Hannam2013-05-2333-659/+3029
| |\ | |/ |/| Merge Tectu Changes