Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stm32duino/STM32Ethernet
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.4
Choose a base ref
...
head repository: stm32duino/STM32Ethernet
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.5
Choose a head ref
  • 17 commits
  • 22 files changed
  • 7 contributors

Commits on Nov 26, 2018

  1. Use bool instead of boolean

    arduino/Arduino#4673
    
    Signed-off-by: Frederic.Pillon <frederic.pillon@st.com>
    fpistm committed Nov 26, 2018
    Configuration menu
    Copy the full SHA
    a1db02b View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2019

  1. client: Fix bool operator on init and ongoing use

    When iterating we make sure client's socket is not closing
    since _tcp_client remains after close.
    
    This was tested on nuleo-f767zi using project webthing-arduino
    
    Change-Id: Ie465fe59009c33957dad97f1c70b4dc3af3b2ebe
    Forwarded: #17
    Signed-off-by: Philippe Coval <p.coval@samsung.com>
    rzr committed Jan 4, 2019
    Configuration menu
    Copy the full SHA
    be067d9 View commit details
    Browse the repository at this point in the history
  2. server: Initialize class member on dynamic alloc

    Also replace default constructor to use port 80 by default.
    
    I noticed that server worked on global instance.
    but not if used in class (allocated with new).
    
    This change makes both use cases working.
    
    Forwarded: #17
    Relate-to: https://github.com/rzr/webthing-iotjs/wiki/MCU
    Change-Id: I2e21e34a43f3cadb7981f2e359a5960735daa5d3
    Signed-off-by: Philippe Coval <p.coval@samsung.com>
    rzr committed Jan 4, 2019
    Configuration menu
    Copy the full SHA
    a443221 View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2019

  1. Merge pull request #17 from TizenTeam/sandbox/rzr/review/master

    client: Fix bool operator on init and ongoing use
    fpistm authored Apr 21, 2019
    Configuration menu
    Copy the full SHA
    27b579a View commit details
    Browse the repository at this point in the history

Commits on May 10, 2019

  1. Create library.json

    Stefan Staub authored and fpistm committed May 10, 2019
    Configuration menu
    Copy the full SHA
    13a0adf View commit details
    Browse the repository at this point in the history
  2. Update library.json

    sstaub authored and fpistm committed May 10, 2019
    Configuration menu
    Copy the full SHA
    ad95c45 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2019

  1. Remove useless variant.h include

    variant.h is now included thanks stm32_def.h
    
    See stm32duino/Arduino_Core_STM32#518
    
    Signed-off-by: Frederic.Pillon <frederic.pillon@st.com>
    fpistm committed May 11, 2019
    Configuration menu
    Copy the full SHA
    72c849f View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2019

  1. Configuration menu
    Copy the full SHA
    7120886 View commit details
    Browse the repository at this point in the history
  2. Ensure backward compatibility

    depending of the STM32 Core Version
    
    Signed-off-by: Frederic.Pillon <frederic.pillon@st.com>
    fpistm committed Aug 21, 2019
    Configuration menu
    Copy the full SHA
    568478e View commit details
    Browse the repository at this point in the history

Commits on Aug 22, 2019

  1. Allow to add extra options to the default one

    by adding a 'lwipopts_extra.h'
    
    
    Signed-off-by: Frederic.Pillon <frederic.pillon@st.com>
    fpistm committed Aug 22, 2019
    Configuration menu
    Copy the full SHA
    3ebfc7b View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2019

  1. Add EthernetClient functions: localPort, remoteIP, remotePort

    SSLClient needs these functions
    gdsports authored and fpistm committed Oct 17, 2019
    Configuration menu
    Copy the full SHA
    75fefe6 View commit details
    Browse the repository at this point in the history

Commits on Oct 25, 2019

  1. Allocate the TCP client when needed.

    This patch allows the WebClientRepeating example to work.
    gdsports authored and fpistm committed Oct 25, 2019
    Configuration menu
    Copy the full SHA
    cfe4f64 View commit details
    Browse the repository at this point in the history
  2. Add Ethernet.linkStatus

    Also remove 2 printf debug.
    gdsports authored and fpistm committed Oct 25, 2019
    Configuration menu
    Copy the full SHA
    193a513 View commit details
    Browse the repository at this point in the history

Commits on Oct 28, 2019

  1. Update Ethernet.linkStatus to handle Unknown status

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Oct 28, 2019
    Configuration menu
    Copy the full SHA
    5f6c5b6 View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2019

  1. Use UDP unconnected sockets

    UDP connected sockets are limited to commuinicating with one
    host and port.
    gdsports authored and fpistm committed Nov 9, 2019
    Configuration menu
    Copy the full SHA
    07b3797 View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2019

  1. Added multicast udp, added callback for interrupt data arrival

    Implemented begin multicast for receiving multicast udp.
    Added ability to add a callback from the interrupt when udp
    receive data (Usefull with FreeRTOS).
    ```
    void EthernetUDP::onDataArrival( std::function<void()> onDataArrival_fn){
      _udp.onDataArrival = onDataArrival_fn;
    }
    ```
    straccio authored and fpistm committed Nov 10, 2019
    Configuration menu
    Copy the full SHA
    b956c4b View commit details
    Browse the repository at this point in the history
  2. Update library.properties

    Signed-off-by: Frederic Pillon <frederic.pillon@st.com>
    fpistm committed Nov 10, 2019
    Configuration menu
    Copy the full SHA
    adf5ac4 View commit details
    Browse the repository at this point in the history
Loading