summaryrefslogtreecommitdiff
path: root/nuttx
Commit message (Collapse)AuthorAgeFilesLines
* drawline/drawLine should not take a boolean to select non lines caps or ↵Gregory Nutt2015-04-059-73/+99
| | | | capping at both ends. drawline/drawLine also needs to be able to put a line cap on one one end of a line
* Calypso: SPI built only if CONFIG_SPIGregory Nutt2015-04-051-3/+7
|
* NX circular drawing. Reduce computations; line caps needed only on every ↵Gregory Nutt2015-04-053-6/+37
| | | | other line segment
* Update TODO list and a READMEGregory Nutt2015-04-052-13/+6
|
* Update ChangeLogsGregory Nutt2015-04-051-0/+7
|
* Implement line caps by drawing a file circle at the each endpoint of a line ↵Gregory Nutt2015-04-056-7/+109
| | | | with a radius equal to half of the width of the line
* Add a 'capped' boolean parameter to all drawline/drawLine functions/methods. ↵Gregory Nutt2015-04-0510-38/+69
| | | | The idea is that this will produce better joining between lines
* Update comments and READMEGregory Nutt2015-04-055-27/+58
|
* SAMV7: Fix SDRAM initialization instabiilties by changing the order of ↵Gregory Nutt2015-04-043-72/+11
| | | | initialization
* Update READMEGregory Nutt2015-04-041-3/+8
|
* SAMV71-XULT: Enable SDRAM and the RAM test in the nsh configurationGregory Nutt2015-04-042-9/+45
|
* SAMV7: Apparently the data sheet is wrong, SDRAM clocking must be enabled ↵Gregory Nutt2015-04-041-2/+2
| | | | at the PMC or the SDRAM does not work! The data sheet says that there is no clock control for SDRAMC
* Fixes a few typos in commentsGregory Nutt2015-04-041-3/+3
|
* SAMV71-XULT: Tried the SDRAM test again. Found one bug, but it still failsGregory Nutt2015-04-043-39/+33
|
* SAMV7: Fix a errort in GPIO bit encoding. Correct naming of a variableGregory Nutt2015-04-042-4/+4
|
* SAMV71-XULT: Some improved namingGregory Nutt2015-04-045-76/+76
|
* SAMV7: Fix typo in some GPIO definitionsGregory Nutt2015-04-041-5/+5
|
* Upate ChangeLogsGregory Nutt2015-04-041-0/+3
|
* More renaming: up_lcdinitialize->board_lcd_initialize, ↵Gregory Nutt2015-04-0429-185/+214
| | | | up_lcdgetdev->board_lcd_getdev, up_lcduninitialize->board_lcd_uninitialize
* ILI9488: Correct some data width issues. Now the ILI9488 driver works fine.Gregory Nutt2015-04-041-3/+5
|
* ILI9488: Correct logic that gets the LCD IDGregory Nutt2015-04-041-5/+44
|
* SAMV17-XULT: Can't use UART3 when LCD is conencted, switch to USART0Gregory Nutt2015-04-043-26/+106
|
* Fix typos in debug assertionsGregory Nutt2015-04-042-5/+5
|
* More updates to README fileGregory Nutt2015-04-031-10/+62
|
* SAMV71-XULT: The ILI9488 LCD is now enabled by default in the mxtxplnd ↵Gregory Nutt2015-04-034-275/+317
| | | | configuration
* Minor documentation updateGregory Nutt2015-04-031-3/+6
|
* SAMV71-XULT ILI9488 LCD driver is code complete but untestedGregory Nutt2015-04-036-513/+904
|
* SAMV7: Add SMC register definition header file; SAMV71-Xult: Add an LCD ↵Gregory Nutt2015-04-038-82/+1707
| | | | driver. The initial commit is simply the SAVM4E-EK ILI9375 driver will bogus name changes to ILI9488.
* Correct typos in commentsGregory Nutt2015-04-031-5/+5
|
* Remove carriage returns from fileGregory Nutt2015-04-031-137/+137
|
* Add ILI9488 header fileGregory Nutt2015-04-032-24/+165
|
* SAMV7: Fixes to WM8904 buildGregory Nutt2015-04-022-11/+11
|
* Update ChangeLogGregory Nutt2015-04-021-0/+2
|
* Add a very basic driver for the CS2100-CP Fractional-N Multipler chip.Gregory Nutt2015-04-027-3/+964
|
* Fix some missing inclusions in include/nuttx/board.hGregory Nutt2015-04-011-0/+4
|
* Header file for the CS2100-CPGregory Nutt2015-04-011-0/+165
|
* Update ChangeLogGregory Nutt2015-04-011-0/+2
|
* Move include/nuttx/timer.h, rtc.h and watchdog.h to include/nuttx/timers/.Gregory Nutt2015-04-0140-56/+56
|
* SAMV7 WM8904: Leverage WM8904 logic from the SAMA5D4-EKGregory Nutt2015-04-018-4/+761
|
* Update DocumentationGregory Nutt2015-04-012-53/+104
|
* Update ChangeLogsGregory Nutt2015-03-311-1/+6
|
* Rename pwm_devinit() to board_pwm_setup(). Add CONFIG_BOARDCTL_PWMTEST that ↵Gregory Nutt2015-03-3119-47/+108
| | | | will enable calling board_pwm_setup() from boardctl(). Replace calls to pwm_devinit() in apps/examples/pwm with calls to boardctl(). In all configurations that enable the apps/examples/pwm test, make sure that boardctl() suppoprt is properly enabled.
* Update ChangeLogGregory Nutt2015-03-311-0/+4
|
* Update several defconfig files. Make sure that every defconfig file that ↵Gregory Nutt2015-03-315-0/+10
| | | | requires external graphics initialization also approprietly initializes boardctl().
* Rename up_nxdrvinit() to board_graphics_setup(). Add ↵Gregory Nutt2015-03-3115-39/+125
| | | | CONFIG_BOARDCTL_GRAPHICS that will enabled calls to board_graphics_setup() from boardctrl(). In apps/ and NxWidgts/, replace all calls to up_nxdrvinit with calls to boardctl().
* Update ChangeLogsGregory Nutt2015-03-311-0/+6
|
* Rename adc_devinit() to board_adc_setup(). Add support to the boardctl() ↵Gregory Nutt2015-03-3123-47/+140
| | | | interface so that it can call board_adc_setup() on behalf of an application. Change apps/examples/adc to that is now calls boardctl() instead of adc_devinit() in order to initalize the ADC device.
* Update ChangeLogsGregory Nutt2015-03-311-0/+7
|
* rch_tcinitialize() and arch_tcunitinitialize() renamed to board_tsc_setup() ↵Gregory Nutt2015-03-3132-135/+200
| | | | and board_tsc_teardown(). These are not long called directly by applications but only indirectly throught the crappy boardctl() OS interface.
* Update ChangeLogsGregory Nutt2015-03-311-0/+4
|