summaryrefslogtreecommitdiff
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Update ChangeLogsGregory Nutt2014-11-161-0/+4
|
* Clarify MTU/BUFSIZE in apps/ README.txt files and DocumentationGregory Nutt2014-11-163-6/+14
|
* Update ChangeLogGregory Nutt2014-11-161-0/+6
|
* NSH USB Console: Add logic to restart the console wait if an error occurs ↵Gregory Nutt2014-11-161-0/+13
| | | | while reading from the console. In USB console startup, the logic must be able to open the USB serial and receive 3 newlines. However, it the USB driver is disconnected or otherwise fails before the 3 newlines are received, the receive loop becomes a killer, infinite loop, CPU hog. Noted by spasbyspas
* Update ChangeLogsGregory Nutt2014-11-151-0/+3
|
* Network: Various fixes for clean compile with both Ethernet and SLIPGregory Nutt2014-11-154-16/+36
|
* Network: All logic will now handle varialbe length link layer protocol ↵Gregory Nutt2014-11-152-5/+15
| | | | headers within incoming packets. This permits use of multiple network interfaces with differing data links. For example, ETHERNET + SLIP
* Update ChangleLogGregory Nutt2014-11-131-1/+5
|
* Right now if you make a dns request before the dns address it set you will ↵Gregory Nutt2014-11-131-6/+0
| | | | get an assertion. The state of the IP setting is not something the application should be aware of, it should only be concerned with whether or not the name was resolved. From Brennan Ashton.
* Update changelogGregory Nutt2014-11-131-0/+6
|
* Remove use of CONFIG_MASK_TASK_ARGS from the I2C toolGregory Nutt2014-11-131-4/+5
|
* Remove use of CONFIG_MASK_TASK_ARGS from NSHGregory Nutt2014-11-132-11/+1
|
* Remove use of CONFIG_MAX_TASK_ARGS from examples/thttpdGregory Nutt2014-11-131-3/+2
|
* Emit a warning if number of arguments to builtin or file app can be truncatedGregory Nutt2014-11-121-0/+6
|
* Rename all C files in apps/interpreters/bas to begin with bas_ in order to ↵Gregory Nutt2014-11-1128-352/+347
| | | | avoid future name collisions in libapps.a
* BAS: Home cursor after clearing screenGregory Nutt2014-11-113-4/+3
|
* Update ChangeLogsGregory Nutt2014-11-101-0/+2
|
* BAS: Add support for color commandGregory Nutt2014-11-104-7/+95
|
* Remove circular dependins in the Kconfig files. Makes select of ↵Gregory Nutt2014-11-101-3/+4
| | | | apps/examples/bastest a little more difficult
* BAS: output a new line when terminating to separate the last BAS output from ↵Gregory Nutt2014-11-092-1/+13
| | | | the NSH prompt
* BAS: A few more fixes to the testGregory Nutt2014-11-092-3/+9
|
* BAS: Misc changes to test filesGregory Nutt2014-11-095-343/+382
|
* BAS: Accept either BS or DEL as the backspace charactgerGregory Nutt2014-11-091-1/+12
|
* BAS: More name compatibility changesGregory Nutt2014-11-085-388/+388
|
* More global variable name changes for NuttX coding standards compatibility. ↵Gregory Nutt2014-11-085-27/+36
| | | | Make sure that g_bas_end is initially false
* BAS: Fix another case were allocated pointer not being nullified and, hence, ↵Gregory Nutt2014-11-083-1479/+1485
| | | | crashing the next time referenced after restarting BAS. Also bring even more global varialbles and type names into NuttX coding standard
* Need to nullify a pointer when BAS exits so that it is in the right state on ↵Gregory Nutt2014-11-082-207/+214
| | | | restart. Also bring a few global variables into the NuttX naming convention
* Should include termios.hGregory Nutt2014-11-081-0/+1
|
* CosmeticGregory Nutt2014-11-082-6/+5
|
* Auto select ROMFS if BASTEST is selectedGregory Nutt2014-11-081-0/+1
|
* token.l should use nuttx/config.h not config.hGregory Nutt2014-11-071-1/+1
|
* Update ChangeLogGregory Nutt2014-11-071-0/+6
|
* BAS: Fix some build errors wtih apps/examples/bastestGregory Nutt2014-11-075-13/+32
|
* BAS: Rename examples/bas to examples/bastest. Hook into build and ↵Gregory Nutt2014-11-0761-6/+388
| | | | configuration system. Finish ROMFS logic
* BAS: Convert all BAS text scripts to BASIC filesGregory Nutt2014-11-0753-1612/+50
|
* BAS: Move test files from apps/interpreter/bas to apps/examples/basGregory Nutt2014-11-0753-0/+1577
|
* apps/interpreters/bas: Remove runbas.inGregory Nutt2014-11-071-3/+0
|
* BAS: Needs CONFIG_LIBC_FLOATINGPOINTGregory Nutt2014-11-073-0/+3
|
* Fix backspace logic which was accidentally removed; Add some VT100 supportGregory Nutt2014-11-075-11/+579
|
* BAS: Add logic to handle serial consoles that end lines with CR, LF, CR&LF, ↵Gregory Nutt2014-11-061-6/+27
| | | | or CR|LF
* BAS: Support configurable stacksize and priority. Default stacksize boosted ↵Gregory Nutt2014-11-062-3/+18
| | | | to 4096
* BAS: Fix a GCC specific error. Type of enums converted to int when passed ↵Gregory Nutt2014-11-061-131/+134
| | | | to ... as variable argument
* Fix yet-another-typo in previous set of changesGregory Nutt2014-11-061-1/+1
|
* Fix typo in BAS KconfigGregory Nutt2014-11-061-1/+1
|
* Recovering from GIT chaosGregory Nutt2014-11-061-18/+31
|
* BAS: Conditional compile out use of ftruncate()Gregory Nutt2014-11-061-31/+23
|
* BAS: Experimenta change -- ignore carriage returns in CRLF sequenceGregory Nutt2014-11-061-23/+31
|
* BAS: Conditional compile out use of ftruncate()Gregory Nutt2014-11-062-0/+12
|
* BAS: Use waitpid() instead of wait() which is not supprted by NuttXGregory Nutt2014-11-061-4/+9
|
* BAS: Now uses tmpnam() instead of mytmpnam()Gregory Nutt2014-11-051-1/+3
|