Navigation

    M5Stack Community

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    1. Home
    2. codewitch
    3. Topics
    C
    • Continue chat with codewitch
    • Start new chat with codewitch
    • Flag Profile
    • Profile
    • Following
    • Followers
    • Blocks
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by codewitch

    • C

      M5 Stack Core2 Firmware Stops Working on Reboot
      PRODUCTS • • codewitch

      2
      0
      Votes
      2
      Posts
      1387
      Views

      Hello @codewitch good news - your M5Core2 most likely is not defective. For me the issue is happening independently of whether M5Core2 is running from USB or battery. It always happens after a complete power loss. The reason it is not working as expected is that for some functions dealing with voltages you declared the parameter as float but then call them with big non float values. Here is what I changed in m5core2_power.cpp to make it work: //--fm Wire1.begin(22,23); Wire1.begin(21,22); //--fm mcu_voltage(3350); mcu_voltage(3.350); //--fm lcd_voltage(2800); lcd_voltage(2.800); //--fm ldo_voltage(2, 3300); //Periph power voltage preset (LCD_logic, SD card) ldo_voltage(2, 3.300); //Periph power voltage preset (LCD_logic, SD card) //--fm ldo_voltage(3, 2000); //Vibrator power voltage preset ldo_voltage(3, 2.000); //Vibrator power voltage preset Thanks Felix
    • C

      M5Stack Fire Turning Off After A Few Seconds
      M5Stack Fire • • codewitch

      2
      0
      Votes
      2
      Posts
      1147
      Views

      Hello @codewitch have you tried keeping it plugged in for a while to charge the battery? have you tried to run it w/o battery, e.g. with the M5GO bottom removed? Thanks Felix