summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* stm32: Add infrastructure for dma2d supportGregory Nutt2014-12-194-0/+392
| | | | Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* stm32: Add common stm32 layer description. This defines a common layer ↵Gregory Nutt2014-12-191-14/+69
| | | | | | description for the ltdc and dma2d controller. Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* stm32f429i-disco: update board definition for the ili9341 LCD display. This ↵Gregory Nutt2014-12-191-4/+174
| | | | | | configures all LCD settings for the RGB interface. Also adds a customer LCD display template. Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* stm32: configure PLLSAI clock to enable ltdc register accessGregory Nutt2014-12-191-0/+26
| | | | Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* stm32: Add missing clut register definitionGregory Nutt2014-12-191-0/+2
| | | | Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* stm32: rename CFBLR register name to the name used in the reference manualGregory Nutt2014-12-191-6/+6
| | | | Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* stm32: rename PLLSAI register name to this one in the reference manualGregory Nutt2014-12-191-5/+5
| | | | Signed-off-by: Marco Krahl <ocram.lhark@gmail.com>
* TM4C129X: Add custom system control header file (incomplete)Gregory Nutt2014-12-195-10/+921
|
* Add some OpenOCD scripts for some TI Tiva boardsGregory Nutt2014-12-183-2/+20
|
* CC3000: Fix yet another typo in last two commitsgit diff I should not be ↵Gregory Nutt2014-12-181-1/+1
| | | | doing this when I have the flugit diff
* Updata ChangeLogGregory Nutt2014-12-181-0/+4
|
* Tiva: Fix configuration logic for IRQ interrupts. The various parts ↵Gregory Nutt2014-12-182-25/+135
| | | | support varying numbers of GPIO blocks and with varying capabilities to support interrupts on the pins of different GPIO blocks
* Update ChangeLogGregory Nutt2014-12-181-0/+3
|
* Tiva: Change negative logic CONFIG_TIVA_DISABLE_GPIOx_IRQS to positive logic ↵Gregory Nutt2014-12-1830-434/+456
| | | | CONFIG_TIVA_GPIOx_IRQS
* Fix a couple of spelling errors in commentsGregory Nutt2014-12-181-2/+2
|
* Update ChangeLogGregory Nutt2014-12-181-0/+4
|
* Freedom KL25Z: Update the CC3000 support to use the current CC300 ↵Gregory Nutt2014-12-184-61/+295
| | | | interfaces. From Alan Carvalho de Assis
* Tiva: Add GPIO interrupt support for the TMS4C129XGregory Nutt2014-12-184-14/+261
|
* DK-TM4C129X: Add support for buttonsGregory Nutt2014-12-184-8/+227
|
* DK-TM4C129X: Add LED supportGregory Nutt2014-12-187-102/+314
|
* DK-TM4C129X: Fixes to get clean build. Logic is still not complete, howeverGregory Nutt2014-12-186-17/+32
|
* CC3000: Oops. Fix an error in the last commitGregory Nutt2014-12-181-1/+1
|
* Update ChangeLogGregory Nutt2014-12-181-0/+3
|
* Freedom-KL25Z: Add pin configuration for add-on ADXL345 board. From Alan ↵Gregory Nutt2014-12-183-12/+24
| | | | Carvalho de Assis
* Update documentationGregory Nutt2014-12-181-8/+15
|
* CC3000 Fix: Data can be unaligned. When dereferences as an input ntosh(), a ↵Gregory Nutt2014-12-181-4/+9
| | | | bad value is returned. Reported by Alan Carvalho de Assis
* Update ChangeLogGregory Nutt2014-12-171-1/+12
|
* A previous change increased the task name size allocation by one to hold a ↵Gregory Nutt2014-12-1755-55/+55
| | | | NUL terminator. This changes reduces the configured name size by one so that no additional memory is used
* strncpy will not copy the terminating \0 into the destination if the source ↵Gregory Nutt2014-12-176-5/+11
| | | | is larger than the size of the destination. Ensure that the last byte is always zero and let strncpy only copy CONFIG_TASK_NAME_SIZE bytes. The issue of unterminated names can be observed in ps when creating a pthread while CONFIG_TASK_NAME_SIZE is set to 8.
* ADXL345: Don't select device if only change SPI settingsGregory Nutt2014-12-172-4/+0
|
* TM4C129X: Add pin multiplexingGregory Nutt2014-12-173-7/+491
|
* Tiva TM4C129X: Fix some errors in memory mapGregory Nutt2014-12-171-12/+12
|
* Add memory map for the TM4C129XGregory Nutt2014-12-172-7/+144
|
* Add interrupt definitions for the TM4C129XGregory Nutt2014-12-177-37/+300
|
* DK-TM4C129X: Switch to Windows/Cygwin + CodeSourceryGregory Nutt2014-12-172-7/+16
|
* Tiva: Better distinguish features of the TM4C1294xx and the TM4C129XxxGregory Nutt2014-12-161-5/+68
|
* ADXL345: Free allocations on failureGregory Nutt2014-12-161-0/+1
|
* Remove packaging indications for TM4C129 configuration variablesGregory Nutt2014-12-166-80/+80
|
* Add TM4C129XNCZAD and TM4C1294NCPDT to the Tiva configuration systemGregory Nutt2014-12-163-3/+61
|
* Update README filesGregory Nutt2014-12-162-1/+5
|
* Update ChangeLogGregory Nutt2014-12-161-0/+4
|
* Add basic board support for the DK-TM4C129X Connected Development Kit. The ↵Gregory Nutt2014-12-163-2/+19
| | | | initial commit is simply the TM4C123G Launchpad with naming changes
* Remove EXPERIMENTAL dependency from the Traveler game. It is basically ↵Gregory Nutt2014-12-1617-0/+2680
| | | | functional now.
* Update README filesGregory Nutt2014-12-163-16/+20
|
* Fix some typos ADXL (adxl) vs ADX1 (adx1)Gregory Nutt2014-12-161-4/+4
|
* A few bugs/typos introduced with my last changeGregory Nutt2014-12-161-2/+2
|
* Update the ADXL345 interface following the current interface schemeGregory Nutt2014-12-164-54/+65
|
* Minor clean-up associated with the ADX345 driverGregory Nutt2014-12-162-60/+24
|
* Updata ChangeLogGregory Nutt2014-12-161-0/+10
|
* Unify sensor debug. ADX driver was using input debug; LM75 and QENCODE that ↵Gregory Nutt2014-12-1616-216/+114
| | | | their own custom debug. Now all use CONFIG_DEBUG_SENSOR, sndbg()