element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet & Tria Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • About Us
    About the element14 Community
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Japan
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      •  Vietnam
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Arduino
  • Products
  • More
Arduino
Arduino Forum Anyone Have stability issues with Arduino Uno Q?
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Arduino to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 18 replies
  • Subscribers 412 subscribers
  • Views 1079 views
  • Users 0 members are here
  • On the line design challenge
  • arduino uno q
  • arduino
Related

Anyone Have stability issues with Arduino Uno Q?

SensoredHacker0
SensoredHacker0 4 months ago

So im at my PC typing away. The Uno Q ran my code on the first try on the first day i got it, a couple days ago.
made some more tests, for 2 days everything was working great. Then, without warning, did not move it, or touch it, it stopped.
ok fine I guess. Then I tried to upload new test code. it compiles, and claims to have been uploaded. but the code doesnt work. 


The hardware which was attached, when it failed:
a Max33041E shield, and the Ethernet R3 shield. these had been working for a couple days straight. 

Not like the code is buggy, but like it doesn't even init the serial print lines. 
bash my head on the wall for a while. 
Press Reset. nothing. Un plug it, wait, re insert usb power.
$dmesg shows it, loading without issue.  

Pull the shields off, load blink. same thing, it compiles, and claims to upload, but the code never runs. 

I haven't reinstalled the boot-loader, by the time I thought to try that, I'd already gone to bed. 
But I've never had such random problems before. Ive got arduino running in projects that have run for 6 years straight not problem.

besides reloading the bootloader and one have some ideas?


Are there stability issues with the Arduino Uno Q I should know about?

Perhaps the most frustrating thing was that the LED matrix was making little hearts and arduino logos the whole time. 
meanwhile blink wont run. 

  • Sign in to reply
  • Cancel

Top Replies

  • shabaz
    shabaz 4 months ago in reply to ralphjy +4
    I'm glad you guys are investigating the Q and working through the issues. It will help everyone. However, got to strongly disagree with this: The Q can't really be expected to be compared reliability…
  • ralphjy
    ralphjy 4 months ago +3
    The Q can't really be expected to be compared reliability/stability wise with previous Arduinos. With the new hybird MPU/MCU structure it is going to have a lot more issues than the MCU only boards. I…
  • ralphjy
    ralphjy 4 months ago in reply to shabaz +2
    I agree with your comments, but just to clarify what I meant - the Q has much more complexity and many more points of failure, both in hardware and software. I do think the current implementation is faulty…
Parents
  • SensoredHacker0
    SensoredHacker0 4 months ago

    Welp, I re-flashed the linux image, but the arduino bits are still doing the same thing. it says the code uploaded but doesnt run it.
     so then IDK i messed with it ALOT.

    My conclusion:
    The Uno Q, despite appearing to be functional in the traditional arduino toolchain is not actually, compatible with it, and subject to breaking if you try to to use it the same way.
     
    Saying it another way, The integration of Arduino Uno Q is not complete. the code examples for everything are not going to work right, and the IDE is not going to tell you.

    so then I got on the shell. and wrote code from there, it worked, but, no serial.

    so then more digging:
    you can to this to build and compile in the same step, which was a function of the build command prior to Arduino's acquisition.
    Evidently, just pressing build doesn't save and compile you code as it once did. 
    $ arduino-cli compile --upload -p /dev/ttyACM0 --fqbn arduino:zephyr:unoq .

    Here is a corrected blink.ino for the Uno Q.

    #include <Arduino_RouterBridge.h>

    void setup() {
      Bridge.begin();
      Monitor.begin();
      pinMode(LED_BUILTIN, OUTPUT);
      Monitor.println("BOOT");
    }

    void loop() {
      Monitor.println("Off");
      digitalWrite(LED_BUILTIN, HIGH);
      delay(400);

      Monitor.println("On");
      digitalWrite(LED_BUILTIN, LOW);
      delay(400);
    }


    https://forum.arduino.cc/t/arduino-uno-q-via-ide-no-serial-monitor-output/1411255/21?page=2

    https://docs.arduino.cc/tutorials/uno-q/user-manual/

    "Note: Serial still works over UART"

    I'd say thats a lie, but it was working for the first few days, which is very confusing. 
    Its like someone came in an broke all the macros. I can write my own, now that I have a better idea why they are broken. 
    I just wish we werent pretending they we're broken. would have saved me several hours, and much frustration.
    For real, why would we mess with the serial library??? you know how much stuff that breaks??

     $tio /dev/ttyACM0 -b 9600


    herdeedur.

    • Cancel
    • Vote Up -1 Vote Down
    • Sign in to reply
    • Cancel
Reply
  • SensoredHacker0
    SensoredHacker0 4 months ago

    Welp, I re-flashed the linux image, but the arduino bits are still doing the same thing. it says the code uploaded but doesnt run it.
     so then IDK i messed with it ALOT.

    My conclusion:
    The Uno Q, despite appearing to be functional in the traditional arduino toolchain is not actually, compatible with it, and subject to breaking if you try to to use it the same way.
     
    Saying it another way, The integration of Arduino Uno Q is not complete. the code examples for everything are not going to work right, and the IDE is not going to tell you.

    so then I got on the shell. and wrote code from there, it worked, but, no serial.

    so then more digging:
    you can to this to build and compile in the same step, which was a function of the build command prior to Arduino's acquisition.
    Evidently, just pressing build doesn't save and compile you code as it once did. 
    $ arduino-cli compile --upload -p /dev/ttyACM0 --fqbn arduino:zephyr:unoq .

    Here is a corrected blink.ino for the Uno Q.

    #include <Arduino_RouterBridge.h>

    void setup() {
      Bridge.begin();
      Monitor.begin();
      pinMode(LED_BUILTIN, OUTPUT);
      Monitor.println("BOOT");
    }

    void loop() {
      Monitor.println("Off");
      digitalWrite(LED_BUILTIN, HIGH);
      delay(400);

      Monitor.println("On");
      digitalWrite(LED_BUILTIN, LOW);
      delay(400);
    }


    https://forum.arduino.cc/t/arduino-uno-q-via-ide-no-serial-monitor-output/1411255/21?page=2

    https://docs.arduino.cc/tutorials/uno-q/user-manual/

    "Note: Serial still works over UART"

    I'd say thats a lie, but it was working for the first few days, which is very confusing. 
    Its like someone came in an broke all the macros. I can write my own, now that I have a better idea why they are broken. 
    I just wish we werent pretending they we're broken. would have saved me several hours, and much frustration.
    For real, why would we mess with the serial library??? you know how much stuff that breaks??

     $tio /dev/ttyACM0 -b 9600


    herdeedur.

    • Cancel
    • Vote Up -1 Vote Down
    • Sign in to reply
    • Cancel
Children
No Data
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2026 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube