Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
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 orlearn 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
Loading
...
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
Loading
  • 17commits
  • 22files changed
  • 7contributors

Commits on Nov 26, 2018

  1. Use bool instead of boolean

    arduino/Arduino#4673Signed-off-by: Frederic.Pillon <frederic.pillon@st.com>
    @fpistm
    fpistm committedNov 26, 2018
    Configuration menu
    Copy the full SHA
    a1db02bView 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 closingsince _tcp_client remains after close.This was tested on nuleo-f767zi using project webthing-arduinoChange-Id: Ie465fe59009c33957dad97f1c70b4dc3af3b2ebeForwarded:#17Signed-off-by: Philippe Coval <p.coval@samsung.com>
    @rzr
    rzr committedJan 4, 2019
    Configuration menu
    Copy the full SHA
    be067d9View 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:#17Relate-to:https://github.com/rzr/webthing-iotjs/wiki/MCUChange-Id: I2e21e34a43f3cadb7981f2e359a5960735daa5d3Signed-off-by: Philippe Coval <p.coval@samsung.com>
    @rzr
    rzr committedJan 4, 2019
    Configuration menu
    Copy the full SHA
    a443221View commit details
    Browse the repository at this point in the history

Commits on Apr 21, 2019

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

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

Commits on May 10, 2019

  1. Create library.json

    @fpistm
    Stefan Staub authored andfpistm committedMay 10, 2019
    Configuration menu
    Copy the full SHA
    13a0adfView commit details
    Browse the repository at this point in the history
  2. Update library.json

    @sstaub@fpistm
    sstaub authored andfpistm committedMay 10, 2019
    Configuration menu
    Copy the full SHA
    ad95c45View 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.hSeestm32duino/Arduino_Core_STM32#518Signed-off-by: Frederic.Pillon <frederic.pillon@st.com>
    @fpistm
    fpistm committedMay 11, 2019
    Configuration menu
    Copy the full SHA
    72c849fView commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2019

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

    depending of the STM32 Core VersionSigned-off-by: Frederic.Pillon <frederic.pillon@st.com>
    @fpistm
    fpistm committedAug 21, 2019
    Configuration menu
    Copy the full SHA
    568478eView 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
    fpistm committedAug 22, 2019
    Configuration menu
    Copy the full SHA
    3ebfc7bView 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@fpistm
    gdsports authored andfpistm committedOct 17, 2019
    Configuration menu
    Copy the full SHA
    75fefe6View 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@fpistm
    gdsports authored andfpistm committedOct 25, 2019
    Configuration menu
    Copy the full SHA
    cfe4f64View commit details
    Browse the repository at this point in the history
  2. Add Ethernet.linkStatus

    Also remove 2 printf debug.
    @gdsports@fpistm
    gdsports authored andfpistm committedOct 25, 2019
    Configuration menu
    Copy the full SHA
    193a513View 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
    fpistm committedOct 28, 2019
    Configuration menu
    Copy the full SHA
    5f6c5b6View 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 onehost and port.
    @gdsports@fpistm
    gdsports authored andfpistm committedNov 9, 2019
    Configuration menu
    Copy the full SHA
    07b3797View 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 udpreceive data (Usefull with FreeRTOS).```void EthernetUDP::onDataArrival( std::function<void()> onDataArrival_fn){  _udp.onDataArrival = onDataArrival_fn;}```
    @straccio@fpistm
    straccio authored andfpistm committedNov 10, 2019
    Configuration menu
    Copy the full SHA
    b956c4bView 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
    fpistm committedNov 10, 2019
    Configuration menu
    Copy the full SHA
    adf5ac4View commit details
    Browse the repository at this point in the history
Loading

[8]ページ先頭

©2009-2025 Movatter.jp