summaryrefslogtreecommitdiff
path: root/apps
Commit message (Collapse)AuthorAgeFilesLines
* Change all variadic macros to C99 styleGregory Nutt2014-05-2210-35/+35
|
* Move prun from interpreters/ to system/; And an NSH built-in appliation ↵Gregory Nutt2014-05-096-3/+241
| | | | that can be used to execute P-Code files from the NSH command line
* Move P-Code execution logic from interpreters/prun to system/prunGregory Nutt2014-05-0911-14/+24
|
* Make sure apps/examples/pashello still builds; update comments; refresh ↵Gregory Nutt2014-05-091-0/+2
| | | | configurations
* Create P-Code execution helper in apps/interpreters/prun; The P-Code binary ↵Gregory Nutt2014-05-0915-51/+487
| | | | format is functional except that there are still some modularity and kernel build issues that need to be addressed.
* P-code BINFMT: Add logic to pass information from the binfmt logic to the ↵Gregory Nutt2014-05-081-1/+4
| | | | P-code interpreter. This includes some extension to the binfmt interfaces.
* Update the displayed I2C on each get iteraction (not the same starting ↵Gregory Nutt2014-05-082-1/+5
| | | | address). From Ryan VanSickle
* Add a ROMFS file system for testing the P-Code binary formatGregory Nutt2014-05-082-5/+2
|
* The alternate console device CONFIG_NSH_CONDEV must not be defined ↵Gregory Nutt2014-05-057-36/+92
| | | | 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
* Update configuration an make logic in order to select that the serial ↵Gregory Nutt2014-04-303-2/+18
| | | | blaster task priority and stack size. From Bob Doiron
* Updated changelogs and release notes in preparation for the 7.2 release. ↵Gregory Nutt2014-04-281-2/+3
| | | | Still need to do a little more before the release
* Change from last commit was still in the editorGregory Nutt2014-04-281-3/+3
|
* apps/examples/telnetd: Naming confusion fixed: shell vs telnetdGregory Nutt2014-04-284-34/+38
|
* Minor/cosmetic changesGregory Nutt2014-04-271-15/+15
|
* SAM4S Xplained Pro fixups from Bob DOIRON after the last big set of commitsGregory Nutt2014-04-221-0/+27
|
* Fix Bob's name in as many places as possible; Make sure that Bob is an ↵Gregory Nutt2014-04-223-3/+6
| | | | author in as many files as I can think of (might be missing a few)
* Fix a error introduce in a recent commitGregory Nutt2014-04-221-1/+1
|
* Misc changes to get a clean compilation after incorporating all of Bob ↵Gregory Nutt2014-04-225-8/+35
| | | | Doison's changes
* Updates to the serialrx example from Bob DoisonGregory Nutt2014-04-224-14/+15
|
* examples/serialrx added by Bob DoisonGregory Nutt2014-04-229-16/+27
|
* examples/serialrx added by Bob DoisonGregory Nutt2014-04-225-0/+250
|
* examples/cpuhog and serialblaster from Bob DoironGregory Nutt2014-04-2213-13/+550
|
* CONFIG_NSH_CONDEV is type string, not boolGregory Nutt2014-04-211-1/+1
|
* NSH library: malloc/free IOBUFFER instead of using stackGregory Nutt2014-04-213-3/+21
|
* Remove an STM32 dependencyGregory Nutt2014-04-212-6/+4
|
* nxplayer: Complilation failure in one configuration reported by Manuel StühnGregory Nutt2014-04-212-1/+4
|
* zkit-arm-1769: Refreshed all configurationsGregory Nutt2014-04-191-1/+1
|
* Remove some warnings introduced with the last changeGregory Nutt2014-04-141-1/+3
|
* examples/touchscreen: Add a configuration option to indicate that there is ↵Gregory Nutt2014-04-143-1/+29
| | | | or is not an architecture-specific initialization function
* More trailing whilespace removalGregory Nutt2014-04-13285-769/+769
|
* Cosmetic changes for coding style; removal of dangling spaces at the end of ↵Gregory Nutt2014-04-131-1/+13
| | | | lines
* Make sure that there is one space after forGregory Nutt2014-04-1210-15/+15
|
* Make sure that there is one space between while and conditionGregory Nutt2014-04-129-13/+18
|
* Make sure that there is one space between if and conditionGregory Nutt2014-04-124-7/+8
|
* Corrections to the NTP client from Manuel StuehnGregory Nutt2014-04-122-6/+8
|
* Accidentally checked in a .built fileGregory Nutt2014-04-111-0/+0
|
* Breadk dnsclient.c file into three smaller files: dns_resolver.c, ↵Gregory Nutt2014-04-115-133/+256
| | | | dns_socket.c, and dns_gethostip.c
* 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