Skip to content
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

Serial Monitor stops printing output #2618

Open
3 tasks done
galinawind opened this issue Jan 21, 2025 · 5 comments
Open
3 tasks done

Serial Monitor stops printing output #2618

galinawind opened this issue Jan 21, 2025 · 5 comments
Assignees
Labels
status: waiting for information More information must be provided before work can proceed topic: code Related to content of the project itself topic: serial monitor Related to the Serial Monitor type: imperfection Perceived defect in any part of project

Comments

@galinawind
Copy link

galinawind commented Jan 21, 2025

Describe the problem

The serial monitor output works for anything in the setup() subroutine. The serial monitor stops working for anything in loop().

This problem started after I upgraded from Ubuntu 18.04 to Ubuntu 20.04 LTS.

I am doing a complicated operation set using a NeoKey 1x4 and I need to see that the buttons are registering callbacks correctly. I would start the program. If I immediately hit one of the keys, it would output for some time. If I pause for even a tiny bit, the serial monitor freezes. If I navigate to a web browser or something, the serial monitor freezes. I can un-freeze it temporarily by randomly changing the baud rate from the drop-down menu. Any change at all, to anything at all, unfreezes the monitor, but again, only temporarily.

To reproduce

  1. Connect Adafruit Feather RP2040 and NeoKey 1x4 with a StemmaQT cable.
  2. Plug the lot into the USB port.
  3. Upload the basic_callback sketch to the Adafruit Feather RP2040 board.
  4. Push the buttons on the NeoKey 1x4 a couple of times so that you see the printouts.
  5. Navigate away from the IDE to a web browser, or any other window.
  6. Come back to the IDE
    🐛 Nothing is being printed anymore.
  7. Change the baud rate from the drop-down menu on the serial monitor.
    You will see that the printouts are appearing again.
  8. Stop interacting for like a count of 5.
    🐛 The serial monitor will freeze again.

Expected behavior

Serial Monitor does not freeze.

Arduino IDE version

2.3.2 and 2.3.4

Operating system

Linux

Operating system version

Ubuntu 20.04 LTS

Additional context

Discussion: https://forum.arduino.cc/t/arduino-ide-and-ubuntu-20-04-serial-monitor-problems/1345265


The fault does not occur when I use Serial Monitor on my Intel MacBook Pro.

Issue checklist

  • I searched for previous reports in the issue tracker
  • I verified the problem still occurs when using the latest nightly build
  • My report contains all necessary details
@galinawind galinawind added the type: imperfection Perceived defect in any part of project label Jan 21, 2025
@per1234 per1234 added topic: code Related to content of the project itself topic: serial monitor Related to the Serial Monitor labels Jan 22, 2025
@per1234 per1234 changed the title Serial output stops responding Ubuntu 20.04LTS Serial Monitor stops printing output Jan 22, 2025
@per1234 per1234 self-assigned this Jan 22, 2025
@per1234
Copy link
Contributor

per1234 commented Jan 22, 2025

Thanks for your report @galinawind. Please tell us whether the fault still occurs if you upload this simple sketch to the board:

void setup() {
  Serial.begin(9600);
}

void loop() {
  Serial.println("hello");
  delay(1000);
}

@per1234 per1234 added the status: waiting for information More information must be provided before work can proceed label Jan 22, 2025
@galinawind
Copy link
Author

galinawind commented Jan 22, 2025

There is no fault if this simple sketch runs. To be exact, there is never any fault. There is never any error anywhere. The Serial monitor just stops working.

@galinawind

This comment has been minimized.

@per1234
Copy link
Contributor

per1234 commented Jan 23, 2025

there is never any fault. There is never any error anywhere. The Serial monitor just stops working.

When I said "fault", I was referring to the problem you are reporting:

the serial monitor freezes

Now please provide the information I requested in my previous comment: After you upload the simplified sketch to your board, does the Serial Monitor freeze on your Linux computer like it does when the board is running the complex "basic_callback" sketch?

@galinawind
Copy link
Author

No, the serial monitor does not freeze when I run a simple sketch.

I now have a work-around. Everything works perfectly if I use the Mac build of the 2.3.4 IDE. I don't like Macs and my Intel MacBook Pro is a piece of trash, but this one thing works on it. Hopefully you can fix the Linux build at some point.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: waiting for information More information must be provided before work can proceed topic: code Related to content of the project itself topic: serial monitor Related to the Serial Monitor type: imperfection Perceived defect in any part of project
Projects
None yet
Development

No branches or pull requests

2 participants