-
Notifications
You must be signed in to change notification settings - Fork 11
WiFiS3 add Ping #47
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WiFiS3 add Ping #47
Conversation
one AT command would do. in the ESPPing library the version with the host name does hostByName and then calls the IP version. |
I wanted to provide BOTH options in the user in the sketch either to provide a hostname OR provide an IP. Indeed I could have added an indicator (boolean) to indicate that the provided argument is a hostname or IP-address. But I rather keep it simple.. |
will work OK in the WiFiS3 library |
That assumes ping will work on the renesas processor... tried that but it does not work..
Regards,
Paul
Verzonden vanaf Outlook voor Android<https://aka.ms/AAb9ysg>
…________________________________
From: Juraj Andrássy ***@***.***>
Sent: Friday, February 16, 2024 8:25:25 PM
To: arduino/uno-r4-wifi-usb-bridge ***@***.***>
Cc: paulvha ***@***.***>; Author ***@***.***>
Subject: Re: [arduino/uno-r4-wifi-usb-bridge] WiFiS3 add Ping (PR #47)
loat CWifi::ping(IPAddress ip, unsigned int count) {
/* -------------------------------------------------------------------------- */
return ping(ip.toString().c_str(), count);
}
—
Reply to this email directly, view it on GitHub<#47 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AD2GBPH66ZRTOTQXRF52RGDYT6XCLAVCNFSM6AAAAABDMIWDBSVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTSNBZGE4TGMRWHE>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
please. the ping function used in my snippet is your |
change applied and pull request updated. will also update the bridge pull request to only _PINGNAME in commands regards, |
second attempt to get Ping added. This also requires a change to the Core (submitted separately)
regards,
Paul