summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
* I2C Tool: Use default oof 4ooKhz, not 4MHzGregory Nutt2013-10-102-2/+4
|
* Arduino Due: RXD0 pull-up works with both REV2 and REV3Gregory Nutt2013-10-101-1/+1
|
* SAMA5 LCDC: Fix a few compilation errors that show up when additional ↵Gregory Nutt2013-10-091-2/+7
| | | | layers are enabled
* SAMA5 LCDC: Few more bug fixes but still not workingGregory Nutt2013-10-091-6/+7
|
* SAMA5 LCDC: Corrections from first debug sessions. Still a way to goGregory Nutt2013-10-095-166/+271
|
* Add option to enable Aduino Due specific logic, like pull-up on UART0 RXD. ↵Gregory Nutt2013-10-094-0/+51
| | | | Suggested by gdi@embedders.org
* Cosmetic change; removal of spaces at the end of linesGregory Nutt2013-10-091-13/+13
|
* SAMA5: Add an examples/nx configuration for testing the LCDGregory Nutt2013-10-085-1/+998
|
* SAMA5: LCDC driver incorporated into the build system.Gregory Nutt2013-10-087-274/+906
|
* SAMA5: LCD driver is code complete but untestedGregory Nutt2013-10-082-133/+845
|
* Missing one change in the last commitGregory Nutt2013-10-081-1/+1
|
* uip_tcpcallback: Simplify handling of callback return flagsGregory Nutt2013-10-081-7/+5
|
* Update to net_close() improvement from Max HoltzbergGregory Nutt2013-10-085-56/+44
|
* SAMA5: More LCDC driver progressGregory Nutt2013-10-082-191/+373
|
* SAMA5: More LCDC driver progressGregory Nutt2013-10-072-51/+407
|
* SAMA5: LCDC driver progressGregory Nutt2013-10-076-129/+822
|
* Cosmetic changes to commentsGregory Nutt2013-10-062-4/+3
|
* Make net_close() nonblocking and free unestablished connections if no free ↵Gregory Nutt2013-10-064-70/+104
| | | | connections available. From Max Holtzberg
* SAMA5 LCDC: Add 'skeleton' files that will eventually become an LCDC driver ↵Gregory Nutt2013-10-065-11/+1009
| | | | for the SAMA5
* Use the new signature of rxnotify caused by the routing table. From Max ↵Gregory Nutt2013-10-064-7/+9
| | | | Holtzberg
* Another case where we should use the routing table: There may be multiple ↵Gregory Nutt2013-10-057-13/+263
| | | | routers on the same network. In that case, we have to search for the routing table for the router that forwards to the destination address. We do this when we determine the MAC address we want in the ARP logic
* Documentation updateGregory Nutt2013-10-051-96/+168
|
* Fix some delroute errorsGregory Nutt2013-10-053-6/+6
|
* Fix ordering of operations in network ioctl handling. We need to able to ↵Gregory Nutt2013-10-051-149/+236
| | | | distinguish an error because the command was not recognized vs. other kinds of error
* Add NSH addroute and delroute commandsGregory Nutt2013-10-0511-44/+415
|
* Oops here is a file that I forget to add before a recent commitGregory Nutt2013-10-051-0/+174
|
* netdev_findbyaddr() will not use a routing table if one is available. It ↵Gregory Nutt2013-10-0510-51/+126
| | | | will also make a better decision in the case there there is no routing table but only a single network interface.
* Clean-up routing table design.Gregory Nutt2013-10-0514-144/+244
|
* Clean up queue files so that they look more like othersGregory Nutt2013-10-0512-156/+104
|
* SAMA5: Completes LDCDC register definition fileGregory Nutt2013-10-041-239/+1289
|
* SAMA5: Add LCD register definition header fileGregory Nutt2013-10-042-1/+836
|
* SAMA5: Touchscreen driver now worksGregory Nutt2013-10-041-88/+87
|
* SAMA5: First changes from touchscreen debugGregory Nutt2013-10-032-39/+51
|
* SAMA5: ADC and touchscreen drivers now build without errorsGregory Nutt2013-10-039-163/+170
|
* SAMA5: Integrate touchscreen and ADC drivers into the buildGregory Nutt2013-10-0312-132/+1067
|
* SAMA5 ADC and touchscreen: Drivers are code complete and ready for testGregory Nutt2013-10-032-104/+726
|