-
-
Notifications
You must be signed in to change notification settings - Fork 435
Only the IP address is shown for unrecognized network boards #1331
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
Comments
Looks like the IDE needs the properties. See here #740 (comment) |
It's all available 🤦 So the CLI does not block this task. |
There is one issue: the {
"properties": {
".": "esp32s2usb",
"auth_upload": "yes",
"board": "esp32s2usb",
"hostname": "esp32s2.local.",
"port": "3232",
"ssh_upload": "no",
"tcp_check": "no"
}
} |
Signed-off-by: Akos Kitta <a.kitta@arduino.cc> #1331
Closes #1331 Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
- for the boards dropdown, and - for the `Tools` > `Port` menu. Closes #1331 Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
- for the boards dropdown, and - for the `Tools` > `Port` menu. Closes #1331 Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
- for the boards dropdown, and - for the `Tools` > `Port` menu. Closes #1331 Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
Hi, No updated IDE availlable, it says. Will the issue expected to be solved with next update, you think? |
Please get and try the nightly build: https://github.com/arduino/arduino-ide#nightly-builds Let us know if the upload still does not work or if you see the IP only. Thank you! |
Some progress certainly! Thnx for that. In board selector dropdown the name as defined in my sketch is displayed: Uploading the sketch OTA unfortunately hangs with these messages:
|
Thank you for your feedback. I moved your upload problem to a new dedicated issue. Please continue the conversation there. Thank you! |
Describe the problem
This is the follow-up of #1327.
Arduino IDE 2.x shows only the IP address of connected but unrecognized boards. Before #1327,
network
boards not recognized by the Arduino CLI were not listed in the "Board Selector" menu. See the changes here and here.#1327 will remove the above-mentioned filtering, and the Arduino IDE will show all
network
boards. Unfortunately, the IDE receives insufficient information from the CLI, so the IDE has no chance to show anything else but the IP.The
mdns-discovery
is aware of these additional things; hence the Arduino IDE 1.x can enhance the label of an unrecognizednetwork
board:The same information is missing from the Arduino CLI board watch (
board list -w --format json
):So the IDE fails to show
esp32s2 at 10.0.1.25
and falls back toUnknown 10.0.1.25
.To reproduce
The simplest way is to try it with Arduino CLI:
Expected behavior
Arduino IDE should receive the properties from the CLI discovered by the
mdns-discovery
.Or the IDE should receive the
"label": "esp32s2 at 10.0.1.25",
from the CLI.Arduino IDE version
9e2b73a
Operating system
macOS
Operating system version
12.3.1
Additional context
Related (if not the same): #567
Issue checklist
The text was updated successfully, but these errors were encountered: