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

more lwIP physical interfaces#6680

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
d-a-v merged 118 commits intoesp8266:masterfromd-a-v:ethernet
Dec 22, 2020
Merged

more lwIP physical interfaces#6680

d-a-v merged 118 commits intoesp8266:masterfromd-a-v:ethernet
Dec 22, 2020

Conversation

@d-a-v
Copy link
Collaborator

@d-a-vd-a-v commentedOct 28, 2019
edited
Loading

19-10-28:

edit

Fixes#1263
Fixes#5695
Fixes#3277

Jason2866, ascillato, Misiu, and darkautism reacted with thumbs up emojiMisiu reacted with heart emoji
It must always be present, it is linked and can be called by fw on boot.So it cannot be stored in a library.
static or dhcp works
@d-a-vd-a-v mentioned this pull requestOct 15, 2020
1 task
@d-a-v
Copy link
CollaboratorAuthor

@davidk88@FIAV1
Can you please tell what PPP files are missing / need to be imported for

  • PPP auth
  • PPP client

@FIAV1
Copy link

@d-a-v for ppp client no other files are needed; I don't use auth, so I don't know if other files are required for such functionality.

@davidk88
Copy link

@d-a-v Hello, back then I also got PPP client working without auth, so I didn't look which files are needed.

@earlephilhowerearlephilhower self-requested a reviewOctober 26, 2020 17:23
@d-a-vd-a-v merged commit51c2a14 intoesp8266:masterDec 22, 2020
davisonja added a commit to davisonja/Arduino that referenced this pull requestDec 28, 2020
…lash* upstream/master: (72 commits)  Typo error in ESP8266WiFiGeneric.h (esp8266#7797)  lwip2: use pvPortXalloc/vPortFree and "-free -fipa-pta" (esp8266#7793)  Use smarter cache key, cache Arduino IDE (esp8266#7791)  Update to SdFat 2.0.2, speed SD access (esp8266#7779)  BREAKING - Upgrade to upstream newlib 4.0.0 release (esp8266#7708)  mock: +hexdump() from debug.cpp (esp8266#7789)  more lwIP physical interfaces (esp8266#6680)  Rationalize File timestamp callback (esp8266#7785)  Update to LittleFS v2.3 (esp8266#7787)  WiFiServerSecure: Cache SSL sessions (esp8266#7774)  platform.txt: instruct GCC to perform more aggressive optimization (esp8266#7770)  LEAmDNS fixes (esp8266#7786)  Move uzlib to master branch (esp8266#7782)  Update to latest uzlib upstream (esp8266#7776)  EspSoftwareSerial bug fix release 6.10.1: preciseDelay() could delay() for extremely long time, if period duration was exceeded on entry. (esp8266#7771)  Fixed OOM double count in umm_realloc. (esp8266#7768)  Added missing check for failure on umm_push_heap calls in Esp.cpp (esp8266#7767)  Fix: cannot build afteresp8266#7060 on Win64 (esp8266#7754)  Add the missing 'rename' method wrapper in SD library. (esp8266#7766)  i2s: adds i2s_rxtxdrive_begin(enableRx, enableTx, driveRxClocks, driveTxClocks) (esp8266#7748)  ...
@d-a-vd-a-v deleted the ethernet branchJune 3, 2021 20:29
agners added a commit to agners/esphome that referenced this pull requestJun 10, 2021
It seems that the global dhcpSoftAP is used to encapsulate some of theDHCP functionality. Make use of the new API.See upstream change:esp8266/Arduino#6680
mcspr pushed a commit that referenced this pull requestOct 16, 2021
esp_yield() now also calls esp_schedule(), original esp_yield() function renamed to esp_suspend().Don't use delay(0) in the Core internals, libraries and examples. Use yield() when the code issupposed to be called from CONT, use esp_yield() when the code can be called from either CONT or SYS.Clean-up esp_yield() and esp_schedule() declarations across the code and use coredecls.h instead.Implement helper functions for libraries that were previously using esp_yield(), esp_schedule() andesp_delay() directly to wait for certain SYS context tasks to complete. Correctly use esp_delay()for timeouts, make sure scheduled functions have a chance to run (e.g. LwIP_Ethernet uses recurrent)Related issues:-#6107 - discussion about the esp_yield() and esp_delay() usage in ClientContext-#6212 - discussion about replacing delay() with a blocking loop-#6680 - pull request introducing LwIP-based Ethernet-#7146 - discussion that originated UART code changes-#7969 - proposal to remove delay(0) from the example code-#8291 - discussion related to the run_scheduled_recurrent_functions() usage in LwIP Ethernet-#8317 - yieldUntil() implementation, similar to the esp_delay() overload with a timeout and a 0 interval
hasenradball pushed a commit to hasenradball/Arduino that referenced this pull requestNov 18, 2024
esp_yield() now also calls esp_schedule(), original esp_yield() function renamed to esp_suspend().Don't use delay(0) in the Core internals, libraries and examples. Use yield() when the code issupposed to be called from CONT, use esp_yield() when the code can be called from either CONT or SYS.Clean-up esp_yield() and esp_schedule() declarations across the code and use coredecls.h instead.Implement helper functions for libraries that were previously using esp_yield(), esp_schedule() andesp_delay() directly to wait for certain SYS context tasks to complete. Correctly use esp_delay()for timeouts, make sure scheduled functions have a chance to run (e.g. LwIP_Ethernet uses recurrent)Related issues:-esp8266#6107 - discussion about the esp_yield() and esp_delay() usage in ClientContext-esp8266#6212 - discussion about replacing delay() with a blocking loop-esp8266#6680 - pull request introducing LwIP-based Ethernet-esp8266#7146 - discussion that originated UART code changes-esp8266#7969 - proposal to remove delay(0) from the example code-esp8266#8291 - discussion related to the run_scheduled_recurrent_functions() usage in LwIP Ethernet-esp8266#8317 - yieldUntil() implementation, similar to the esp_delay() overload with a timeout and a 0 interval
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment

Reviewers

@devytedevytedevyte requested changes

@earlephilhowerearlephilhowerAwaiting requested review from earlephilhower

+4 more reviewers

@MisiuMisiuMisiu left review comments

@jbaudouxjbaudouxjbaudoux left review comments

@FIAV1FIAV1FIAV1 left review comments

@infrafastinfrafastinfrafast left review comments

Reviewers whose approvals may not affect merge requirements

Assignees

No one assigned

Labels

alphaincluded in alpha release

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

ESP8266 WiFi Client does not honor DHCP host-name option setting when using DHCP Ethernet and SSL/TLS? Access DHCP options in STA mode?

11 participants

@d-a-v@Misiu@devyte@Jason2866@FIAV1@Pablo2048@ssshake@davidk88@jbaudoux@infrafast@earlephilhower

[8]ページ先頭

©2009-2025 Movatter.jp