-
-
Notifications
You must be signed in to change notification settings - Fork 7k
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
Allow multiple Serial Monitor windows. Merge input from multiple ports into a single Serial Montor window. #6490
Comments
Duplicate of arduino/arduino-ide#2438 (and note that some of this functionality is available when using the Arduino Web Editor).
Duplicate of #2680 AFAIK 4 and 5 are original feature requests. In the Arduino world what you refer to as a "terminal window" is called the Serial Monitor. We welcome bug reports and feature requests but in the future please take the time to search for existing open and closed issues and pull requests before submitting an issue: Please keep each issue to a single topic. Otherwise it is more difficult to label, assign, find in search results, and track their progress and the discussion is likely to get fragmented.
See the comments in #2680. It sounds like a pull request for this fix would be welcome. |
You can open several instance of IDE Arduino by double click several time on arduino.exe, each have a separated serail port and monitor. After open file.ino in each instance of IDE Arduino. The worry is that it is not yet possible to have one color for each instance of IDE Arduino. I'm trying to figure out how to compile several Arduino IDEs, just by changing the color in the source code, to get arduino_red.exe, arduino_green.exe, arduino_yellow.exe. Maybe it is possible to write skin for IDE Arduibo ? |
Full support (without the multiple instances hack required by Arduino IDE 1.x) for selecting a different board+port in each Arduino IDE window and having a Serial Monitor open on each has been added in Arduino IDE 2.x.
Serial Monitor is currently part of the Arduino IDE 2.x window. The ability to make this optional is tracked at arduino/arduino-ide#289
We are declining to add this feature. It will be best to simply use separate Serial Monitors for each port. |
Whilst I appreciate that the current system is fine for beginners who work on one project at a time, you really need to address the cluster-f#&k centered around configuration. if one wants to work on code that (for example) establishes communication between 2 boards, it rapidly becomes an issue. even if they are identical boards running different code with identical build settings but are connected on a different usb port, it's very easy to send the wrong code to the wrong port.
so here's what i suggest
add a checkbox in the configuration that enables "per project settings". leaving this unchecked (the default) would not change anything about how configuration is handled, meaning it's backwardly compatiable for users who want to keep the status quo, or learners who find the idea of per project settings daunting.
with the checkbox checked, all settings that affect how a project is built or uploaded are saved along with the project. this includes the port being used, the board type, library setttings, weather you have the terminal window open, etc etc.
it's fair enough that you only want one compile session happening at a time. but for goodness sake, if you start compiling a project then switch focus in the ide to another project, don't just start logging build messages to the new project window. this is stupid. keep the messages in the project window they belong to, and just disable the build/upload button for any other project. this means you can go and edit some other project while one is being built, and return to the presumably built project later to see how it's is getting on.
terminal windows. there is no sane reason you can't have multiple terminal windows open at once, and i'd suggest you allow them to be docked to the project window they are associated with. this means if you are debugging code that deals with 2 boards at once, you don't need to resort to third party terminal windows to see the serial output of both boards at once.
a nice to have power user feature would be to allow the terminal window output to be merged into one window with different colours per serial port they are connected to. obviously any input needs to be disabled, or clearly indicated which serial port you are sending to if you happen to start typing, but let's face it, most users use the terminal to display logging info, and ignore the fact they can type stuff into the terminal. so why not just have a keyboard mute button, which can be optionally assigned to send to a specific board if that's what they want.
ok implementing all of these changes will require a bit of work, but the first few (and fixing the compiler focus issue) should fairly trivial, and will hopefully stem the tide of users abandoning your ide in favour of other more sanely managed solutions.
The text was updated successfully, but these errors were encountered: