summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Update ChangeLogsGregory Nutt2014-11-172-0/+8
|
* configs/sama5d4-ek/bridge: Add a simple test for the dual EMACs on the SAMA5D4Gregory Nutt2014-11-174-0/+1349
|
* apps/examples/bridge: Add a simple UDP relay bridge for testing ↵Gregory Nutt2014-11-178-3/+1056
| | | | configurations with multiple networks
* Fix trivial typo in a commentGregory Nutt2014-11-171-1/+1
|
* Network: Fix compilation problem when mutliple networks enabledGregory Nutt2014-11-171-1/+2
|
* Update ChangeLogsGregory Nutt2014-11-172-1/+8
|
* These examples all set the IP address of eth1 is DHCP is enabled. That ↵Gregory Nutt2014-11-175-6/+5
| | | | can't be right???
* changes for clean build with Ethernet+SLIPGregory Nutt2014-11-163-7/+11
|
* Completes basic changes to support per-device/per-link TCP receive window sizeGregory Nutt2014-11-165-29/+78
|
* Change CONFIG_NET_RECEIVE_WONDOW to CONFIG_NET_ETH_TCP_RECVWNDO or ↵Gregory Nutt2014-11-1683-83/+83
| | | | CONFIG_NET_SLIP_TCP_RECVWNDO in all defconfig files
* Rename NET_LL_MTU to NET_DEV_MTU; rename d_llmtu to d_mtuGregory Nutt2014-11-169-34/+38
|
* Update ChangeLogsGregory Nutt2014-11-162-0/+8
|
* Fixes for Ethernet, SLIP, and Ethernet+SLIP buildsGregory Nutt2014-11-161-8/+8
|
* Refresh configurationGregory Nutt2014-11-161-2/+6
|
* Completes conversion of CONFIG_NET_BUFIZE to CONFIG_NET_ETH/SLIP_MTUGregory Nutt2014-11-1611-40/+60
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU in all drivers/net (except ↵Gregory Nutt2014-11-166-24/+24
| | | | slip.c)
* Clarify MTU/BUFSIZE in apps/ README.txt files and DocumentationGregory Nutt2014-11-164-9/+19
|
* Add link MTU size to network device structure.Gregory Nutt2014-11-163-12/+42
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU in all configs/ README.txt filesGregory Nutt2014-11-167-12/+12
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU is all MCU Ethernet driversGregory Nutt2014-11-1614-45/+45
|
* Rename CONFIG_NET_BUFSIZE to CONFIG_NET_ETH_MTU is all configuration filesGregory Nutt2014-11-1678-78/+78
|
* Update ChangeLogGregory Nutt2014-11-161-0/+3
|
* EFM32 USART setup: Computation of BAUD includes shift; Eliminate additional ↵Gregory Nutt2014-11-161-3/+6
| | | | shift. From Pierre-noel Bouteville
* Update ChangeLogGregory Nutt2014-11-162-0/+9
|
* NSH USB Console: Add logic to restart the console wait if an error occurs ↵Gregory Nutt2014-11-161-0/+13
| | | | while reading from the console. In USB console startup, the logic must be able to open the USB serial and receive 3 newlines. However, it the USB driver is disconnected or otherwise fails before the 3 newlines are received, the receive loop becomes a killer, infinite loop, CPU hog. Noted by spasbyspas
* SAM3/4: Add missing SPI0 clock configuartion macro for the SAM4SGregory Nutt2014-11-161-1/+3
|
* Update TODOGregory Nutt2014-11-151-10/+2
|
* Network: Update SLIP configuration; Fix compile issues when building SLIP onlyGregory Nutt2014-11-153-46/+117
|
* Network: netdev_register() must assign the device name appropriately ↵Gregory Nutt2014-11-151-5/+17
| | | | according to the link layer type
* Update ChangeLogsGregory Nutt2014-11-152-0/+7
|
* Network: Various fixes for clean compile with both Ethernet and SLIPGregory Nutt2014-11-155-18/+39
|
* Network: All logic will now handle varialbe length link layer protocol ↵Gregory Nutt2014-11-1530-95/+159
| | | | headers within incoming packets. This permits use of multiple network interfaces with differing data links. For example, ETHERNET + SLIP
* Merge remote-tracking branch 'origin/master' into llhdrlenGregory Nutt2014-11-151-1/+4
|\
| * Update ChangeLogGregory Nutt2014-11-151-1/+4
| |
* | Merge remote-tracking branch 'origin/master' into llhdrlenGregory Nutt2014-11-1511-20/+16
|\|
| * Remove use of NET_LL_HDRLEN from net/arp logic. Use ETH_HDRLEN insteadGregory Nutt2014-11-154-9/+9
| |
| * Remove use of NET_LL_HDRLEN from Ethernet drivers. Use ETH_HDRLEN insteadGregory Nutt2014-11-157-11/+7
| |
* | Resove merge conflictsGregory Nutt2014-11-153-26/+40
|/
* Network: Misc fixes for clean complete with both Ethernet and SLIP enabledGregory Nutt2014-11-155-42/+40
|
* Update ChangeLogGregory Nutt2014-11-151-0/+8
|
* STM32F4Discovery netnsh configuration needs to set MAC addressGregory Nutt2014-11-151-1/+4
|
* Netwoek: Ada a parameter to netdev_register() to indicate the link protocol ↵Gregory Nutt2014-11-1528-240/+362
| | | | supported by the driver. Use this value to replace some logic commited yesterday
* Add mirror (x/y) and inverse video (black<->white) options to the ST7565 LCD ↵Gregory Nutt2014-11-152-3/+40
| | | | driver. From Pierre-noel Bouteville.
* NET: Fix some some more ARP/Ethernet releated configurationGregory Nutt2014-11-142-4/+4
|
* Costmetic changeGregory Nutt2014-11-141-1/+1
|
* Update TODO listGregory Nutt2014-11-141-26/+2
|
* Update ChangeLogGregory Nutt2014-11-141-0/+3
|
* ARP: Add support for the case where there are multiple networks: One being ↵Gregory Nutt2014-11-1466-71/+747
| | | | Etherenet and the other not (say slip or perhaps someday PPP). In that case, we need to suppress ARP-related operations on the SLIP/PPP interface only
* Update ChangeLogGregory Nutt2014-11-141-0/+3
|
* I don't think that the net_route function has ever worked correctly. The ↵Gregory Nutt2014-11-142-3/+3
| | | | source ip was updated in the match struct instead of the route ip. From Brennan Ashton.