summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Change all variadic macros to C99 styleGregory Nutt2014-05-2253-173/+174
|
* Change bne to bne.n in irqrestore()Gregory Nutt2014-05-221-1/+1
|
* Update ChangeLogGregory Nutt2014-05-211-4/+16
|
* CC3000: Fix build when POLL is enabled. From Jussi Kivilinna.Gregory Nutt2014-05-211-14/+23
|
* CC3000: Fix a race condition in start-up of unsoliced_thread. From Jussi ↵Gregory Nutt2014-05-211-0/+12
| | | | Kivilinna
* Configuration has CC3000_SPI_MODE settings but source uses ↵Gregory Nutt2014-05-212-4/+4
| | | | CONFIG_CC3000_SPIMODE. From Jussi Kivilinna
* Correct SPI mode for CC3000 is CPOL=0 CHPA=1. From Jussi KivilinnaGregory Nutt2014-05-211-2/+2
|
* Make sure that all references to up_prioritize_irq() are conditioned on ↵Gregory Nutt2014-05-201-0/+3
| | | | CONFIG_ARCH_IRQPRIO. Noted by Make Smith
* Make sure that all references to up_prioritize_irq() are conditioned on ↵Gregory Nutt2014-05-2017-10/+48
| | | | CONFIG_ARCH_IRQPRIO. Noted by Make Smith
* STM32 lowputc: Fix an error in conditional compilation. From Sami PelkonenGregory Nutt2014-05-202-1/+3
|
* sig_mqnotempty(): Test for a valid signal number inverted. From eero.nurkkalaGregory Nutt2014-05-202-1/+4
|
* SAM4E GPIO: Fix some compile errors when CONFIG_DEBUG_GPIO is enabledGregory Nutt2014-05-153-6/+12
|
* Misc changes while testing the SAM4E-EK LCD (still does not work)Gregory Nutt2014-05-144-16/+23
|
* SAM4E-EK: Ooops.. two touchscreen drivers(?)Gregory Nutt2014-05-144-300/+7
|
* Fix one error that I made in the last check-in (there are probably more)Gregory Nutt2014-05-142-31/+34
|
* Add an alternate STM32 I2C driver that works around errata in the F103 chip ↵Gregory Nutt2014-05-144-4/+2669
| | | | (and maybe others). From Patrizio Simona
* correct some columnar alignment and spacingGregory Nutt2014-05-131-390/+390
|
* STM32 I2C: Cosmetic changes in preparation to merge a changeGregory Nutt2014-05-131-42/+55
|
* SAM4E-EK: Add a touchscreen driver (untestd on initial checkin)Gregory Nutt2014-05-135-12/+388
|
* SAM4E-EK: Add a driver for the on-board LCD (not tested on initial check-ing)Gregory Nutt2014-05-138-241/+1472
|
* A fix to the last MB85RS1MT patchGregory Nutt2014-05-121-2/+7
|
* Add support for Fujitsu MB85RS1MT part. From Charles AshGregory Nutt2014-05-122-38/+57
|
* SAM4E: PIO definition clean-upGregory Nutt2014-05-122-30/+9
|
* Fix typo RBG -> RGB in several macrosGregory Nutt2014-05-126-40/+45
|
* Add ILI9325 register definition header fileGregory Nutt2014-05-122-1/+525
|
* Updated README and commentsGregory Nutt2014-05-102-9/+20
|
* STM32 I2C: Bring in PX4 fix for I2C in very high noise environments or with ↵Gregory Nutt2014-05-103-3/+18
| | | | rogue perpipherals. Taken from the PX4 commit by Tridge
* Move prun from interpreters/ to system/; And an NSH built-in appliation ↵Gregory Nutt2014-05-097-3/+275
| | | | that can be used to execute P-Code files from the NSH command line
* Move P-Code execution logic from interpreters/prun to system/prunGregory Nutt2014-05-0914-16/+30
|
* Make sure apps/examples/pashello still builds; update comments; refresh ↵Gregory Nutt2014-05-094-48/+95
| | | | configurations
* Create P-Code execution helper in apps/interpreters/prun; The P-Code binary ↵Gregory Nutt2014-05-0924-56/+604
| | | | format is functional except that there are still some modularity and kernel build issues that need to be addressed.
* Couple of fixes for the latest STM32 additions / modifications. These are ↵Gregory Nutt2014-05-092-2/+2
| | | | simple fixes dealing with conditional compile based on CONFIG items not being set. From Ken Pettit
* P-code BINFMT: Add logic to pass information from the binfmt logic to the ↵Gregory Nutt2014-05-0812-39/+208
| | | | P-code interpreter. This includes some extension to the binfmt interfaces.
* Update the displayed I2C on each get iteraction (not the same starting ↵Gregory Nutt2014-05-082-1/+5
| | | | address). From Ryan VanSickle
* Minor fix to debug formatGregory Nutt2014-05-081-1/+1
|
* Corrected pcode.h header fileGregory Nutt2014-05-081-92/+15
|
* Add a ROMFS file system for testing the P-Code binary formatGregory Nutt2014-05-0813-17/+389
|
* Add support for the STM32152 and STM32162 Medium+ density parts (plus ↵Gregory Nutt2014-05-0819-64/+456
| | | | miscellaneous other improvements to the original STM32151 logic). From Jussi Kivilinna and Sami Pelkonen
* Add serial method so that lower half driver can provide RX flow control ↵Gregory Nutt2014-05-081-0/+11
| | | | information. From Jussi Kivilinna
* Add serial method so that lower half driver can provide RX flow control ↵Gregory Nutt2014-05-0840-30/+305
| | | | information. From Jussi Kivilinna
* LIS331DL driver: Correct build dependency. Sourceforge ticket #41 from ↵Gregory Nutt2014-05-082-1/+3
| | | | Kosma Moczek
* BINFMT: A framework to support a P-code binary format (a work in progress)Gregory Nutt2014-05-0719-97/+1084
|
* STM32: Rename pinmap.h files to better reflect the chip naming conventionsGregory Nutt2014-05-076-31/+31
|
* STM32: Fix STM32F100CB pin configuration (from Kosma Moczek); and make chip ↵Gregory Nutt2014-05-0795-440/+439
| | | | naming a little more consistent
* Nucleo-F401RE: Delay loop calibratedGregory Nutt2014-05-061-1/+1
|
* Ooops... last (cosmetic) changes were still in the editorGregory Nutt2014-05-061-3/+4
|
* Optimized memcpy() functin for the ARMv7-A from David SidraneGregory Nutt2014-05-064-0/+427
|
* STM32: Add more complication to STM32 Kconfig so the correct RNG and ETHMAC ↵Gregory Nutt2014-05-061-18/+42
| | | | options presented for the F401RE. There are still invalid peripheral options being presented
* Nucleo-F401RE: With these changes and the changes from previous commits, ↵Gregory Nutt2014-05-064-92/+120
| | | | the basic Nucleo-F401RE NSH configuration is working.
* The Nucleo-F401RE has no on-board cystal and, hence, must use the on-chip ↵Gregory Nutt2014-05-065-82/+134
| | | | HSI oscillator for the PLL include clock