summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Remove support for obsolete PIC32 toolchain configuration namesGregory Nutt2015-02-226-28/+48
|
* Update ChangeLogGregory Nutt2015-02-221-1/+4
|
* PIC32MZ: Add just enough PIC32MZ logic that we can run 'make menuconfig'Gregory Nutt2015-02-2212-160/+1929
|
* Update ChangeLogGregory Nutt2015-02-221-0/+4
|
* Add basic board support for the PIC32MZ (can't build yet of course because ↵Gregory Nutt2015-02-2217-0/+3432
| | | | there is not yet any PIC32MZ support)
* Update ChangeLogGregory Nutt2015-02-211-0/+8
|
* Add path for Pinguino tools. Need to be careful because bin directory has ↵Gregory Nutt2015-02-212-6/+16
| | | | an incompatible make.exe in it
* Fix a typo that prevents building PIC32... How long has that been there?Gregory Nutt2015-02-211-1/+1
|
* Current Pinguino toolchain uses prefix p32 instead of mipsGregory Nutt2015-02-211-1/+2
|
* pic32mx-starterkit: Move scripts to common directory. Pinguino build needs ↵Gregory Nutt2015-02-212-634/+0
| | | | to use a different linker script
* pic32mx-starterkit: Move scripts to common directory. Pinguino build needs ↵Gregory Nutt2015-02-214-4/+670
| | | | to use a different linker script
* Refresh configurationsGregory Nutt2015-02-212-141/+424
|
* Rename pic32-starterkit to pic32mx-starterkit to make room in the namespace ↵Gregory Nutt2015-02-2127-93/+89
| | | | for the pic32mz-starterkit
* STM32: Fix for compilation introduced by last backup RAM change. Not sure ↵Gregory Nutt2015-02-212-0/+6
| | | | it it is correct, be now things do compile
* Fix some minor typos in the uClibc++ install scriptGregory Nutt2015-02-212-4/+4
|
* Oops.. accidentally deleted a line from the ChangeLogGregory Nutt2015-02-211-0/+1
|
* Update ChangeLogGregory Nutt2015-02-211-1/+10
|
* Adds the ability to use the STM32F2 and STM32F4 Battery Backedup SRAM in the ↵Gregory Nutt2015-02-219-1/+1048
| | | | file system. With an option to Save Panic context to one of the files. From David Sidrane.
* Changes to support fully write protecting the backup domain. N.B. ↵Gregory Nutt2015-02-214-23/+130
| | | | stm32_pwr_enablebkp did not account for the delay from enable to the domain being writable. The KISS solution is a up_udelay. A more complex solution would be a negated write test with restore. From David Sidrane.
* Update ChangeLogGregory Nutt2015-02-201-1/+1
|
* Tiva GPIO clean-up by Calvin MaguranisGregory Nutt2015-02-206-225/+83
|
* Update ChangeLogGregory Nutt2015-02-201-0/+3
|
* Tiva: Move GPIIO prototypes out of arch/arm/include/tiva/irq.h to ↵Gregory Nutt2015-02-202-33/+34
| | | | arch/arm/tiva/tiva_gpio.h where they belong
* Update ChagneLogGregory Nutt2015-02-201-1/+2
|
* tm4c123g-launchpad: Add board button interrupt logic. From Calvin MaguranisGregory Nutt2015-02-202-44/+72
|
* Porting Guide: Reorder some paragraphs for a clearer distinction of driver ↵Gregory Nutt2015-02-201-594/+626
| | | | types
* Update porting guide to include some trivial description of the touchscreen ↵Gregory Nutt2015-02-201-28/+61
| | | | controller interfaces
* Update ChangeLogGregory Nutt2015-02-201-0/+4
|