summaryrefslogtreecommitdiff
path: root/apps/nshlib
Commit message (Collapse)AuthorAgeFilesLines
* Cosmetic changed, updated README files, improved commentsGregory Nutt2014-08-101-0/+1
|
* Remove CONFIG_DISABLE_CLOCKGregory Nutt2014-08-075-19/+16
|
* NSH networking: There is now a configuration option that will bring up the ↵Gregory Nutt2014-08-064-8/+117
| | | | network on an separate thread. Since the network bring-up is asynchronous, there are not serial console start-up delays due to the network negotiation time.
* NSH Networking: Also add an option to let platform-specific logic select ↵Gregory Nutt2014-08-063-226/+295
| | | | the MAC address.
* NSH Networking: Software assigned MAC address is now configurable. From LazloGregory Nutt2014-08-063-6/+36
|
* dd support for a USB keyboard as the NxConsole and text widget input. Not ↵Gregory Nutt2014-07-301-1/+1
| | | | fully functional as of this initial check-in. Basic functionality is there, but there are conditions were the keyboard gets lost.
* SAMA5: Poll USB keyboard at a higher rate for better responseGregory Nutt2014-07-291-1/+1
|
* Fix some cloned errors in SAM GPIO interrupt setupGregory Nutt2014-07-072-2/+2
|
* NSH Keyboard Input: Worked okay until you try to disabled the keyboardGregory Nutt2014-07-061-6/+14
|
* NET: emoved all includes of uip.h; added includes of ip.h wherever needed. ↵Gregory Nutt2014-07-045-1/+14
| | | | Tried to fix problems of the now missing sneak inclusions because uip.h was removed. There are probably a few of these that were missed.
* Remove all inclusion of uip.hGregory Nutt2014-07-041-5/+0
|
* NSH Keyboard: Close stdin before trying to reopen. Otherwise, driver will ↵Gregory Nutt2014-07-031-13/+30
| | | | persist
* NSH: Add an option to take stdin from a USB keyboard deviceGregory Nutt2014-07-038-88/+452
|
* NET: Rename functions in apps/netutils/netlib to begin with netlib_ vs uip_Gregory Nutt2014-07-022-19/+19
|
* NET: Rename uiplib/UIPLIB to netlib/NETLIBGregory Nutt2014-07-023-9/+9
|
* NSH: if # appears on line, need to comment ignore additinal commands on the lineGregory Nutt2014-07-011-9/+10
|
* NET: Rename uip_ping to icmp_pingGregory Nutt2014-06-301-1/+1
|
* Cosmetic changes, updates to README files, updates to some commentsGregory Nutt2014-06-302-3/+3
|
* NET: Renaming of IP address typesGregory Nutt2014-06-291-1/+1
|
* SAMA5D4-EK: NSH confuration now has FAT/ROMFS, /dev/zero, /dev/random via ↵Gregory Nutt2014-06-282-2/+2
| | | | TRNG, an NSH startup script, and a RAM disk at /tmp
* Rename uip_driver_s net_driver_sGregory Nutt2014-06-271-1/+1
|
* NSH: Networking features modified to handle the case of SLIP networks.Gregory Nutt2014-06-272-12/+47
|
* NET: Move statistcs from uip.h to new netstats.h to remove nasty circular ↵Gregory Nutt2014-06-261-27/+27
| | | | inclusion problem.
* Move the remaining files from include/nuttx/net/uip to include/nuttx/net; ↵Gregory Nutt2014-06-241-2/+2
| | | | Rename *_internal.h header files in net/ to just *.h
* Move include/nuttx/net/uip/uip-arch.h to include/nuttx/net/netdev.hGregory Nutt2014-06-241-1/+1
|
* Add conversion of Intel HEX to binaryGregory Nutt2014-06-151-2/+3
|
* Change all variadic macros to C99 styleGregory Nutt2014-05-221-1/+1
|
* The alternate console device CONFIG_NSH_CONDEV must not be defined ↵Gregory Nutt2014-05-055-35/+86
| | | | unconditionally. This causes errors when using Telnet sessions. This was solved by adding CONFIG_NSH_ALTCONDEV: CONFIG_NSH_ALTCONDEV enables or disables the feature then, if enabled, CONFIG_NSH_CONDEV provides the alternative console device name
* Updates to the serialrx example from Bob DoisonGregory Nutt2014-04-221-1/+1
|
* CONFIG_NSH_CONDEV is type string, not boolGregory Nutt2014-04-211-1/+1
|
* NSH library: malloc/free IOBUFFER instead of using stackGregory Nutt2014-04-212-2/+18
|
* More trailing whilespace removalGregory Nutt2014-04-137-19/+19
|
* Make sure that there is one space after forGregory Nutt2014-04-123-4/+4
|
* Make sure that there is one space between while and conditionGregory Nutt2014-04-121-1/+1
|
* Make sure that there is one space between if and conditionGregory Nutt2014-04-122-2/+2
|
* The rest of the resolv->DNS client naming change: Renamed directories and ↵Gregory Nutt2014-04-112-3/+3
| | | | header files
* Long needed clean up of DNS resolver for coding style and naming conventionsGregory Nutt2014-04-113-7/+7
|
* mv ramlog.h and syslog.h to new include/nuttx/syslogGregory Nutt2014-04-101-1/+1
|
* Eliminate some warningsGregory Nutt2014-03-261-0/+4
|
* Fix version number display in NSH promptGregory Nutt2014-03-231-0/+1
|
* 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
|
* 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-271-0/+11
| | | | prompt is always on a newline
* Should CPU load on each thread in the PS commandGregory Nutt2014-02-272-3/+156
|
* 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-221-2/+2
| | | | buffers. From Bertold Van den Bergh
* Add CONFIG_DEFAULT_SMALL that will select default values for configuration ↵Gregory Nutt2014-02-201-35/+72
| | | | 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-206-33/+59
| | | | configuration option to suppress these costly and mostly useless operations on the pseudo-filesystem
* Nodes in the pseudo-filesystem can now be renamed or moved within the ↵Gregory Nutt2014-02-193-5/+5
| | | | pseduo-filesystem