<?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[M5stack basic core battery power on issue (ip5306 strange power management)]]></title><description><![CDATA[<p dir="auto">Hi<br />
I have few M5stack basic core modules and on a couple of modules I have a crazy behaviour with power management</p>
<p dir="auto">I power M5stack via external battery (3.7v LiPo) so connecting it on the expansion bus via GND and Battery pin (pin 1-3-5 and 30) using a custom made expansion board</p>
<p dir="auto">If I power the core via USB C connectors it powers on regularly and the battery is charged via IP5306 chip<br />
If I disconnect the USB C after the battery is charged the core stay ON and if I press the power button once I can do reset and reboot the core</p>
<p dir="auto">so this gives me the idea that the battery connection via expansion bus is OK (it charges and it provides 3.7v to BAT pin of ip5306)</p>
<p dir="auto"><strong>than if I power off with double click of the power button there is no way to power on again !    It seems like the IP5306 does not weak up and start the circuit</strong></p>
<p dir="auto">Notice that I have same behaviour with the origina bottom that contains the small battery so this exclude a problem with my custom board</p>
<p dir="auto">Than suspecting some issue on my proto board bus connection I have inserted in the middle a original M5 FAN module..that is basically a passive pass trough module with FAN connected to 5V</p>
<p dir="auto">And magically now I can power on and off regularly the core!</p>
<p dir="auto">Just to have a final proof I keep the fan module in the middle and disconnect the fan (so reducing the overall l load) and again if I shut down the core no way to power on again</p>
<p dir="auto">Since all the power management is done by ip5306 chip (no bootloader sw nor application SW is involved) really don't understand what is wrong and why only on few cores are affected</p>
<p dir="auto">Could be a faulty ip5306 ?</p>
<p dir="auto">any suggestion to recover may cores is appreciated</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/topic/979/m5stack-basic-core-battery-power-on-issue-ip5306-strange-power-management</link><generator>RSS for Node</generator><lastBuildDate>Sat, 14 Mar 2026 12:10:26 GMT</lastBuildDate><atom:link href="https://community.m5stack.com/topic/979.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 04 May 2019 20:39:28 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Tue, 27 Aug 2019 20:06:08 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1445">@ckuehnel</a> said in <a href="/post/4230">M5stack basic core battery power on issue (ip5306 strange power management)</a>:</p>
<blockquote>
<p dir="auto">Here is a working code example:</p>
<p dir="auto">/*</p>
<ul>
<li>Test of IP5306 functions<br />
*/</li>
</ul>
<p dir="auto">#include &lt;M5Stack.h&gt;</p>
<p dir="auto">void setup()<br />
{<br />
// initialize the M5Stack object<br />
M5.begin();<br />
Wire.begin(); // required to access IP5306<br />
M5.Lcd.fillScreen(BLACK);<br />
M5.Lcd.setCursor(0, 10);<br />
M5.Lcd.setTextColor(WHITE);<br />
M5.Lcd.setTextSize(2);<br />
M5.Lcd.printf("IP5306 Function Test\r\n");</p>
<p dir="auto">if(!M5.Power.canControl())<br />
{<br />
M5.Lcd.setTextColor(RED);<br />
M5.Lcd.printf("No communication with IP5306 chip");<br />
while(1);<br />
}<br />
}</p>
<p dir="auto">void loop()<br />
{<br />
M5.Lcd.fillRect(0,180,360,60,0);<br />
uint8_t bat = M5.Power.getBatteryLevel();<br />
M5.Lcd.setCursor(0,180);<br />
if (M5.Power.isCharging()) M5.Lcd.printf("Battery is charging\r\n");<br />
else M5.Lcd.printf("Battery is not charging\r\n");<br />
M5.Lcd.printf("Battery Level %d", bat);<br />
M5.Lcd.progressBar(0, 220, 360, 20, bat);<br />
delay(5000);<br />
}</p>
</blockquote>
<p dir="auto">Hi, doesn't compile for me!!!</p>
<p dir="auto">this is the arduino IDE output:</p>
<pre><code>Arduino: 1.8.7 (Mac OS X), Board: "M5Stack-Core-ESP32, QIO, 80MHz, Default, 921600, None"

Build options changed, rebuilding all
/Users/AD/Documents/Arduino/libraries/M5Stack/src/utility/Power.cpp: In member function 'void POWER::powerOFF()':
/Users/AD/Documents/Arduino/libraries/M5Stack/src/utility/Power.cpp:361:28: error: 'gpio_deep_sleep_hold_dis' was not declared in this scope
   gpio_deep_sleep_hold_dis();

                            ^
Multiple libraries were found for "SPI.h"
 Used: /Users/AD/Documents/Arduino/hardware/espressif/esp32/libraries/SPI
 Not used: /Users/AD/Documents/Arduino/libraries/SPI
Multiple libraries were found for "SD.h"
 Used: /Users/AD/Documents/Arduino/hardware/espressif/esp32/libraries/SD
 Not used: /Users/AD/Documents/Arduino/libraries/SD
 Not used: /private/var/folders/f3/0kf10ljj6sj4q4twsw_vtxrw0000gn/T/AppTranslocation/395E70C5-F1F6-4076-AA11-9C132A2C6ACF/d/Arduino 1.8.7.app/Contents/Java/libraries/SD
exit status 1
Error compiling for board M5Stack-Core-ESP32.

This report would have more information with
"Show verbose output during compilation"
option enabled in File -&gt; Preferences.

</code></pre>
<p dir="auto">tnks</p>
]]></description><link>https://community.m5stack.com/post/5325</link><guid isPermaLink="true">https://community.m5stack.com/post/5325</guid><dc:creator><![CDATA[cepics]]></dc:creator><pubDate>Tue, 27 Aug 2019 20:06:08 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Sat, 11 May 2019 11:57:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1445">@ckuehnel</a> Thanks friend.</p>
]]></description><link>https://community.m5stack.com/post/4233</link><guid isPermaLink="true">https://community.m5stack.com/post/4233</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Sat, 11 May 2019 11:57:01 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Sat, 11 May 2019 11:55:04 GMT]]></title><description><![CDATA[<p dir="auto">Here is a working code example:</p>
<p dir="auto">/*</p>
<ul>
<li>Test of IP5306 functions<br />
*/</li>
</ul>
<p dir="auto">#include &lt;M5Stack.h&gt;</p>
<p dir="auto">void setup()<br />
{<br />
// initialize the M5Stack object<br />
M5.begin();<br />
Wire.begin(); // required to access IP5306<br />
M5.Lcd.fillScreen(BLACK);<br />
M5.Lcd.setCursor(0, 10);<br />
M5.Lcd.setTextColor(WHITE);<br />
M5.Lcd.setTextSize(2);<br />
M5.Lcd.printf("IP5306 Function Test\r\n");</p>
<p dir="auto">if(!M5.Power.canControl())<br />
{<br />
M5.Lcd.setTextColor(RED);<br />
M5.Lcd.printf("No communication with IP5306 chip");<br />
while(1);<br />
}<br />
}</p>
<p dir="auto">void loop()<br />
{<br />
M5.Lcd.fillRect(0,180,360,60,0);<br />
uint8_t bat = M5.Power.getBatteryLevel();<br />
M5.Lcd.setCursor(0,180);<br />
if (M5.Power.isCharging()) M5.Lcd.printf("Battery is charging\r\n");<br />
else M5.Lcd.printf("Battery is not charging\r\n");<br />
M5.Lcd.printf("Battery Level %d", bat);<br />
M5.Lcd.progressBar(0, 220, 360, 20, bat);<br />
delay(5000);<br />
}</p>
]]></description><link>https://community.m5stack.com/post/4230</link><guid isPermaLink="true">https://community.m5stack.com/post/4230</guid><dc:creator><![CDATA[ckuehnel]]></dc:creator><pubDate>Sat, 11 May 2019 11:55:04 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 17:35:49 GMT]]></title><description><![CDATA[<p dir="auto">As an addendum to this, the IP5306 is available from LCSC<br />
<a href="https://lcsc.com/product-detail/PMIC-Battery-Management_IP5306_C181692.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://lcsc.com/product-detail/PMIC-Battery-Management_IP5306_C181692.html</a></p>
]]></description><link>https://community.m5stack.com/post/4215</link><guid isPermaLink="true">https://community.m5stack.com/post/4215</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Thu, 09 May 2019 17:35:49 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 14:09:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/976">@arzaman</a> said in <a href="/post/4212">M5stack basic core battery power on issue (ip5306 strange power management)</a>:</p>
<blockquote>
<p dir="auto">I got also documentation for power management</p>
<p dir="auto"><a href="https://docs.m5stack.com/#/en/api/power?id=getbatterylevel" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.m5stack.com/#/en/api/power?id=getbatterylevel</a></p>
<p dir="auto">clear and comprehnesive</p>
<p dir="auto">all ok issue "solved"</p>
<p dir="auto">Davide</p>
</blockquote>
<p dir="auto">If you are getting an understanding of the power management of the IP5306, would you mind helping me write it up for my book please?<br />
You will be credited for the information in the book.</p>
]]></description><link>https://community.m5stack.com/post/4213</link><guid isPermaLink="true">https://community.m5stack.com/post/4213</guid><dc:creator><![CDATA[ajb2k3]]></dc:creator><pubDate>Thu, 09 May 2019 14:09:56 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 13:14:12 GMT]]></title><description><![CDATA[<p dir="auto">I got also documentation for power management</p>
<p dir="auto"><a href="https://docs.m5stack.com/#/en/api/power?id=getbatterylevel" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.m5stack.com/#/en/api/power?id=getbatterylevel</a></p>
<p dir="auto">clear and comprehnesive</p>
<p dir="auto">all ok issue "solved"</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/post/4212</link><guid isPermaLink="true">https://community.m5stack.com/post/4212</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Thu, 09 May 2019 13:14:12 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 12:58:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/976">@arzaman</a> Thanks. Your seriousness really touched me.</p>
]]></description><link>https://community.m5stack.com/post/4211</link><guid isPermaLink="true">https://community.m5stack.com/post/4211</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Thu, 09 May 2019 12:58:11 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 12:52:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1152">@liushasha</a> no problem...I had an old schema and did not check the note you add to the new one.  Your documentation level is quite good and indeed If there is a problem I see there is quite good support on the forum and community ... in a way or another I get the info :-)</p>
<p dir="auto">most important that now I have more understanding of power management and the fact I can control battery via SW is very important (M5stack is perfect for portable applications battery pwered)</p>
<p dir="auto">could be VERY USEFUL a sort of <strong>translation of IP5306 Chinese data sheet</strong><br />
there are few register that provide info but not able to unerstand the usage !!</p>
<p dir="auto">from various source I undertand that<br />
0x78 provides battery level (25/50/75/100)<br />
0x71 battery charging level (but not sure)<br />
what about the other registers ? what about control register ??</p>
<p dir="auto">simple table with register and functions/value will help a lot "non Chinese" speaking people<br />
hope to see soon in the documentation !</p>
<p dir="auto">thanks</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/post/4210</link><guid isPermaLink="true">https://community.m5stack.com/post/4210</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Thu, 09 May 2019 12:52:18 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 12:45:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/976">@arzaman</a> The IP5306 which is iic version is customized. The best way for you is to ask saler for a replacement or ask our saler for a new core or iic version IP5306. Sorry for the inconvenience !</p>
]]></description><link>https://community.m5stack.com/post/4209</link><guid isPermaLink="true">https://community.m5stack.com/post/4209</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Thu, 09 May 2019 12:45:17 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 12:39:43 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/481">@m5-docs</a>  I think we can conclude that is and "HW failure of IP5306"  no big issue I can use this core for the lab or for application with no battery</p>
<p dir="auto">maybe if you can send me a replacement or tell me where to buy the I2C version of IP5306  I can try to replace by myself</p>
<p dir="auto">thanks for the support anyway</p>
]]></description><link>https://community.m5stack.com/post/4208</link><guid isPermaLink="true">https://community.m5stack.com/post/4208</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Thu, 09 May 2019 12:39:43 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 11:34:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/976">@arzaman</a> I apologize for the misleading on schematics, it is surely our mistake, we didn't well organize all of the material. We are working on it, will have better material come out soon.</p>
]]></description><link>https://community.m5stack.com/post/4207</link><guid isPermaLink="true">https://community.m5stack.com/post/4207</guid><dc:creator><![CDATA[liushasha]]></dc:creator><pubDate>Thu, 09 May 2019 11:34:20 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 09:57:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/976">@arzaman</a> Really sorry about that. I do not clearly know your problem.</p>
<p dir="auto">"-if I disconnect USB using core bottom battery the core stays on and I can do reset with power on again<br />
-if I power off (double click) no change to power on again"</p>
]]></description><link>https://community.m5stack.com/post/4204</link><guid isPermaLink="true">https://community.m5stack.com/post/4204</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Thu, 09 May 2019 09:57:26 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 09:44:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/481">@m5-docs</a> Thanks for the suggestion... and you are right my core has I2C version of IP5306 !  Sorry if I miss it</p>
<p dir="auto">The bus scan found the IP5306 at address 0x75<br />
I upload a simple sketch to monito battery level and it works</p>
<p dir="auto"><img src="/assets/uploads/files/1557394847171-16b57fcb-ad0f-435d-9d35-eca3088a4578-image.png" alt="0_1557394841048_16b57fcb-ad0f-435d-9d35-eca3088a4578-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">this is good but still don't solve my problem<br />
-if I power m5 core with USB all ok<br />
-if I disconnect USB using core bottom battery the core stays on and I can do reset with power on again<br />
-if I power off (double click) no change to power on again</p>
<p dir="auto">anything now that I can modify in IP5306 register to fix the power on ?</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/post/4203</link><guid isPermaLink="true">https://community.m5stack.com/post/4203</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Thu, 09 May 2019 09:44:29 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 07:15:39 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1152">@liushasha</a> said in <a href="/post/4194">M5stack basic core battery power on issue (ip5306 strange power management)</a>:</p>
<blockquote>
<p dir="auto">This schematic is wrong, every core is used i2c ip5306.</p>
</blockquote>
<p dir="auto">Really ? I don't know if this is a good or a very bad news...<br />
having IP5306 with I2C and enable SW control of power management is nice but knowing that the official schematic where I have based the design of my custom HW and development of SW is not the real one really puzzle me !</p>
<p dir="auto">this is the official schema on github<br />
<a href="https://github.com/m5stack/M5-Schematic/blob/master/Core/Basic/M5-Core-Schematic(20171206).pdf" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5-Schematic/blob/master/Core/Basic/M5-Core-Schematic(20171206).pdf</a></p>
<p dir="auto">Is there an updated one ? are there other differences ??</p>
<p dir="auto">I know that M5Stack is not "open source" but without a real schema quite difficult to mange any HW/FW development</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/post/4202</link><guid isPermaLink="true">https://community.m5stack.com/post/4202</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Thu, 09 May 2019 07:15:39 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 03:18:16 GMT]]></title><description><![CDATA[<p dir="auto">Hello <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/976">@arzaman</a>, In order to confirm that if the IP5306 is IIC version on all CORE you have. It's better to download the following testing code.</p>
<p dir="auto"><a href="https://github.com/m5stack/M5Stack/tree/master/examples/Advanced/I2C_Tester" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/m5stack/M5Stack/tree/master/examples/Advanced/I2C_Tester</a></p>
]]></description><link>https://community.m5stack.com/post/4197</link><guid isPermaLink="true">https://community.m5stack.com/post/4197</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Thu, 09 May 2019 03:18:16 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 01:09:05 GMT]]></title><description><![CDATA[<p dir="auto">2 out of 12? that's pretty high rate. I thought its 1 out of ten.   I from M5Stack by the way. I will help you target the problem, and handle it afterward. I apologized for the bad experience.</p>
]]></description><link>https://community.m5stack.com/post/4196</link><guid isPermaLink="true">https://community.m5stack.com/post/4196</guid><dc:creator><![CDATA[liushasha]]></dc:creator><pubDate>Thu, 09 May 2019 01:09:05 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Thu, 09 May 2019 01:05:46 GMT]]></title><description><![CDATA[<p dir="auto">This schematic is wrong, every core is used i2c ip5306.</p>
]]></description><link>https://community.m5stack.com/post/4194</link><guid isPermaLink="true">https://community.m5stack.com/post/4194</guid><dc:creator><![CDATA[liushasha]]></dc:creator><pubDate>Thu, 09 May 2019 01:05:46 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Wed, 08 May 2019 22:27:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1152">@liushasha</a> maybe you refer to a different Core version (fire ??)<br />
My M5stack BASIC core comes with IP5306 that has no I2C interface to ESP32 (should be very very useful to have and move power management to SW level)</p>
<p dir="auto">here the schematic (or at lease what is public) of the power management...now SW no I2C</p>
<p dir="auto"><img src="/assets/uploads/files/1557354347890-93ae07c0-0a4c-4da0-802b-85772e207460-image.png" alt="0_1557354344922_93ae07c0-0a4c-4da0-802b-85772e207460-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">so I assume a "faulty" core (I have two in a lot of 12)</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/post/4193</link><guid isPermaLink="true">https://community.m5stack.com/post/4193</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Wed, 08 May 2019 22:27:19 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Wed, 08 May 2019 01:48:50 GMT]]></title><description><![CDATA[<p dir="auto">HI, <a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/976">@arzaman</a>, this IP5306 is i2c version, it can be programmed via the i2c protocol. Since the only problem is just the shutdown operation. the chance that the ic is totally broken on the hardware side is pretty rare. so could it be possible that you have accidentally modified the code?  Would you please refresh the firmware by M5burner to exclude the software problem?  Thanks</p>
]]></description><link>https://community.m5stack.com/post/4182</link><guid isPermaLink="true">https://community.m5stack.com/post/4182</guid><dc:creator><![CDATA[liushasha]]></dc:creator><pubDate>Wed, 08 May 2019 01:48:50 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Tue, 07 May 2019 14:02:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/1152">@liushasha</a>  battery has no "protection" circuit ...all is manged by IP5306<br />
anyway removed and reconnected the LiPo battery (or the core bottom) few times and always same behaviour<br />
and more over same battery on other M5stack basic core works perfeclty</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/post/4179</link><guid isPermaLink="true">https://community.m5stack.com/post/4179</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Tue, 07 May 2019 14:02:34 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Tue, 07 May 2019 09:59:59 GMT]]></title><description><![CDATA[<p dir="auto">Seems like the battery enters into protection mode after power off. Could you please try to pull out the battery in the bottom and plug in back in to restart the battery and try again.</p>
]]></description><link>https://community.m5stack.com/post/4173</link><guid isPermaLink="true">https://community.m5stack.com/post/4173</guid><dc:creator><![CDATA[liushasha]]></dc:creator><pubDate>Tue, 07 May 2019 09:59:59 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Tue, 07 May 2019 07:07:23 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/481">@m5-docs</a> sorry but don't understand the question</p>
<p dir="auto">with USB Type C off course the M5 basic core boots regularly...the problem is with the battery power suppy either basic bottom or my custom expansion baord.  If I shut down the M5 basic core with double clik and battery power no chance to restart</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/post/4167</link><guid isPermaLink="true">https://community.m5stack.com/post/4167</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Tue, 07 May 2019 07:07:23 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Mon, 06 May 2019 09:23:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://community.m5stack.com/uid/976">@arzaman</a> How about BASIC Core boots only with Type-C USB cable without BASIC bottom?</p>
]]></description><link>https://community.m5stack.com/post/4147</link><guid isPermaLink="true">https://community.m5stack.com/post/4147</guid><dc:creator><![CDATA[m5-docs]]></dc:creator><pubDate>Mon, 06 May 2019 09:23:15 GMT</pubDate></item><item><title><![CDATA[Reply to M5stack basic core battery power on issue (ip5306 strange power management) on Sun, 05 May 2019 13:00:51 GMT]]></title><description><![CDATA[<p dir="auto">Here is a video showing the problem</p>
<p dir="auto">when I shut down the M5stack basic core no chance to boot again</p>
<p dir="auto"><a href="https://youtu.be/Z5uzDPFxiFM" target="_blank" rel="noopener noreferrer nofollow ugc">link text</a></p>
<p dir="auto">any idea so far ?</p>
<p dir="auto">Davide</p>
]]></description><link>https://community.m5stack.com/post/4139</link><guid isPermaLink="true">https://community.m5stack.com/post/4139</guid><dc:creator><![CDATA[arzaman]]></dc:creator><pubDate>Sun, 05 May 2019 13:00:51 GMT</pubDate></item></channel></rss>