summaryrefslogtreecommitdiff
path: root/apps/examples
Commit message (Collapse)AuthorAgeFilesLines
* Only one install target per MakefileGregory Nutt2014-09-0643-172/+86
|
* Use more standard *argv[] instead easier **argvGregory Nutt2014-09-0671-71/+71
|
* With kernel build, entry point to all tasks is main, not some xyz_mainGregory Nutt2014-09-0671-0/+288
|
* Fix clean and distclean targets. Back out a few too many changes made by sedGregory Nutt2014-09-0624-29/+5
|
* Add an install target to all makefiles. For the import build, the top-level ↵Gregory Nutt2014-09-0696-5/+257
| | | | Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished)
* Need to add CRT0 to every Makefile in apps/examples/testsGregory Nutt2014-09-059-34/+33
|
* Provide library names and paths in apps/import/Make.defsGregory Nutt2014-09-059-79/+61
|
* Copy more logic from nuttx/tools/Config.mk into the Make.defs file. Plus ↵Gregory Nutt2014-09-051-1/+2
| | | | trivial related changes
* Remove final traces of the 8015 from the NuttX source treeGregory Nutt2014-09-018-18/+8
|
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-2914-18/+23
| | | | new CONFIG_BUILD_KERNEL
* The ELF test/example has been extended so the individual ELF test programs ↵Gregory Nutt2014-08-2910-23/+319
| | | | can link against the SYSCALL library (if it is available) or against the C library to eliminate or minimize the need for symbol tables (2014-8-29).
* Change all time conversions. Yech. New timer units in microseconds breaks ↵Gregory Nutt2014-08-072-2/+2
| | | | all existing logic that used milliseconds in the conversions. Something likely got broken doing this, probably because I confused a MSEC2TICK conversion with a TICK2MSEC conversion. Also, the tickless OS no appears fully functional and passes the OS test on the simulator with no errors
* Remove CONFIG_DISABLE_CLOCKGregory Nutt2014-08-072-10/+5
|
* Rename CONFIG_NX_MOUSE to CONFIG_NX_INPUT, then add CONFIG_NX_XYINPUT_MOUSE ↵Gregory Nutt2014-07-169-30/+30
| | | | and CONFIG_XYINPUT_TOUCHSCREEN
* Fix netutils configuration issues: CONFIG_NETUTILS_HTTPD_SENDFILE was ↵Gregory Nutt2014-07-111-2/+2
| | | | missing from Kconfig; CONFIG_NET_HAVE_SOLINGER should be CONFIG_NET_SOLINGER; Type of CONFIG_NET_HTTPD_MAXPATH was wrong in Kconfig file. From Max
* Fix some recurring typos: postion->position, *atino->*ationGregory Nutt2014-07-082-3/+3
|
* SAMA5D4-EK: Add the button test to the NSH configurationGregory Nutt2014-07-071-0/+1
|
* Fix some cloned errors in SAM GPIO interrupt setupGregory Nutt2014-07-071-1/+1
|
* NET: emoved all includes of uip.h; added includes of ip.h wherever needed. ↵Gregory Nutt2014-07-0424-7/+57
| | | | 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-048-9/+0
|
* apps/examples: Put examples in alphabetical orderGregory Nutt2014-07-031-4/+4
|
* Rename apps/examples/uip to apps/examples/webserverGregory Nutt2014-07-0321-84/+84
|
* Remove a warningGregory Nutt2014-07-031-1/+2
|
* NET: Rename functions in apps/netutils/netlib to begin with netlib_ vs uip_Gregory Nutt2014-07-0216-76/+76
|
* NET: Rename uiplib/UIPLIB to netlib/NETLIBGregory Nutt2014-07-0220-34/+34
|
* NET: Rename uip_ipaddr* to net_ipaddr*Gregory Nutt2014-06-292-2/+2
|
* Rename uip_driver_s net_driver_sGregory Nutt2014-06-271-1/+1
|
* Add support for a network device IOCTL to access PHY registers. Ioctls only ↵Gregory Nutt2014-06-271-1/+0
| | | | implemented for STM32. From Lazlo
* NET: Move statistcs from uip.h to new netstats.h to remove nasty circular ↵Gregory Nutt2014-06-261-2/+3
| | | | inclusion problem.
* Move the remaining files from include/nuttx/net/uip to include/nuttx/net; ↵Gregory Nutt2014-06-248-8/+8
| | | | 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
|
* Move include/nuttx/net/uipopt.h to include/nuttx/net/netconfig.hGregory Nutt2014-06-241-1/+1
|
* Raw sockets: Additional changes for error-free/warning-free compilationGregory Nutt2014-06-121-0/+11
|
* First check-in of Lazlo's PF_PACKET 'raw' socket implementationGregory Nutt2014-06-127-9/+399
|
* Move include/nuttx/net/uip/uip-arch.h to include/nuttx/net/arp.h; rename all ↵Gregory Nutt2014-05-305-5/+5
| | | | uip_arp_ functions to arp_
* snprintf(): If size is zero, then snprintf() should return the size of the ↵Gregory Nutt2014-05-301-1/+0
| | | | required buffer without writing anyting. From Sami Pelkonen
* Costmetic changes to memory manager debug outputGregory Nutt2014-05-241-1/+12
|
* Change all variadic macros to C99 styleGregory Nutt2014-05-223-12/+12
|
* 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-093-50/+32
| | | | format is functional except that there are still some modularity and kernel build issues that need to be addressed.
* Add a ROMFS file system for testing the P-Code binary formatGregory Nutt2014-05-082-5/+2
|
* Update configuration an make logic in order to select that the serial ↵Gregory Nutt2014-04-302-2/+14
| | | | blaster task priority and stack size. From Bob Doiron
* 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-283-34/+34
|
* 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-223-13/+14
|
* examples/serialrx added by Bob DoisonGregory Nutt2014-04-228-14/+25
|