summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Port of basic functionalities to Kinetis K20 familykinetis-k20/nuttx_next-oldJakob Odersky2015-02-289-7/+536
|
* Add some definitions expected by NFS. Noted by Orbital FoxGregory Nutt2015-02-251-0/+2
|
* Fix NFS compile problem with CONFIG_NFS_STATISTICS=yGregory Nutt2015-02-251-1/+1
|
* Add some Kconfig dependencies to reduce possibility of bad configurations. ↵Gregory Nutt2015-02-252-1/+2
| | | | Suggested by OrbitalFox
* netinet/in.h: Add some IPv6 macrosGregory Nutt2015-02-251-0/+22
|
* SAM4CM free-running time: Change overflow type from uint16 to uint32. From ↵Gregory Nutt2015-02-252-2/+2
| | | | Max Neklyudov.
* Update ChangeLogGregory Nutt2015-02-251-0/+3
|
* Extend the fd_set type definition so that it can handle more than 32 ↵Gregory Nutt2015-02-251-17/+26
| | | | descriptors (if so configured). From Max Neklyudov
* Eliminate some warningsGregory Nutt2015-02-253-3/+2
|
* Update ChangeLogGregory Nutt2015-02-251-1/+4
|
* Fix places where the errno value was being overwritten by subsequent actions ↵Gregory Nutt2015-02-252-10/+40
| | | | so that the returned errno value was incorrect. From Max Neklyudov.
* Update ChangeLogGregory Nutt2015-02-251-0/+4
|
* When an RTC is used, clock_systimespec() must subtract the basetime from the ↵Gregory Nutt2015-02-252-4/+44
| | | | RTC time
* Refresh configurationGregory Nutt2015-02-253-20/+59
|
* Update ChangeLogGregory Nutt2015-02-241-0/+2
|
* Fix PTHREAD_COND_INITIALIZERGregory Nutt2015-02-241-1/+1
|
* PIC32MZ: Add serial driverGregory Nutt2015-02-244-21/+1334
|
* PIC32MZ: Add low level UART supportGregory Nutt2015-02-244-17/+392
|
* PIC32MZ: Add UART register definition header fileGregory Nutt2015-02-245-11/+277
|
* PIC32MZ: Add error exception handling and interrupt decode logicGregory Nutt2015-02-243-1/+399
|
* PIC32MZ: Add support for a timer interruptGregory Nutt2015-02-247-4/+534
|
* PIC32MZ: Add interrupt controller supportGregory Nutt2015-02-245-12/+458
|
* PIC32MZ: Add interrupt controller register definitionsGregory Nutt2015-02-244-3/+1266
|
* PIC32MX: Standardize of naming in commentsGregory Nutt2015-02-2434-34/+34
|
* PIC32MZ: Add Oscillator header file; Add logic to set up peripheral clocks ↵Gregory Nutt2015-02-246-31/+531
| | | | on reset
* PIC32MZ: Add beginnings of CPU initialization logic. Still some bad logic ↵Gregory Nutt2015-02-247-4/+521
| | | | for setting up peripheral clocking
* Update ChangeLogGregory Nutt2015-02-242-1/+6
|
* fs/aio: Corrrect some backward tests in aio_read() and aio_write(): Socket ↵Gregory Nutt2015-02-243-4/+4
| | | | descriptors have higher numbers than file descriptors. In aio_contain(), Copy u.ptr (void *) when initializing aioc and not the case specific u.aioc_filep. From Michal Ulianko.
* Merge commit '45e0cf1f4a7664974933db2a408ccea6acad4eff'Gregory Nutt2015-02-245-156/+32
|\
| * Fix SSI TX and RX legacy mapping of TM4C1294NCsauttefk2015-02-241-12/+16
| |
| * EK-TM4C1294XL Launchpad has no SD-card socketsauttefk2015-02-242-133/+1
| |
| * Added some Eclipse files to .gitignoresauttefk2015-02-241-0/+4
| |
| * Fixed cut & paste error. corrected naming of Tiva series developementsauttefk2015-02-241-11/+11
| | | | | | boards.
* | Trivial update to some commentsGregory Nutt2015-02-241-2/+2
| |
* | CAN driver: Another Ooops... Cannot save the updated driver open count if ↵Gregory Nutt2015-02-231-3/+9
| | | | | | | | the we fail to initialize the CAN driver, causing the open to fail
* | CAN driver: Oop. unlink method does not exist if there operaions on the ↵Gregory Nutt2015-02-231-3/+5
| | | | | | | | pseudo filesystem are disabled
* | Update ChangeLogGregory Nutt2015-02-231-0/+5
| |
* | in nuttx/drivers/can.c can_open function:Gregory Nutt2015-02-231-13/+16
| | | | | | | | | | | | this line "dev->cd_ocount = tmp;" needs to be moved a few lines down otherwise the open count will only be incremented from 0 to 1. This causes problems when trying to open the can bus from two different tasks. SourceForge Patch #46 from Anonymous
* | PIC32MZ: Fix some PLL setup logicGregory Nutt2015-02-232-9/+9
| |
* | PIC32MZ: Fix an error in the branch target of the hard-coded power up reset ↵Gregory Nutt2015-02-231-11/+19
|/ | | | branch
* PIC32MZ: Most related to start up file a FLASH device configuration setupGregory Nutt2015-02-238-1178/+370
|
* PIC32MZ: Make sure that the microMIPS ISA is selected on all common MIPS32 ↵Gregory Nutt2015-02-234-2/+18
| | | | assembly files when the PIC21MZ is selected
* PIC32MZ: Resolve a PIC32 dependency in the generic MIPS32 codeGregory Nutt2015-02-231-2/+8
|
* Some typos noted by David SidraneGregory Nutt2015-02-232-4/+4
|
* Update ChangeLogGregory Nutt2015-02-231-1/+3
|
* sfrtime: Missing implementation of %C (was being treated as %y). From ↵Gregory Nutt2015-02-231-2/+6
| | | | Freddie Chopin
* Finishes PIC32MZ device configuration definitionsGregory Nutt2015-02-233-92/+325
|
* PIC32MZ: Add memorymap and devcfg header filesGregory Nutt2015-02-226-2/+501
|
* PIC32MZ: Framework for startup function. Still has too much PIC32MX ↵Gregory Nutt2015-02-224-1/+2124
| | | | garbage in it to be credible
* MIPS: Add some build support for the M14K and also for the PIC32MZ Starter ↵Gregory Nutt2015-02-2220-95/+996
| | | | Kit. Still a long way to go