🤖Have you ever tried Chat.M5Stack.com before asking??😎
    M5Stack Community
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    M5STACK FIRE hangs on Serial.begin

    Scheduled Pinned Locked Moved Arduino
    2 Posts 2 Posters 3.6k Views 1 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • I Offline
      ispybadguys
      last edited by

      Why doesn't this code work. It used to work fine. Any attempt to set the rate to 9600 hangs no matter where the Serial.begin is placed in the code it runs fine until it hits the Serial.begin();

      #include <M5Stack.h>

      void setup() {
      M5.begin();
      Serial.begin(9600);
      while (true) {Serial.println("works");}
      }
      void loop() {
      }

      The result I get with debug verbose and 115200 baud on the Serial Monitor is
      [D][esp32-hal-psram.c:47] psramInit(): PSRAM enabled
      09:24:43.911 -> M5Stack initializing...O⸮

      Then nothing

      1 Reply Last reply Reply Quote 0
      • M Offline
        macsbug
        last edited by macsbug

        Hello @ispybadguys

        "SerialEnable =true" is set.

        System:begin()
        void begin(bool LCDEnable=true, bool SDEnable=true, bool SerialEnable=true, bool I2CEnable=false);
        https://github.com/m5stack/m5-docs/blob/master/docs/en/api/system.md

        Exsample
        M5.begin(true, true, false, true);
        Serial.begin(9600);

        1 Reply Last reply Reply Quote 0

        Hello! It looks like you're interested in this conversation, but you don't have an account yet.

        Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

        With your input, this post could be even better 💗

        Register Login
        • First post
          Last post