summaryrefslogtreecommitdiff
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* NSH: Add support for while-do-done and until-do-done loopsGregory Nutt2014-01-176-54/+423
|
* Add true and false commands; repartition some logic to better support ↵Gregory Nutt2014-01-175-57/+140
| | | | forthcoming looping
* Updated READMEGregory Nutt2014-01-161-145/+145
|
* INI parser updateGregory Nutt2014-01-162-38/+161
|
* Mostly cosmetic changes to INI file parserGregory Nutt2014-01-161-10/+12
|
* NSH: Fix redirection of output to a file. That was broken with recent changesGregory Nutt2014-01-162-3/+5
|
* Remove carriage returns from INI file parser filesGregory Nutt2014-01-152-828/+828
|
* Add a tiny INI file parserGregory Nutt2014-01-1510-5/+978
|
* If write buffering is enabled, then it is necessary to release the write ↵Gregory Nutt2014-01-141-3/+11
| | | | buffer resources (callback structure) when the socket is closed
* Changes to get PX4 config to build. Also some warning removalGregory Nutt2014-01-146-18/+23
|
* Change how TCP read-ahead is selected to better integrate with TCP write ↵Gregory Nutt2014-01-133-11/+12
| | | | buffering
* Cosmetic clean-up in preparation for TCP write buffering changeGregory Nutt2014-01-132-1/+9
|
* Recent NSH changes broke the minimal NSH configurationGregory Nutt2014-01-121-3/+5
|
* Fix a memory leak in last NSH change: Forgot to close a temporary fileGregory Nutt2014-01-122-5/+13
|
* NSH can not handle command arguments that are concatenations of constant ↵Gregory Nutt2014-01-112-104/+370
| | | | strings, command output, application program output, and environment varaible values.
* Back quoted NSH arguments now functionalGregory Nutt2014-01-116-100/+445
|
* Add support for backquoated commands as command argumentsGregory Nutt2014-01-104-18/+307
|
* NSH parser: Separate logic that executes a command into a separate functionGregory Nutt2014-01-102-299/+311
|
* NSH: Separate command line parsing from command execution. Add support for ↵Gregory Nutt2014-01-107-738/+197
| | | | multiple, semicolone separated commands on each line
* NSH: Separate command line parsing from command executionGregory Nutt2014-01-101-0/+742
|
* NSH: Code expects CONFIG_NSH_DRIPADDR and CONFIG_NSH_NETMASK even if DHCPC ↵Gregory Nutt2014-01-091-2/+2
| | | | is necessary. For now, just removed the dependency on DHCPC in the Kconfig file, but more thought is needed.
* Add support for the XPT2046 touchscreen controller on the Viewtool LCD moduleGregory Nutt2014-01-091-8/+9
|
* NSH Configuration: Refactor networking and netutils dependenciesGregory Nutt2014-01-095-4/+11
|
* apps/builtin: Native Windows build fixes from Max HoltzbergGregory Nutt2014-01-042-3/+5
|
* README and other cosmetic updatesGregory Nutt2014-01-041-1/+7
|
* Add Z16F NSH configurationGregory Nutt2014-01-011-1/+1
|
* sim/mount: Converted to use kconfig-frontends toolsGregory Nutt2014-01-013-1/+47
|
* NxWM::CTouchscreen: Add CONFIG_NXWM_TOUCHSCREEN_DEVINIT to suppress attempts ↵Gregory Nutt2013-12-301-0/+16
| | | | to initialize the touchscreen from NxWM in the kernel build
* NxWM: Can now disable the NxConsole window. STM3240G-EVAL knxwm: Disabled ↵Gregory Nutt2013-12-301-4/+10
| | | | the NxConsole for now because there are issues with the kernel build.
* Move nuttx/configs/stm3240g-eval/src/up_cxxinitialize.c to ↵Gregory Nutt2013-12-296-35/+244
| | | | apps/platform/stm3240g-eval/
* Add nx_start() to simplify starting the NX server from within the RTOSGregory Nutt2013-12-291-2/+2
|
* NxWidgets server initialization must be performed in the kernel when ↵Gregory Nutt2013-12-291-4/+27
| | | | NxWdigets is built in kernel mode
* Viewtool STM32F107: Add a NSH configuration with network supportGregory Nutt2013-12-251-1/+3
|
* procfs/: Extenstive architectural changes and enhancements by Ken PettitGregory Nutt2013-12-121-3/+6
|
* Modified NSH 'df -h' command to do some saner conversions. From Ken PettitGregory Nutt2013-12-122-3/+8
|
* Move ramdisk.h to include/nutt/fs/ramdisk.hGregory Nutt2013-12-109-9/+9
|
* Move smart.h to include/nuttx/fs/smart.hGregory Nutt2013-12-102-2/+2
|
* Move rgbcolors.h to include/nuttx/videoGregory Nutt2013-12-102-2/+2
|
* Move include/nuttx/fb.h to include/nuttx/video/fb.hGregory Nutt2013-12-1011-12/+12
|
* A little SAMA5 camera stuffGregory Nutt2013-12-091-1/+1
|
* Prep for the NuttX-6.32 Releasenuttx-6.32Gregory Nutt2013-12-071-6/+7
|
* SAMA5 NAND: bugfixesGregory Nutt2013-12-061-2/+2
|
* NSH: Add an option to the mkfatfs command to specify FAT12, FAT16, or FAT32Gregory Nutt2013-12-054-10/+88
|
* examples/hidkbd now expects an architecture-specific USB HOST initialization ↵Gregory Nutt2013-11-292-11/+22
| | | | function
* NSH mount count updated from Ken PettitGregory Nutt2013-11-172-3/+20
|
* Moved include/nuttx/mtd.h to include/nuttx/mtd/mtd.hGregory Nutt2013-11-157-7/+7
|
* fs/procfs: Add a tiny, primitive procfs file system. Might get more ↵Gregory Nutt2013-11-131-1/+6
| | | | interesting in the future
* apps/examples/i2schar: Raise priority of the receiver thread. In a loopback ↵Gregory Nutt2013-11-121-18/+41
| | | | test, catching the returned data is higher priority than sending new data
* Various fixes from initial attempts to integrate the SAMA5 SSC/I2C driver ↵Gregory Nutt2013-11-113-6/+21
| | | | with the I2C character driver loopback test
* Add apps/examples/i2schar that will eventually use the I2C character drvier ↵Gregory Nutt2013-11-1012-7/+1153
| | | | to verify I2S