The forum is the best place for less structured feedback, requests for assistance, and discussion about Arduino IDE 2.x.
Formal bug reports and feature requests can be submitted directly to the Arduino IDE developers via the issue tracker here:
https://github.com/arduino/arduino-ide/issues/new/choose
I try to act as somewhat of a "bridge" between the forum and the issue tracker, submitting reports of problems or potential enhancements identified via the forum discussions, while also cross-referencing the relevant information from the issue tracker in the forum discussions in order to make that information readily available to the forum community.
It depends on the subject matter. This forum category is dedicated to Arduino IDE 2.x-specific subjects. For any subjects which are not specific to Arduino IDE 2.x (even if you happen to be using Arduino IDE 2.x incidentally), other forum categories will be more suitable.
If you open a forum category, you should see an "About the ___ category" topic at the top of the page. This topic will provide a short description of the purpose of the category in case it isn't clear from the category name alone.
It is, but I think in this case it will be easier to handle in a dedicated topic. You can see from the recent discussion in that other thread we identified a Linux-specific application as the cause of the problem. Your problem is surely not identical, even if it has similar symptoms.
So, lets see if we can get to the investigation.
I think the best thing to check now is whether the low level serial-discovery tool used by the Arduino IDE 2.x to find ports is behaving and able to see the port of your board. Arduino IDE 1.x does not use this tool, so it is possible that tool may be the location of the problem, rather than something in the Arduino IDE 2.x codebase which only displays the list of ports it is given by the serial-discovery tool.
I'll provide the instructions here:
NOTE: These instructions will not solve the problem. They are only intended to possibly gather some more information about the problem, which might provide a clue that leads to a solution.
During all this, keep an eye out for anything that doesn't match the expected behavior as described at each step.
- Open the following folder in Windows "File Explorer":
ⓘ Note that theC:\Users\<username>\AppData\Local\Arduino15\packages\builtin\tools\serial-discoveryAppDatafolder is hidden by default in "File Explorer". You can make it visible by opening the "View" menu, then checking the box next to "☐ Hidden items". - The
serial-discoveryfolder will contain a subfolder for each of the versions of serial-discovery which are installed on your computer.
For example:serial-discovery/ ├── 1.3.0/ ├── 1.3.0-rc1/ └── 1.3.2/ - Hold the Shift key while clicking the right hand button on the mouse on the folder with the highest version (
1.3.2in the example above). - From the context menu, click "Open PowerShell window here".
PowerShell will now open. - Type the following command:
serial-discovery - Press the Enter key.
serial-discovery will now start. There won't be any obvious sign of this other than that there is no longer a command prompt at the cursor in the terminal. - Type the following command:
HELLO 1 "arduino-cli 0.20.2" - Press the Enter key.
You should now see a response printed exactly like this:{ "eventType": "hello", "protocolVersion": 1, "message": "OK" } - Unplug your Arduino board from your computer if you have it plugged in.
- Type the following command:
START_SYNC - Press the Enter key.
You should now see a response printed exactly like this:
You might also see some additional objects in the output depending on which serial ports are available on your computer.{ "eventType": "start_sync", "message": "OK" } - Plug your Arduino board into your computer.
You should now see a response printed that looks something like this:
ⓘ This is only an example of what you might see. The output will be different depending on the board you connected.{ "eventType": "add", "port": { "address": "COM42", "label": "COM42", "protocol": "serial", "protocolLabel": "Serial Port (USB)", "properties": { "pid": "0x804e", "vid": "0x2341", "serialNumber": "EBEABFD6514D32364E202020FF10181E" } } } - Unplug your Arduino board from your computer.
You should now see a response printed that looks something like this:
ⓘ This is only an example of what you might see. The{ "eventType": "remove", "port": { "address": "COM42", "protocol": "serial" } }addressfield value should be the same as the "add" event you saw when you plugged the board in.
You should continue to see the same results if you repeat steps (12) and (13).
Once you are done with your experiments with the "serial-discovery" tool, follow these instructions to exit:
- Type the following command:
STOP - Press the Enter key.
You should now see a response printed exactly like this:{ "eventType": "stop", "message": "OK" } - Type the following command:
QUIT - Press the Enter key.
You should now see a response printed exactly like this:
You should now be back at the shell command line.{ "eventType": "quit", "message": "OK" }