summaryrefslogtreecommitdiff
path: root/nuttx/TODO
Commit message (Collapse)AuthorAgeFilesLines
* Upate .gitignore files. Add .dSYM. Make sure / is present where needed. ↵Gregory Nutt2013-05-301-1/+9
| | | | Add some missing .gitignore files
* Fix STM32F1 and F3 USB device driver. It was not handling NULL packets ↵Gregory Nutt2013-05-291-17/+2
| | | | correctly and it prevent use of the driver with the CDC/ACM class
* Begnning of support for the STM32L15X familyGregory Nutt2013-05-181-0/+14
|
* configs/hymini-stm32v converted nsh and nsh2 configs to use ↵Gregory Nutt2013-05-141-1/+1
| | | | kconfig-frontends tools; Also converted to use the common SSD1289 driver
* Add MTD partition support plus fix some typos in commentsGregory Nutt2013-04-301-1/+1
|
* Convert olimex-lpc17stk configuration to use the kconfig-frontends tools; ↵Gregory Nutt2013-04-121-3/+3
| | | | Fix some compile errors in the pl2303 USB device driver
* Updated to documentation and README filesGregory Nutt2013-04-111-2/+15
|
* LPC17xx GPIO interrupt fixes: lpc17_setintedge() must be atomic. Can't ↵Gregory Nutt2013-04-071-2/+0
| | | | disable interrupts from interrupt handlers because they are automatically re-enabled. Try re-configuring pin instead.
* Add kernel build support for Stellaris, Kinetis, LPC43, and NUC1xx MCUspatacongo2013-03-241-2/+17
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5781 42af7a65-404d-4744-a932-0658087f49c3
* Fix an compilation error recently introduced into stm32_vectors.Spatacongo2013-03-231-1/+13
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5780 42af7a65-404d-4744-a932-0658087f49c3
* Rework of kernel build signal dispatch to user-space handlerspatacongo2013-03-231-67/+80
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5778 42af7a65-404d-4744-a932-0658087f49c3
* Fix a typo that crept into lpc17_allocateheap.c in the recent kernel ↵patacongo2013-03-111-34/+25
| | | | | | allocator changes git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5729 42af7a65-404d-4744-a932-0658087f49c3
* Move all memory manager globals to a structure. Pass structure pointer as a ↵patacongo2013-03-081-5/+62
| | | | | | handler because MM APIs git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5719 42af7a65-404d-4744-a932-0658087f49c3
* Fix some bad syscall dispatching log. This change is not testable until ↵patacongo2013-03-061-19/+5
| | | | | | these is a tested NuttX kernel build. git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5713 42af7a65-404d-4744-a932-0658087f49c3
* Implement user-mode work queuespatacongo2013-03-061-19/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5712 42af7a65-404d-4744-a932-0658087f49c3
* Add a driver for the SST30VF NOR FLASH partspatacongo2013-02-111-1/+49
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5640 42af7a65-404d-4744-a932-0658087f49c3
* Moving pending signals to task group; Logic to recover some MQ resources on ↵patacongo2013-02-051-44/+2
| | | | | | pthread_cacancel or task_delete; Now obeys rules for delivering signals to a process with threads git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5613 42af7a65-404d-4744-a932-0658087f49c3
* Bugfix: whenever a thread it must report the PID of the main task (even it ↵patacongo2013-02-041-1/+43
| | | | | | is not the main task) with SIGCHLD git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5612 42af7a65-404d-4744-a932-0658087f49c3
* Rename _TCB to struct tcb_spatacongo2013-02-041-2/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5610 42af7a65-404d-4744-a932-0658087f49c3
* Move atexit/on_exit data structures to task group; Now callbacks only occur ↵patacongo2013-02-041-18/+6
| | | | | | when the final member of the task group exits git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5607 42af7a65-404d-4744-a932-0658087f49c3
* New interface task_spawn(); exec_builtin() now uses task_spawn(); All argv ↵patacongo2013-02-021-28/+2
| | | | | | types should be char * const * not const char ** git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5598 42af7a65-404d-4744-a932-0658087f49c3
* With the last fixes to the STM32 OTG FS driver, the old poll hack no longer ↵patacongo2013-01-301-6/+1
| | | | | | seems necessary git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5588 42af7a65-404d-4744-a932-0658087f49c3
* Add syslog.h; rename lib_rawprintf() to syslog()patacongo2013-01-281-15/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5578 42af7a65-404d-4744-a932-0658087f49c3
* Add a start hook that can be setup to call a function in the context of a ↵patacongo2013-01-271-2/+15
| | | | | | new thread before the new threads main() has been called. git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5571 42af7a65-404d-4744-a932-0658087f49c3
* Move file data from TCB to task grouppatacongo2013-01-261-21/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5567 42af7a65-404d-4744-a932-0658087f49c3
* Fix some missing logic and inconsistencies in child status logic; Fix a bug ↵patacongo2013-01-241-1/+14
| | | | | | introduced into sigaction() git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5560 42af7a65-404d-4744-a932-0658087f49c3
* Fix poll/select issue reported by Qiangpatacongo2013-01-241-17/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5559 42af7a65-404d-4744-a932-0658087f49c3
* Add option to used keyboard CODEC in apps/examples/keypadtestpatacongo2013-01-231-43/+78
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5554 42af7a65-404d-4744-a932-0658087f49c3
* More logic to use BASEPRI to control interrupts -- still doesn't workpatacongo2013-01-221-22/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5547 42af7a65-404d-4744-a932-0658087f49c3
* Add logic to automatically unload module on exit; Several patches from Mike ↵patacongo2013-01-171-4/+19
| | | | | | Smith git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5528 42af7a65-404d-4744-a932-0658087f49c3
* BINFS now supports open, close, and FIOC_FILENAME ioctlpatacongo2013-01-161-12/+9
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5522 42af7a65-404d-4744-a932-0658087f49c3
* Implement vfork() for the MIPS32 architecturepatacongo2013-01-151-1/+20
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5520 42af7a65-404d-4744-a932-0658087f49c3
* Finish dup logic for open files; fix bug in sigtimedwait(), would return ↵patacongo2013-01-141-22/+2
| | | | | | wrong signo value if the signal was already pending git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5517 42af7a65-404d-4744-a932-0658087f49c3
* Add support for dup2'ing files. Infrastructure and ROMFS done. Still need ↵patacongo2013-01-141-10/+37
| | | | | | FAT, BINFS, NXFFS, and NFS git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5516 42af7a65-404d-4744-a932-0658087f49c3
* Use SIGCHLD with waitpid(); implemented wait() and waitid()patacongo2013-01-131-12/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5515 42af7a65-404d-4744-a932-0658087f49c3
* Documentation updatepatacongo2013-01-111-1/+11
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5512 42af7a65-404d-4744-a932-0658087f49c3
* Fix an error handling bug in the fread logicpatacongo2013-01-111-2/+12
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5511 42af7a65-404d-4744-a932-0658087f49c3
* Add missing support for signal masks to posix_spawn.patacongo2013-01-101-13/+2
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5505 42af7a65-404d-4744-a932-0658087f49c3
* Completes implementation of posix_spawn. Still untested and undocumentedpatacongo2013-01-101-1/+12
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5504 42af7a65-404d-4744-a932-0658087f49c3
* Rename arch/arm/src/lm3s to arch/arm/src/lm to allow a namespace that will ↵patacongo2013-01-081-2/+2
| | | | | | include the lm4f git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5495 42af7a65-404d-4744-a932-0658087f49c3
* Eliminate arch/arc/src/lm3s/lm3s_internal.h; replace with several header filespatacongo2013-01-081-3/+26
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5494 42af7a65-404d-4744-a932-0658087f49c3
* Correct some errors in the LPC17xx SYSCON register bit definitions (from ↵patacongo2013-01-051-1/+1
| | | | | | Rommel Marcello) git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5479 42af7a65-404d-4744-a932-0658087f49c3
* Add tools/configure.c and configure.batpatacongo2013-01-041-15/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5478 42af7a65-404d-4744-a932-0658087f49c3
* Renaming some files in tools/patacongo2013-01-041-29/+55
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5476 42af7a65-404d-4744-a932-0658087f49c3
* Patches from Petteri Aimonen (plus a few other things)patacongo2012-12-211-2/+11
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5448 42af7a65-404d-4744-a932-0658087f49c3
* Fix make export targetpatacongo2012-12-201-1/+43
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5446 42af7a65-404d-4744-a932-0658087f49c3
* Add basic hooks to support a PATH variable (more is needed)patacongo2012-12-161-5/+23
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5440 42af7a65-404d-4744-a932-0658087f49c3
* A few native window build updatespatacongo2012-11-251-9/+16
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5387 42af7a65-404d-4744-a932-0658087f49c3
* A few more Windows native build fixes for eZ80patacongo2012-11-221-17/+11
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5383 42af7a65-404d-4744-a932-0658087f49c3
* move lib/ to libc/ to make room for a true lib/ directory. Rename libraries ↵patacongo2012-11-101-7/+7
| | | | | | to match git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5328 42af7a65-404d-4744-a932-0658087f49c3