summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix to SST25 driver to permit faster write modes. From David SidraneGregory Nutt2013-11-026-51/+58
|
* Spark config updates from David SidraneGregory Nutt2013-11-022-2/+2
|
* Need to lock mutex before signalGregory Nutt2013-11-021-1/+3
|
* Configs update for SST25 SPI from Davide SidraneGregory Nutt2013-11-023-6/+6
|
* Fixing typos from previous check-ins. Also, missed the ARMv7 IDLE stack ↵Gregory Nutt2013-11-012-23/+52
| | | | coloration
* Port IDLE/interrupt stack coloration to ARM and ARMv7-A architecturesGregory Nutt2013-11-015-33/+120
|
* Another updated to the spark configuration from David SidraneGregory Nutt2013-11-011-1/+1
|
* MTD config: Reduce configuration header overhead. From Ken PettitGregory Nutt2013-11-014-24/+73
|
* Avoid calling pthread_join() to wait for USB MSC thread to terminate: This ↵Gregory Nutt2013-11-014-28/+73
| | | | does not work if the caller of usb_mscuninitialize() is in a different task group than the MSC thread. From David Sidrane
* FAT: Fix error return value. In one failure case, success was being returnedGregory Nutt2013-11-012-1/+4
|
* Updates to sparck configuration from David SidraneGregory Nutt2013-11-017-66/+45
|
* Updated spark configuration from David Sidrane, including new USB MSC ↵Gregory Nutt2013-11-018-52/+1290
| | | | configuration
* Extend stack debug logic to include IDLE and interrupt stacks. Also color ↵Gregory Nutt2013-11-0134-116/+265
| | | | the heap as well. Based on suggestions from David Sidrane
* The Mikroe STM32 F4 board now uses /dev/config for configuration data ↵Gregory Nutt2013-11-016-41/+127
| | | | storage. From Ken Pettit
* Add an MTD device wrapper that can used to provide a /dev/config that can be ↵Gregory Nutt2013-11-016-7/+1162
| | | | used for retaining configuration data. From Ken Pettit
* Add skip= and count= options to the NSH hexdump command. From Ken PettitGregory Nutt2013-11-014-27/+111
|
* arch/arm/src/stm32/stm32_usbdev.c: On a failure to bind the class driver, ↵Gregory Nutt2013-10-312-1/+5
| | | | | | the driver reference was being nullified too soon. This caused an exception in usbdev_reset() later. The driver reference will be null ified later usbdev_unregister when the caller gets the error. From David Sidrane
* Fix erase block vs page block confusion in MTD partition logic. From Ken PettitGregory Nutt2013-10-312-6/+10
|
* SAMA5 PWM register definition header fileGregory Nutt2013-10-312-2/+644
|
* Missing files from last CC3000 driver update from David SidraneGregory Nutt2013-10-312-0/+488
|
* Missing file that I forgot to add in the last commitGregory Nutt2013-10-303-0/+305
|
* apps/platform/mikroe-stm32f4 now support platform-specific configuration ↵Gregory Nutt2013-10-304-2/+42
| | | | data. From Ken Pettit
* Fix typos introduced into NxWM configuration by an earlier check-in todayGregory Nutt2013-10-304-10/+10
|
* SAMA5 SSC: Add SSC register definition header fileGregory Nutt2013-10-302-0/+306
|
* Updated Spark board configuration from David SidraneGregory Nutt2013-10-301-1/+1
|
* Updated CC3000 driver from David SidraneGregory Nutt2013-10-3010-455/+168
|
* Updates to the CC3000 example from David SidraneGregory Nutt2013-10-304-18/+32
|
* Saving of touchscreen calibration but be done in CCalbration each time the ↵Gregory Nutt2013-10-303-2/+24
| | | | touchscreen is calibrated, not just once on startup
* CC3000 driver updates from David SidraneGregory Nutt2013-10-307-80/+104
|
* Spark configuration updated by David SidraneGregory Nutt2013-10-305-33/+44
|
* Fine tuning of memory usage in examples/cc3000 from David SidraneGregory Nutt2013-10-304-10/+13
|
* Add interface definition for platform-specific storage of configuration ↵Gregory Nutt2013-10-307-34/+295
| | | | data; Modify NxWM unit test to use these interfaces, if available, to save and restore touchscreen calibration data.
* apps/platform: A new now for platform-specific applicatin codeGregory Nutt2013-10-3015-8/+331
|
* Minor changes while pondering a camera interfaceGregory Nutt2013-10-295-4/+64
|
* Need to increase the size of an array in tools/kconfig2html.cGregory Nutt2013-10-281-1/+1
|
* Prep for release 6.31nuttx-6.31Gregory Nutt2013-10-286-68/+574
|
* Add for audio sub-format in audion system. From Ken PettitGregory Nutt2013-10-288-80/+246
|
* SAMA5 ADC: Seems functional in all modes including DMAGregory Nutt2013-10-287-60/+179
|
* Minor, costmetic things that were still unsaved in my editorGregory Nutt2013-10-271-5/+5
|
* CC3000 driver updates from David SidraneGregory Nutt2013-10-272-9/+13
|
* configs/spark: Spark NSH configuration updated from David SidraneGregory Nutt2013-10-271-23/+22
|
* drivers/mtd/sst.c: Fixes for 512 byte sector mode. From David SidraneGregory Nutt2013-10-271-1/+1
|
* apps/examples/cc3000: Updated by David SidraneGregory Nutt2013-10-273-5/+28
|
* sched/sched_releasetcb.c: Fix an error handling case where a pthread ↵Gregory Nutt2013-10-272-1/+5
| | | | start-up fails early, before the task type has been saved in the TCB. It is safer to use the sched_releasetcb() task type argument instead of relying on the task type in the TCB to be valid. Reported by David Sidrane
* STM32 SPI DMA: Fix related to CONFIG_STM32_DMACAPABLE from Ken PettitGregory Nutt2013-10-272-23/+26
|
* SAMA5 ADC: If DMA is enabled, then you should be able to configuration ↵Gregory Nutt2013-10-272-6/+45
| | | | larger DMA transfers
* SAMA5 README updateGregory Nutt2013-10-271-0/+63
|
* SAMA5 ADC: Fix sample frequency scaling and sequencer setupGregory Nutt2013-10-271-42/+66
|
* SAMA5 ADC: Correct setup of time compare registersGregory Nutt2013-10-271-1/+1
|
* Updated Mikroe STM32F4 configuration from Ken PettitGregory Nutt2013-10-277-66/+239
|