summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* SAMA5 LCD: Move framebuffers to center of free memory region. That creates ↵Gregory Nutt2013-10-183-100/+175
| | | | a guard band around the framebuffers that gives a little protection from any bad writes into the framebuffer
* Make sure that CONFIG_SDIO_PEFLIGHT=y is set in all STM32 configurations ↵Gregory Nutt2013-10-1814-0/+14
| | | | that have SDIO DMA enabled
* Enhanced the FAT32 filesystem code to understand DMA preflight failures, and ↵Gregory Nutt2013-10-182-36/+83
| | | | to use the file sector buffer as a bounce buffer when a user-supplied buffer is not suitable for DMA. From Mike Smith
* Enhanced the mmcdd_sdio driver to perform DMA preflight operations and fail ↵Gregory Nutt2013-10-182-7/+93
| | | | DMA read/write requests that fail preflighting. From Mike Smith
* Add SDIO preflight methodGregory Nutt2013-10-183-2/+34
|
* Changes to stm32_dmacapable interfaces from Mike SmithGregory Nutt2013-10-187-80/+361
|
* STM32 DMA priority corrections from Mike SmithGregory Nutt2013-10-182-3/+7
|
* Typo fixes for UART7 and UART8 DMA configs. From Mike SmithGregory Nutt2013-10-182-4/+7
|
* Fix some floating point formats in debug statementsGregory Nutt2013-10-172-5/+5
|
* SAMA5 TSD: Fix to prohibit reading samples when not validGregory Nutt2013-10-173-88/+40
|
* Minor tweaks to debug output; started renaming some icons to include size in ↵Gregory Nutt2013-10-1717-22/+33
| | | | the name; SAMA5 NxWM config needs libm
* New touchscreen scaling algorithm for the case where measured X values vary ↵Gregory Nutt2013-10-1710-129/+462
| | | | with y position (and vice versa)
* net_sendfile: Let the ACK callback handle the REXMIT flag and don't return ↵Gregory Nutt2013-10-172-22/+29
| | | | until all data has been ACK'd. From Max Holtzberg
* Move tcp connection into SYN_RCVD state after aception instead of bypassing ↵Gregory Nutt2013-10-172-9/+3
| | | | and moving directly into ESTABLISHED. From Max Holtzberg.
* TCP: Change how initial MSS is handled. From Max HoltzbergGregory Nutt2013-10-175-71/+72
|
* In net_sendfile(), correct parameter passed to netdev_txnotifiy. From Max ↵Gregory Nutt2013-10-172-1/+3
| | | | Holtzberg
* Reset TCP timeout timer when data is ACKed, not when data is sent. From Max ↵Gregory Nutt2013-10-173-15/+18
| | | | Holtzberg
* Changed net_close debug output to verbose. From Max Holtzberg (2013-10-17)Gregory Nutt2013-10-172-2/+4
|
* CC3000-related typo fixes from the last bit checked. Thanks to David SidraneGregory Nutt2013-10-164-5/+3
|
* CC3000 driver changes from David SidraneGregory Nutt2013-10-1617-3383/+2709
|
* CC3000 driver changes from David SidraneGregory Nutt2013-10-1614-4783/+4646
|
* CC3000 driver changes from David SidraneGregory Nutt2013-10-166-0/+2306
|
* Add support for the SST25VF016B serial FLASH. From Davide SidraneGregory Nutt2013-10-162-11/+42
|
* Spark configuration updates from David SidraneGregory Nutt2013-10-1612-1/+2947
|
* Spark configuration updates from David SidraneGregory Nutt2013-10-169-251/+994
|
* Updated CC30000 example from David SidraneGregory Nutt2013-10-163-691/+660
|
* Updated CC30000 example from David SidraneGregory Nutt2013-10-162-0/+41
|
* STM32 F103C: Correct some errors in pinmapping. From David SidraneGregory Nutt2013-10-161-2/+28
|
* SAMA5D3x-EK NxWM configuration: use 320x320 NuttX logo as the backgroundGregory Nutt2013-10-153-3454/+3
|
* Add a 320x320 NuttX logo imageGregory Nutt2013-10-153-4/+6
|
* Add a 320x320 NuttX logo imageGregory Nutt2013-10-158-133/+4647
|
* Use NxWidgets::CScaledBitmap to scale icons in the NxWM taskbarGregory Nutt2013-10-1512-55/+292
|
* NxWidgets::CScaledImage: New class that wraps any class that provides ↵Gregory Nutt2013-10-1510-17/+836
| | | | IBitMap and adds image scaling
* NxWM::CCalibration: Add logic to collect and average samples, optionally ↵Gregory Nutt2013-10-147-88/+420
| | | | discarding the most extreem values
* Misc changes to README files; Update SAMA5D3x-EK NxWM configuration to use ↵Gregory Nutt2013-10-144-73/+88
| | | | Calibration instruction messages
* NxWM::CCalibration: Add an option to provide some instructions in the ↵Gregory Nutt2013-10-149-40/+290
| | | | center of the calibration screen
* apps/system/sysinfo: Ken Petit reportst that the sysinfo command's stack ↵Gregory Nutt2013-10-142-3/+10
| | | | size is marginal. Stack size is now configurable with a default of 1024 bytes
* apps/Makefile should include external/Make.defs so that external ↵Gregory Nutt2013-10-142-0/+9
| | | | applications can participate in the menu configuration
* SAMA5D3x-EK: Add NxWM configuration for the SAMA5D3x-EK boardsGregory Nutt2013-10-1311-15/+1350
|
* SAMA5D3x-EK: Enable simulated mouse and keyboard events in the NX configurationGregory Nutt2013-10-131-2/+2
|
* SAMA5 LCDC: Correct how framebuffer memory was being mapped; Remove options ↵Gregory Nutt2013-10-1310-639/+340
| | | | to get framebuffer memory in various. Because of the mapping and aligment requirements, those options really cannot be supported
* SAMA5 LCDC: Move framebuffer to lower memory; I suspect some corruption by ↵Gregory Nutt2013-10-132-17/+12
| | | | interference
* SAMA5 LCDC: Fixed backlight PWM divider. Backlight no longer flashesGregory Nutt2013-10-115-100/+112
|
* ENCX24J600: Improved descriptor handling, free packets on rx abort ↵Gregory Nutt2013-10-113-110/+199
| | | | interrupt. From Max Holtzberg
* Changed the meaning of the uip_*input functions. They now return success ↵Gregory Nutt2013-10-119-69/+57
| | | | when a packet is dropped; This is needed for the ENCX24J600 driver that must make a decision to return the packet or not: It should not retain dropped packets. From Max Holtzberg
* Notify the socket layer if a connection is lost before the monitoring ↵Gregory Nutt2013-10-112-1/+6
| | | | callback has been registered. From Max Holtzberg
* SAMA5 LCDC: Wait when the LCDC is resynchronizing (SIF); Try start-up ↵Gregory Nutt2013-10-103-59/+161
| | | | parameters from Barebox (this still don't work)
* SAMA5 LCDC: Default resolution if now RGB565; Add option to select a ↵Gregory Nutt2013-10-102-11/+33
| | | | different output resolution than the sofware resolution (needs to the 24BPP for this LCD).
* SAMA5 LCDC: Move DMA descriptors out of internal SRAM and into SDRAM. I am ↵Gregory Nutt2013-10-103-245/+489
| | | | not completely clear, but it looks like the LCDC cannot support DMA from internal SRAM
* SAMA5: Allow portions of external memory to be added to the heap instead of ↵Gregory Nutt2013-10-103-38/+157
| | | | the whole thing