<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[core2 not working]]></title><description><![CDATA[<p dir="auto">Hello,<br />
I have a core2 with which I have had problems since day 1. I had thrown it out, but now I'm giving it a ... try.<br />
I've compiled and uploaded many programs that come with the M5core2 library, but I haven't been able to get anything to work.</p>
<p dir="auto">For example the program:  In arduino ide:  examples -&gt;ESPInsights -&gt; DiagnosticsSmokeTest.</p>
<p dir="auto">the compiler throws following errors, but compiles and uploads ok<br />
WARNING: Category '' in library ESP Insights is not valid. Setting to 'Uncategorized'<br />
WARNING: Category '' in library ESP RainMaker is not valid. Setting to 'Uncategorized'<br />
WARNING: Category '' in library WiFiProv is not valid. Setting to 'Uncategorized'<br />
Sketch uses 905821 bytes (13%) of program storage space. Maximum is 6553600 bytes.<br />
Global variables use 46408 bytes (1%) of dynamic memory, leaving 4475576 bytes for local variables. Maximum is 4521984 bytes.<br />
<a href="http://esptool.py" target="_blank" rel="noopener noreferrer nofollow ugc">esptool.py</a> v4.5.1<br />
Serial port /dev/ttyACM0<br />
Connecting....</p>
<p dir="auto">upload goes ok, but the core2 does not show any sign of life.</p>
<p dir="auto">the serial console output:<br />
..ets Jul 29 2019 12:21:46</p>
<p dir="auto">rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)<br />
configsip: 0, SPIWP:0xee<br />
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00<br />
mode:DIO, clock div:1<br />
load:0x3fff0030,len:1344<br />
load:0x40078000,len:13964<br />
load:0x40080400,len:3600<br />
entry 0x400805f0</p>
<p dir="auto">and then an endless line of dots are shown on the serial console. No sign of life on the core2</p>
<p dir="auto">can anyone tell me what's wrong here ?</p>
]]></description><link>https://community.m5stack.com/topic/7634/core2-not-working</link><generator>RSS for Node</generator><lastBuildDate>Tue, 28 Apr 2026 21:12:22 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/7634.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 24 Jun 2025 12:54:01 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to core2 not working on Wed, 25 Jun 2025 18:59:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jbruggem" aria-label="Profile: jbruggem">@<bdi>jbruggem</bdi></a> Your first post shows that</p>
<ol>
<li>you haven't configured Arduino to configure code for the M5Stack Core2 which uses a different core and pin config to a base esp32.</li>
<li>The example you are using is not an M5Stack demo,</li>
<li>Arduino is missing Libraries.</li>
</ol>
<p dir="auto">All these errors point back to not have the M5Stack Core2 board type selected.</p>
]]></description><link>https://community.m5stack.com/post/29332</link><guid isPermaLink="true">https://community.m5stack.com/post/29332</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Wed, 25 Jun 2025 18:59:26 GMT</pubDate></item><item><title><![CDATA[Reply to core2 not working on Wed, 25 Jun 2025 09:46:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sirmichael" aria-label="Profile: SirMichael">@<bdi>SirMichael</bdi></a> I have done all that. As I wrote, I did start from an example in the IDE. The program compiles fine and gets loaded onto the core2, which it would not do if I'd choosen the wrong com port. I've even posted the output the core2 sent to the serial console, which would not happen if I'd choosen the wrong port.<br />
So no, your answer is not helpful, it mentions stuff I've done and described in my question.</p>
]]></description><link>https://community.m5stack.com/post/29329</link><guid isPermaLink="true">https://community.m5stack.com/post/29329</guid><dc:creator><![CDATA[jbruggem]]></dc:creator><pubDate>Wed, 25 Jun 2025 09:46:55 GMT</pubDate></item><item><title><![CDATA[Reply to core2 not working on Tue, 24 Jun 2025 16:37:17 GMT]]></title><description><![CDATA[<p dir="auto">I'm not an expert at this, but perhaps I can help some...</p>
<p dir="auto">I <strong>think</strong> you are using an ESP32 for a board.</p>
<p dir="auto">First of all, did you install the M5Stack boards on your Arduino IDE?  Reference this link:<br />
<a href="https://docs.m5stack.com/en/arduino/arduino_board" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.m5stack.com/en/arduino/arduino_board</a></p>
<p dir="auto">Make sure that you select the board correctly in the IDE:<br />
Tools/Board/M5Stack/M5Core2<br />
Make sure that you have the correct Comm Port.  Open your Device Manager, unplug the USB cable from the M5Stack and see which Comm Port goes away.  Plug it back in and use that Comm Port Number for the M5Core2.</p>
<p dir="auto">I'd suggest starting with one of the Examples from the IDE:<br />
File/Examples/M5Core2 (you may have to scroll al LONG way down).  Make sure you can load one of the example files to get started.   I'd suggest you look under "M5Unified".</p>
<p dir="auto">Try to do all of your development using</p>
<pre><code>#include &lt;M5Unified.h&gt;
</code></pre>
<p dir="auto">There may be some examples that have</p>
<pre><code>#include &lt;M5Core2.h&gt;
</code></pre>
<p dir="auto">but these are no longer supported.    All of the support is going in the the M5Unified branch so they don't have to support so many other products.</p>
<p dir="auto">I hope this helps.</p>
<p dir="auto">Sir Michael</p>
]]></description><link>https://community.m5stack.com/post/29323</link><guid isPermaLink="true">https://community.m5stack.com/post/29323</guid><dc:creator><![CDATA[SirMichael]]></dc:creator><pubDate>Tue, 24 Jun 2025 16:37:17 GMT</pubDate></item></channel></rss>