summaryrefslogtreecommitdiff
path: root/apps/examples/usbterm
Commit message (Collapse)AuthorAgeFilesLines
* Remove non-portable references to syslog from apps/examplesGregory Nutt2014-10-082-37/+17
|
* MAINOBJ needs to be added to object list in many MakefileGregory Nutt2014-09-111-1/+1
|
* Changes to many Makefiles. For kernel buil object containing main cannot go ↵Gregory Nutt2014-09-071-14/+15
| | | | into library because of name collisions. The object file must be handled as a special case in every Makefile
* Determine the main object name from the main source name in every kernel ↵Gregory Nutt2014-09-071-0/+1
| | | | build Makefile
* Add an nm command after every kernel build link to show if there are any ↵Gregory Nutt2014-09-071-0/+1
| | | | undefined symbols
* Add the main object to the list objects to link in every kernel build link ↵Gregory Nutt2014-09-071-1/+1
| | | | command
* Add the main object to the dependencies for the kernel buildGregory Nutt2014-09-071-1/+1
|
* If now a kernel build, then add the main object in with all of the restGregory Nutt2014-09-071-0/+4
|
* Update apps/examples/helloxx/MakefileGregory Nutt2014-09-071-1/+1
|
* Customize the program name in the generic setup that was added to each ↵Gregory Nutt2014-09-061-1/+1
| | | | makefile that installs a program
* Add generic setup logic to every Makefile that installs a program. Each ↵Gregory Nutt2014-09-061-0/+9
| | | | will need customization
* Fix all install targetsGregory Nutt2014-09-061-4/+4
|
* Oops wrong elseGregory Nutt2014-09-061-1/+1
|
* Add missing else from last big changeGregory Nutt2014-09-061-0/+1
|
* Add program installation for CONFIG_BUILD_KERNEL in all Makefiles that build ↵Gregory Nutt2014-09-061-0/+9
| | | | a main()
* Only one install target per MakefileGregory Nutt2014-09-061-4/+2
|
* Use more standard *argv[] instead easier **argvGregory Nutt2014-09-061-1/+1
|
* With kernel build, entry point to all tasks is main, not some xyz_mainGregory Nutt2014-09-061-0/+4
|
* Add an install target to all makefiles. For the import build, the top-level ↵Gregory Nutt2014-09-061-0/+4
| | | | Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished)
* More trailing whilespace removalGregory Nutt2014-04-132-2/+2
|
* More changes to reduce complaints from CppCheck. Some latent bugs fixes, ↵Gregory Nutt2014-02-101-1/+1
| | | | but probably some new typos introduced
* Changes to get PX4 config to build. Also some warning removalGregory Nutt2014-01-141-2/+2
|
* Add example configurations that enable USB trace options must have Kconfig ↵Gregory Nutt2013-09-021-0/+51
| | | | options to select the trace output
* Remove CONFIG_XYZ_BUILTIN configurations, replace with the single ↵Gregory Nutt2013-06-121-2/+2
| | | | CONFIG_NSH_BUILTIN_APPS. Add SAM3/4 sam_periphclks.h which is just a header file that includes the right header file. Misc SAM3U-EK cleanup
* .dSYM only needs to be in the same .gitignore files as .exeGregory Nutt2013-05-301-1/+0
|
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-17/+12
| | | | Add some missing .gitignore files
* Clone svn:ignore directory atributed to .gitignore filesGregory Nutt2013-04-041-0/+17
|
* Fix a readline bug. If a NUL is received, it would return end-of-filepatacongo2013-02-101-5/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5633 42af7a65-404d-4744-a932-0658087f49c3
* Add syslog.h; rename lib_rawprintf() to syslog()patacongo2013-01-281-4/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5578 42af7a65-404d-4744-a932-0658087f49c3
* Some fixes to apps/builtin/registry need to handle some additional casespatacongo2012-12-241-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5456 42af7a65-404d-4744-a932-0658087f49c3
* Remove .context kludge from apps/ directorypatacongo2012-12-231-4/+5
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5455 42af7a65-404d-4744-a932-0658087f49c3
* Missing comma in EVERY DELFILE/DELDIR macro call in every Makefilepatacongo2012-11-201-3/+3
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5373 42af7a65-404d-4744-a932-0658087f49c3
* Most of the changes needed to support Windows native clean; distclean is has ↵patacongo2012-11-171-2/+3
| | | | | | a problem git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5367 42af7a65-404d-4744-a932-0658087f49c3
* Move some (hopefully) un-necessary quotes in Makefiles for Mikepatacongo2012-11-151-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5356 42af7a65-404d-4744-a932-0658087f49c3
* Changes to get a clean ez80 build using the ZDS 5.1.1 toolchainpatacongo2012-11-121-2/+6
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5341 42af7a65-404d-4744-a932-0658087f49c3
* Correct some issues with last check-in; ez80 still does not buildpatacongo2012-11-111-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5339 42af7a65-404d-4744-a932-0658087f49c3
* Partial change: Removing bash ARCHIVE looppatacongo2012-11-111-3/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5336 42af7a65-404d-4744-a932-0658087f49c3
* Add configurable application entry pointpatacongo2012-08-301-25/+17
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5070 42af7a65-404d-4744-a932-0658087f49c3
* update Kconfig filespatacongo2012-04-131-0/+9
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4598 42af7a65-404d-4744-a932-0658087f49c3
* Add kconfig documentationpatacongo2012-04-061-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4567 42af7a65-404d-4744-a932-0658087f49c3
* Adding skeleton Kconfig files (part 3 of 2)patacongo2012-04-061-0/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4566 42af7a65-404d-4744-a932-0658087f49c3
* Add support for use of a USB serial device to provide NSH console I/O. ↵patacongo2012-03-061-0/+4
| | | | | | Verified on the Sure PIPIC32MX board git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4458 42af7a65-404d-4744-a932-0658087f49c3
* The PIC32 USB device driver is (finally) functionalpatacongo2012-03-061-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4457 42af7a65-404d-4744-a932-0658087f49c3
* Several fixes to the PIC32 USB device OUT path logicpatacongo2012-03-042-5/+29
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4451 42af7a65-404d-4744-a932-0658087f49c3
* A little more work (but not much progress) on the PIC32 USB device driverpatacongo2012-02-292-4/+10
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4440 42af7a65-404d-4744-a932-0658087f49c3
* Extend CDC/ACM driver so that can be connected/disconnected under software ↵patacongo2012-02-282-4/+4
| | | | | | control; Add new NSH commands sercon and serdis that will connect and disconnect the CDC/ACM serial device git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4436 42af7a65-404d-4744-a932-0658087f49c3
* Use realine instead of fgets in several other placespatacongo2012-02-011-2/+27
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4357 42af7a65-404d-4744-a932-0658087f49c3
* More name changes: USBSER->PL2303 CDCSER->CDCACMpatacongo2012-01-251-4/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4337 42af7a65-404d-4744-a932-0658087f49c3
* Prep for 6.14 releasenuttx-6.14patacongo2012-01-151-4/+4
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4301 42af7a65-404d-4744-a932-0658087f49c3
* STM32 GPIO fix; Fixes for PIC32 USB term examplepatacongo2011-12-302-4/+47
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4241 42af7a65-404d-4744-a932-0658087f49c3