summaryrefslogtreecommitdiff
path: root/apps/examples
Commit message (Collapse)AuthorAgeFilesLines
* OS test: Improved error checking for sem_timedwait() from Juha NiskanenGregory Nutt2015-02-201-12/+36
|
* apps/examples/ostest: Sample errno on returns from sem_timedwait(). ↵Gregory Nutt2015-02-191-5/+8
| | | | Otherwise, intervening system calls my change the value of the reported errno. Noted by Juha Niskanen
* Suffer the consequences of moving struct timeval to its correct locationGregory Nutt2015-02-154-0/+5
|
* Fix errors in range of IPv6 netmask range in Kconfig filesGregory Nutt2015-02-052-18/+18
|
* ICMPv6: Some initial bugfix from first tests of the ICMPv6 ↵Gregory Nutt2015-02-032-2/+2
| | | | auto-configuration logic. so far so good but a lot more testing is needed
* ICMPv6: This completes coding of the ICMPv6 auto-configuration feature. It ↵Gregory Nutt2015-02-034-17/+27
| | | | is not yet functional
* Add netlib and application hooks for ICMPv6 auto-configuration (still incompleteGregory Nutt2015-02-032-2/+20
|
* drivers/ramdisk.c and include/nuttx/fs/ramdisk.h: Add logic to dispose of ↵Gregory Nutt2015-02-011-2/+2
| | | | the drvier and RAM buffer when the RAM disk has been unlinked and all open references to the RAM disk have been closed. Add new parameters to romdisk() to specify what should be done with the RAM/ROM buffer -- Should it be freed or not? Changed all calls to ramdisk() to use these new parameters.
* Unix domain/FIFOs: Fix a race condition between FIFO buffer operations and ↵Gregory Nutt2015-01-302-9/+9
| | | | the opening and closing of FIFOs which necessary when the FIFOs are used to support Unix domain, datagram sockets. The default policy is the deallocate FIFO buffering when the last client closes the pipe. When when used for datagram communicatinos, packets left in the FIFO will be lost. Some like UDP read-ahead is needed: The buffered data in the FIFO needs to be retained until the reader gets a chance to re-open the FIFO. Added an ioctl (PIPEIOC_POLICY) to control the buffer policy. Default (0) is the legacy behavior; Unix domain datagram logic sets the alternative policy so that the packet data persists after the FIFO is closed.
* apps/ustream and udgram: Change default FIFO path to /dev/fifoGregory Nutt2015-01-303-4/+4
|
* Cosmetic updates to commentsGregory Nutt2015-01-291-2/+2
|
* Unix domain: Various fixes to get apps/examplex/udgram workingGregory Nutt2015-01-291-6/+0
|
* Reorder statements: printf clobbers errno valueGregory Nutt2015-01-291-1/+2
|
* apps/examples/udgram: Add option to configure program name and task propertiesGregory Nutt2015-01-292-8/+75
|
* Minor fixes after initial tests with apps/examples/udgramGregory Nutt2015-01-281-17/+7
|
* apps/examples/udgram: Improve some size tests and improve error reportingGregory Nutt2015-01-281-3/+16
|
* apps/examples/udgram: Add a simple test of Unix domain datagram socketsGregory Nutt2015-01-2811-5/+643
|
* Unix domain: More fixes. With these changes, apps/examples/ustream worksGregory Nutt2015-01-282-10/+5
|
* apps/examples/ustream: Fix error in MakefileGregory Nutt2015-01-271-1/+1
|
* Add a simple test of the Unix domain socketsGregory Nutt2015-01-2710-2/+683
|
* Add to .depend dependencies to eliminate an error at dependency generation timeGregory Nutt2015-01-232-2/+2
|
* Add config.h to .gitignoreGregory Nutt2015-01-231-0/+1
|
* apps/examples/udp: The UDP test example has been extend to support IPv6 ↵Gregory Nutt2015-01-229-44/+577
| | | | domain sockets
* Merge remote-tracking branch 'origin/master' into ipv6Gregory Nutt2015-01-211-5/+5
|\
| * Should fix some errors reported by TravisGregory Nutt2015-01-201-5/+5
| |
* | apps/examples/nettest: Fix address initializaiton, HTONS not HTNOLGregory Nutt2015-01-211-8/+8
|/
* apps/examples/nettest: Update test so that it can be used to test IPv6 TCP ↵Gregory Nutt2015-01-208-24/+545
| | | | sockets
* Rename IPv4 netlib functions and files to make room in the namespace for ↵Gregory Nutt2015-01-1816-69/+69
| | | | corresponding IPv6 functions and files
* apps/examples/udp/Kconfig: Default setting is backwardGregory Nutt2015-01-172-3/+3
|
* Tiva Timer: Timer test must attach a timer handler or the timer is stopped ↵Gregory Nutt2015-01-131-0/+38
| | | | at the first interrupt
* apps/exemples/timer: Add a trivial test of the timer driverGregory Nutt2015-01-138-3/+444
|
* stm32: update description and code documentation. Also fixes a few code ↵Gregory Nutt2014-12-291-4/+4
| | | | | | formattings. Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* STM32 LTDC: Move ltdc.h from include/nuttx/video to arch/arm/include/stm32; ↵Gregory Nutt2014-12-191-4/+7
| | | | Trivial updates after general review
* example: add ltdc test exampleGregory Nutt2014-12-198-8/+2203
| | | | Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* Traveler: Add support for analog joystickGregory Nutt2014-12-141-2/+2
|
* apps/examples/ostest: Missing prototype for nsem_test()Gregory Nutt2014-12-061-0/+4
|
* Add graphic device initialize logic (incomplete)Gregory Nutt2014-12-032-2/+2
|
* SAMA5D3 Xplained: A few fixes for the AJoystick driver (still not working)Gregory Nutt2014-12-031-10/+10
|
* Add an analog joystick test/exampleGregory Nutt2014-12-038-8/+669
|
* Fixes to get the discrete joystick driver and test workingGregory Nutt2014-11-281-0/+4
|
* apps/examples/djoystick: Add a test of the discreate joystick driverGregory Nutt2014-11-288-14/+461
|
* Remove some debug output that was accidentally left in a preceding commitGregory Nutt2014-11-281-1/+0
|
* fix romfs example builtin app registry issue. From Librae.Gregory Nutt2014-11-271-1/+14
|
* More ccpcheck-related fixesGregory Nutt2014-11-251-1/+1
|
* Fixes for more cppcheck complaints. Mostly cosmeticGregory Nutt2014-11-2514-33/+44
|
* More fixes to issues noted by cppcheckGregory Nutt2014-11-2510-25/+15
|
* Fixes for more complaints from cppcheckGregory Nutt2014-11-2510-73/+77
|
* Fixes for more complaints from cppcheckGregory Nutt2014-11-255-94/+41
|
* Fix routing of muli-network UDP packetsGregory Nutt2014-11-211-2/+1
|
* apps/examples/bridge: Lots of fixes. I think it is working although I have ↵Gregory Nutt2014-11-216-61/+104
| | | | still have host firewall issues in testing