summaryrefslogtreecommitdiff
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* apps/system/zoneinfo: All logic to build timezone info. Does not do much ↵Gregory Nutt2015-04-148-2/+277
| | | | else yet
* Forgot to add a file in a previous commitGregory Nutt2015-04-141-0/+126
|
* Update ChangeLogGregory Nutt2015-04-141-0/+5
|
* apps/netutils: Separated out apps/examples/pppd; split up pppd utils. From ↵Gregory Nutt2015-04-1410-90/+33
| | | | Brennan Ashton
* Add apps/examples/pppd test case. From Brennan Ashton.Gregory Nutt2015-04-147-1/+261
|
* apps/netutils/ppp: Make pppd PAP authentication optional. From Brennan AshtonGregory Nutt2015-04-146-14/+73
|
* Remove more NTP client references from pppd. From Brennan Ashton.Gregory Nutt2015-04-132-17/+0
|
* Remove ntpclient file in pppd dir. From Brennan Ashton.Gregory Nutt2015-04-131-207/+0
|
* Update ChangeLogGregory Nutt2015-04-111-0/+3
|
* Allow NSH date command with no RTC. This command is useful without an RTC ↵Gregory Nutt2015-04-118-21/+25
| | | | too. Also, this permits testing on the simulator which never has an RTC
* Update ChangeLogGregory Nutt2015-04-111-1/+4
|
* Add master support to modbus. From Darcy GongGregory Nutt2015-04-1114-65/+621
|
* Add Modbus RTU master logic. From Darcy GongGregory Nutt2015-04-113-0/+538
|
* Add Modbus master logic. From Darcy GongGregory Nutt2015-04-115-0/+1424
|
* Minor updates to README filesGregory Nutt2015-04-101-0/+4
|
* Fix several typos in commentsGregory Nutt2015-04-091-1/+1
|
* Update ChangeLogGregory Nutt2015-04-091-0/+2
|
* apps/examples/ostest: Add a test for the sigprocmask, sighold, and sigrelseGregory Nutt2015-04-095-1/+248
|
* exampels/nxlines: Needs to include sys/boardctl.cGregory Nutt2015-04-091-0/+1
|
* Remove executable flag from more .c and .h filesGregory Nutt2015-04-093-0/+0
|
* Make some file section headers more consistent with standardGregory Nutt2015-04-087-7/+7
|
* apps/modbus: That completes a complete pass; all of the modbus files a ↵Gregory Nutt2015-04-0722-576/+708
| | | | little closer to NuttX coding style. Still not compliant with naming conventions
* Modbus: changes to more C file to make them more compatible with NuttX ↵Gregory Nutt2015-04-074-255/+309
| | | | coding style
* Modbus: changes to several C file to make them more compatible with NuttX ↵Gregory Nutt2015-04-079-612/+750
| | | | coding style
* Modbus: Change to more header files to make them a little more consistent ↵Gregory Nutt2015-04-076-53/+76
| | | | with Nuttx coding stanards. Still not very close
* Modbus: Change to several header files to make them a little more consistent ↵Gregory Nutt2015-04-075-152/+172
| | | | with Nuttx coding stanards. Still not very close
* apps/system: Clean up Kconfig menuingGregory Nutt2015-04-0727-117/+45
|
* Ooops accidentally committed some trash debug codeGregory Nutt2015-04-071-2/+1
|
* Modbus: Misc cleanupGregory Nutt2015-04-076-491/+555
|
* Minor changes to SAMV7 USB register definition file from reviewGregory Nutt2015-04-061-2/+1
|
* Update ChangeLogGregory Nutt2015-04-061-0/+3
|
* apps/modbus: Fix some complile problems when TCP is enabledGregory Nutt2015-04-062-75/+85
|
* drawline/drawLine should not take a boolean to select non lines caps or ↵Gregory Nutt2015-04-051-2/+4
| | | | capping at both ends. drawline/drawLine also needs to be able to put a line cap on one one end of a line
* Update ChangeLogsGregory Nutt2015-04-051-0/+2
|
* Add a 'capped' boolean parameter to all drawline/drawLine functions/methods. ↵Gregory Nutt2015-04-051-3/+5
| | | | The idea is that this will produce better joining between lines
* Upate ChangeLogsGregory Nutt2015-04-041-0/+3
|
* More renaming: up_lcdinitialize->board_lcd_initialize, ↵Gregory Nutt2015-04-049-41/+66
| | | | up_lcdgetdev->board_lcd_getdev, up_lcduninitialize->board_lcd_uninitialize
* Move include/nuttx/timer.h, rtc.h and watchdog.h to include/nuttx/timers/.Gregory Nutt2015-04-013-3/+3
|
* Update ChangeLogsGregory Nutt2015-03-311-0/+2
|
* Rename pwm_devinit() to board_pwm_setup(). Add CONFIG_BOARDCTL_PWMTEST that ↵Gregory Nutt2015-03-313-15/+6
| | | | 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.
* Kconfig files: If external graphics initialization is required, it depends ↵Gregory Nutt2015-03-315-0/+10
| | | | on CONFIG_LIB_BOARDCTL and should set CONFIG_BOARDCTL_GRAPHICS
* Rename up_nxdrvinit() to board_graphics_setup(). Add ↵Gregory Nutt2015-03-3119-101/+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/+3
|
* Rename adc_devinit() to board_adc_setup(). Add support to the boardctl() ↵Gregory Nutt2015-03-313-15/+5
| | | | 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/+4
|
* rch_tcinitialize() and arch_tcunitinitialize() renamed to board_tsc_setup() ↵Gregory Nutt2015-03-314-30/+24
| | | | 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
|
* NSH initialization now calls boardctl(BOARDIOC_INIT) instead of ↵Gregory Nutt2015-03-314-34/+8
| | | | 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
* Update ChangeLogGregory Nutt2015-03-311-0/+1
|
* Rename arch_nshinitialize() to board_app_initialize()Gregory Nutt2015-03-314-7/+8
|