- Apr 06, 2015
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
- Apr 05, 2015
-
-
Gregory Nutt authored
drawline/drawLine should not take a boolean to select non lines caps or capping at both ends. drawline/drawLine also needs to be able to put a line cap on one one end of a line
-
Gregory Nutt authored
-
Gregory Nutt authored
Add a 'capped' boolean parameter to all drawline/drawLine functions/methods. The idea is that this will produce better joining between lines
-
- Apr 04, 2015
-
-
Gregory Nutt authored
-
Gregory Nutt authored
More renaming: up_lcdinitialize->board_lcd_initialize, up_lcdgetdev->board_lcd_getdev, up_lcduninitialize->board_lcd_uninitialize
-
- Apr 01, 2015
-
-
Gregory Nutt authored
-
- Mar 31, 2015
-
-
Gregory Nutt authored
-
Gregory Nutt authored
Rename pwm_devinit() to board_pwm_setup(). Add CONFIG_BOARDCTL_PWMTEST that 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.
-
Gregory Nutt authored
Kconfig files: If external graphics initialization is required, it depends on CONFIG_LIB_BOARDCTL and should set CONFIG_BOARDCTL_GRAPHICS
-
Gregory Nutt authored
Rename up_nxdrvinit() to board_graphics_setup(). Add 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().
-
Gregory Nutt authored
-
Gregory Nutt authored
Rename adc_devinit() to board_adc_setup(). Add support to the boardctl() 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.
-
Gregory Nutt authored
-
Gregory Nutt authored
rch_tcinitialize() and arch_tcunitinitialize() renamed to board_tsc_setup() and board_tsc_teardown(). These are not long called directly by applications but only indirectly throught the crappy boardctl() OS interface.
-
Gregory Nutt authored
-
Gregory Nutt authored
NSH initialization now calls boardctl(BOARDIOC_INIT) instead of board_app_initaliaze. Modify all configurations: Make sure that CONFIG_LIB_BOARDCTL=y appears wherever CONFIG_NSH_ARCHINIT=y appears. Remove support for CONFIG_NSH_ARCHMAC. It is not used and there are better ways to do that operation
-
Gregory Nutt authored
-
Gregory Nutt authored
-
- Mar 29, 2015
-
-
Gregory Nutt authored
-
Gregory Nutt authored
SAMV7 Ethernet: I- and D-Cache are now enabled in the netnsh/ configuration. D-Cache is enabled in write-though mode. This mode is necessary because the DMA descriptors are each 8-bytes in size but the D-Cache cache line is 32-bits in size. So it is impossible make coherency for every 8-byte DMA descriptor without write-through.
-
- Mar 24, 2015
-
-
Gregory Nutt authored
-
Gregory Nutt authored
Make sure that FPU test, HID keyboard example, and touchscreen options are only available in the FLAT build
-
- Mar 23, 2015
-
-
Gregory Nutt authored
-
- Mar 21, 2015
-
-
Gregory Nutt authored
-
- Mar 15, 2015
-
-
Gregory Nutt authored
-
- Mar 14, 2015
-
-
Gregory Nutt authored
-
- Mar 12, 2015
-
-
Gregory Nutt authored
-
- Mar 11, 2015
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
-
- Mar 05, 2015
-
-
Gregory Nutt authored
Fix two uses of DEBUG_COLORATION vs STACK_COLORATION (from David Sidrane). Also some corrected comments
-
- Mar 02, 2015
-
-
Gregory Nutt authored
-
- Feb 25, 2015
-
-
Gregory Nutt authored
-
- Feb 20, 2015
-
-
Gregory Nutt authored
-
Gregory Nutt authored
-
Gregory Nutt authored
Fix some time value changes; mostly changing greater than 1000000000 to greater than or equal to 1000000000. From Juha Niskanen
-
- Feb 19, 2015
-
-
Gregory Nutt authored
apps/examples/ostest: Sample errno on returns from sem_timedwait(). Otherwise, intervening system calls my change the value of the reported errno. Noted by Juha Niskanen
-
Gregory Nutt authored
-