summaryrefslogtreecommitdiff
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* The rest of the resolv->DNS client naming change: Renamed directories and ↵Gregory Nutt2014-04-1119-20/+29
| | | | header files
* Long needed clean up of DNS resolver for coding style and naming conventionsGregory Nutt2014-04-1116-203/+419
|
* NTP client: Fix a time calculation for the case of CPUs that do not support ↵Gregory Nutt2014-04-111-11/+38
| | | | long long
* NTP client, more clean-up and minor enhancementsGregory Nutt2014-04-111-6/+25
|
* NTP client, minor clean-up and enhancementsGregory Nutt2014-04-113-59/+113
|
* apps/netutils/ntpclient: Add a primitive NTP client. Initial checkin is ↵Gregory Nutt2014-04-1012-190/+1137
| | | | untested and probably incomplete
* mv ramlog.h and syslog.h to new include/nuttx/syslogGregory Nutt2014-04-101-1/+1
|
* Back out part of 610e2aa0c224e2936fe8009ef4a2351ce607067a: Need to be able ↵Gregory Nutt2014-04-081-1/+1
| | | | to select USB console devices when there is no /dev/console enabled. Noted by Librae
* apps/sysinfo: CONFIG_VERSION_BUILD is a string and needs to be printed with ↵Gregory Nutt2014-04-082-2/+3
| | | | %s not %d
* DHCPD: Correct value of PAD option is 0, not 1. From Brennan AshtonGregory Nutt2014-03-312-1/+3
|
* apps/examples/lcdrw: Fill out empty Kconfig fileGregory Nutt2014-03-272-0/+32
|
* Eliminate some warningsGregory Nutt2014-03-261-0/+4
|
* apps/system/usbmsc: Back out kludge that is no longer needed with the ↵Gregory Nutt2014-03-254-122/+30
| | | | recent fix to the USB MSC class
* apps/examples/igmp: Fill out empty Kconfig file; can now be built as an NSH ↵Gregory Nutt2014-03-243-3/+33
| | | | builtin function. From Manuel Stühn
* Cosmet update to debug messages and to commentsGregory Nutt2014-03-231-23/+24
|
* kconfig: Reorder some menus so that the display makes a little more senseGregory Nutt2014-03-231-22/+22
|
* Fix version number display in NSH promptGregory Nutt2014-03-232-0/+4
|
* SAM4E: Revise board-specific USB MSC supportGregory Nutt2014-03-181-9/+17
|
* Prep for NuttX 7.1 releasenuttx-7.1Gregory Nutt2014-03-151-5/+7
|
* QEMU i486: New QEMU keyboard and VGA drivers from LizhuoyiGregory Nutt2014-03-081-1/+1
|
* Minor cleanup of some new configurations; warning removal with GCC 4.8.2Gregory Nutt2014-03-061-3/+3
|
* Removed all support for the legacy configuration mechanism from the apps/ ↵Gregory Nutt2014-03-068-152/+26
| | | | directory
* configs/ntosd-dm320/udp: Configuration converted to use the ↵Gregory Nutt2014-03-051-1/+23
| | | | kconfig-frontends tools
* configs/stm3240g-eval/telnetd: Configuration converted to use the ↵Gregory Nutt2014-03-041-0/+50
| | | | kconfig-frontends tools
* Add missing DHCPD configuration settingsGregory Nutt2014-03-032-0/+65
|
* dhcpd_allocipaddr() should not call ntohl(). The return value is already in ↵Gregory Nutt2014-03-032-39/+59
| | | | host order. From Brennan Ashton
* configs/ez80f910200zco/dhcpd converted to use the kconfig-frontends toolsGregory Nutt2014-03-031-0/+17
|
* configs/lpcxpresso-lpc1768/nx: Configuration converted to use the ↵Gregory Nutt2014-03-021-0/+7
| | | | kconfig-frontends tools
* configs/sim/nsh2 converted to use the kconfig-frontends toolsGregory Nutt2014-03-011-0/+12
|
* cosmetic changes to README files and commentsGregory Nutt2014-02-271-1/+1
|
* NSH cat command now adds to newline at the end of the file so that the NSH ↵Gregory Nutt2014-02-272-1/+18
| | | | prompt is always on a newline
* Should CPU load on each thread in the PS commandGregory Nutt2014-02-272-3/+156
|
* networking: Fix one place where the reference count was not being zeroed. ↵Gregory Nutt2014-02-252-5/+7
| | | | This is really a cosmetic fix UNLESS CONFIG_DEBUG_NET is enabled, then it causes assertions
* For Telnetd password/username fixes from Bertikd Van den BerghGregory Nutt2014-02-221-2/+2
|
* NSH telnet: Use strncpy vs strcpy to avoid overrunning username and password ↵Gregory Nutt2014-02-222-2/+4
| | | | buffers. From Bertold Van den Bergh
* Add CONFIG_DEFAULT_SMALL that will select default values for configuration ↵Gregory Nutt2014-02-202-35/+75
| | | | settings based upon either more features or smaller footprint. Turns out not be be useful for modifying existing defconfig files because the defaults do not apply in that case
* unlink/rm can now be used on nodes in the pseudo-filesystem. There is new ↵Gregory Nutt2014-02-207-35/+67
| | | | configuration option to suppress these costly and mostly useless operations on the pseudo-filesystem
* Olimex LPC1766STK: FTPC configure changed to use the kconfig-fronteds tools ↵Gregory Nutt2014-02-201-0/+9
| | | | by Alan Carvalho de Assis
* Spark configuration updated from David SidraneGregory Nutt2014-02-191-2/+2
|
* Nodes in the pseudo-filesystem can now be renamed or moved within the ↵Gregory Nutt2014-02-194-7/+10
| | | | pseduo-filesystem
* mkdir can now be used to create empty directories in the pseudo-filesystem.Gregory Nutt2014-02-195-7/+10
|
* rmdir now may be used to remove empty nodes from the pseudo-filesystemGregory Nutt2014-02-194-5/+10
|
* Fix some errors in the last Kconfig files checked inGregory Nutt2014-02-181-4/+3
|
* Incomplete Kconfig files fleshed out by Alan Carvalho de AssisGregory Nutt2014-02-183-0/+100
|
* Typo fixes from CCTSA0. ThanksGregory Nutt2014-02-142-2/+2
|
* More changes to reduce complaints from CppCheck. Some latent bugs fixes, ↵Gregory Nutt2014-02-1021-72/+80
| | | | but probably some new typos introduced
* HID mouse can now support some while mice. Problems with Microsoft miceGregory Nutt2014-02-102-1/+4
|
* Add a mouse interface that is similar to the touchscreen interface except ↵Gregory Nutt2014-02-105-11/+78
| | | | that it can handle multple buttons and continuously reports positional data so that it can control a cursor
* Fix some errors in the clean target of the windows native buildGregory Nutt2014-02-101-17/+16
|
* More changes for a correct NSH Windows natvie buildGregory Nutt2014-02-072-1/+14
|