aboutsummaryrefslogtreecommitdiff
path: root/nuttx
Commit message (Expand)AuthorAgeFilesLines
...
| | * | | Move socket data from TCB to task group structure.patacongo2013-01-2624-412/+136
| | * | | Move stream data from TCB to task group structure.patacongo2013-01-2623-357/+242
| | * | | Fix a recently introduced memory leakpatacongo2013-01-265-51/+75
| | * | | Move file data from TCB to task grouppatacongo2013-01-2622-336/+288
| | * | | Don't keep the parent task's task ID in the child task's TCB. Instead, keep ...patacongo2013-01-2616-217/+926
| | * | | Move environment variables in the task group structurepatacongo2013-01-2533-475/+295
| | * | | Add logic to send SIGCHLD to all members of a task grouppatacongo2013-01-256-5/+161
| | * | | Add logic to keep track of members of a task grouppatacongo2013-01-2510-56/+298
| | * | | Add framework to support task groupspatacongo2013-01-2520-141/+677
| | * | | Fix some compilation errors when child status disabled; new waitpid logic not...patacongo2013-01-255-15/+15
| | * | | Fix some missing logic and inconsistencies in child status logic; Fix a bug i...patacongo2013-01-2410-106/+294
| | * | | Fix poll/select issue reported by Qiangpatacongo2013-01-2415-100/+279
| | * | | Add psock_poll(); Fix some warnings reported by Lorenz Meier; lm4f logic from JPpatacongo2013-01-241-2/+2
| | * | | Add psock_poll(); Fix some warnings reported by Lorenz Meier; lm4f logic from JPpatacongo2013-01-247-45/+77
| | * | | apps/examples/nettest and poll: Complete Kconfig filespatacongo2013-01-244-11/+13
| | * | | Convert configs/olimex-lpc1766stk/nettest to use kconfig-frontendspatacongo2013-01-244-398/+520
* | | | | Disable signals again, it is too early (needs NuttX merge)Lorenz Meier2013-02-171-1/+1
* | | | | Made timeouts configurable, untestedLorenz Meier2013-02-162-2/+3
* | | | | px4io: enable signalsAndrew Tridgell2013-02-161-1/+1
* | | | | Merge branch 'master' of github.com:PX4/Firmware into px4io-i2cLorenz Meier2013-02-161-1/+1
|\ \ \ \ \ | | |_|/ / | |/| | |
| * | | | Disabled old-style gps interface, enabled GPS driverLorenz Meier2013-02-041-1/+1
| |/ / /
* | | | Merge branch 'master' of github.com:PX4/Firmware into px4io-i2cLorenz Meier2013-02-0310-0/+1796
|\| | |
| * | | Add back some (currently unused) files lost in an earlier NuttX mergepx4dev2013-01-3010-0/+1796
* | | | Merge branch 'master' into px4io-i2cpx4dev2013-01-282-0/+7
|\| | |
| * | | Move the config param to a more sane location (I hope).Simon Wilks2013-01-251-3/+6
| * | | Enable single wire via ioctl calls and pull the battery voltage from the batt...Simon Wilks2013-01-251-1/+1
| * | | Merge branch 'ioctl' into hottSimon Wilks2013-01-242-1/+4
| |\ \ \
| | * \ \ Merged and tested against the single wire implementation added to Nuttx r5554.Simon Wilks2013-01-24214-1712/+15962
| | |\ \ \ | | | | |/ | | | |/|
| | * | | MergedSimon Wilks2013-01-22529-3729/+24927
| | |\ \ \
| | * | | | We aren't using RS485 but single wire.Simon Wilks2013-01-212-4/+10
| | * | | | MergedSimon Wilks2013-01-1114-43/+192
| | |\ \ \ \
| | * | | | | Push single wire operations into stm32_serial.c and added a test to verify Ho...Simon Wilks2012-12-062-0/+22
| * | | | | | Merge remote-tracking branch 'upstream/master' into hottSimon Wilks2013-01-24683-5624/+41500
| |\ \ \ \ \ \ | | | |_|_|/ / | | |/| | | |
| * | | | | | Merge remote-tracking branch 'upstream/master' into hottSimon Wilks2012-11-213-5/+4
| |\ \ \ \ \ \
| * | | | | | | Setup skeleton code (basic daemon).Simon Wilks2012-11-141-0/+1
* | | | | | | | Merge branch 'master' into px4io-i2cpx4dev2013-01-2581-667/+3126
|\ \ \ \ \ \ \ \ | | |_|/ / / / / | |/| | | | | |
| * | | | | | | Trivial compile fix.px4dev2013-01-241-1/+1
| * | | | | | | Merge Nuttx r5554px4dev2013-01-2376-665/+3024
| |\ \ \ \ \ \ \ | | | |_|_|_|_|/ | | |/| | | | |
| | * | | | | | Add option to used keyboard CODEC in apps/examples/keypadtestpatacongo2013-01-233-45/+85
| | * | | | | | Add logic to retain child task exit status if so configuredpatacongo2013-01-2323-213/+836
| | * | | | | | Add single-wire UART support to STM32 serial driverpatacongo2013-01-234-11/+62
| | * | | | | | Missed changed from last lpc1788 check-inpatacongo2013-01-231-3/+3
| | * | | | | | Add lpc178x_iocon.h from Rommel Marcelopatacongo2013-01-222-1/+153
| | * | | | | | lpc1788 update from Rommel Marcelo; Beginning of logic to retain child exit s...patacongo2013-01-2212-828/+1331
| | * | | | | | Use of BASEPRI to control ARM interrupts is now functionalpatacongo2013-01-227-98/+115
| | * | | | | | More logic to use BASEPRI to control interrupts -- still doesn't workpatacongo2013-01-2223-60/+159
| | * | | | | | Add option to use BASEPRI instead of PRIMASK to disable interrupts in all ARM...patacongo2013-01-2224-979/+1399
| | * | | | | | Beginning of support for LCD1602patacongo2013-01-216-4/+508
| | * | | | | | LM3S OpenOCD configuration from Jose Pablo Carballopatacongo2013-01-217-27/+311
| | * | | | | | poll was not checking if the socket was still connectedpatacongo2013-01-211-11/+27