diff --git a/docs/en/base/m5go_bottom2.md b/docs/en/base/m5go_bottom2.md
index e7913515..3a1385e4 100644
--- a/docs/en/base/m5go_bottom2.md
+++ b/docs/en/base/m5go_bottom2.md
@@ -60,6 +60,33 @@
+## EasyLoader
+
+>EasyLoader is a concise and fast program writer, which has a built-in case program related to the product. It can be burned to the main control by simple steps to perform a series of function verification. Please install the corresponding driver according to the device type. M5Core host [Please click here to view the CP210X driver installation tutorial](en/arduino/arduino_development), M5StickC/V/T/ATOM series can be used without driver)
+
+
+
+
+
+
+
+
+
+
+
Description:
+
IMU data acquisition, microphone data acquisition Display spectrum, control LED blinking.
+
+
+
+
+
## Pin Mapping
**SK6812-LED Bar**
@@ -121,7 +148,9 @@ Use with Arduino, please click [here](https://github.com/m5stack/M5-ProductExamp
\ No newline at end of file
diff --git a/docs/zh_CN/api/coreink/system_api.md b/docs/zh_CN/api/coreink/system_api.md
index b9b5ce25..0c7fca12 100644
--- a/docs/zh_CN/api/coreink/system_api.md
+++ b/docs/zh_CN/api/coreink/system_api.md
@@ -187,3 +187,36 @@ void loop() {
}
```
+## shutdown()
+
+### 函数重载1:
+
+关闭电源,再次启动需要通过PWR按键唤醒
+
+`void shutdown();`
+
+### 函数重载2:
+
+关闭电源,根据传入的延时秒数,在延时结束后通过RTC唤醒设备。
+
+`int shutdown( int seconds );`
+
+### 函数重载3:
+
+关闭电源,传入指定了某个时间点的RTC时间结构体,当符合该时间的`时`,`分`,`秒`的时候通过RTC唤醒设备。
+
+`int shutdown( const RTC_TimeTypeDef &RTC_TimeStruct);`
+
+### 函数重载4:
+
+关闭电源,传入指定了某个时间点的RTC时间结构体,当同时符合该时间点的`周数`,`天数`,`时间`的时通过RTC唤醒设备。
+
+`int shutdown( const RTC_DateTypeDef &RTC_DateStruct, const RTC_TimeTypeDef &RTC_TimeStruct);`
+
+
\ No newline at end of file
diff --git a/docs/zh_CN/base/m5go_bottom2.md b/docs/zh_CN/base/m5go_bottom2.md
index b45fd1d2..d20dde1c 100644
--- a/docs/zh_CN/base/m5go_bottom2.md
+++ b/docs/zh_CN/base/m5go_bottom2.md
@@ -6,7 +6,7 @@
## 描述
-**M5GO BOTTOM2** 是一款专为M5Core2设计的拓展型底座,底座集成了MPU6886六轴姿态传感器,数字麦克风(SPM1423),500mAh锂电池。提供两了组HY2.0-4P拓展接口将常用的ADC/DAC/UART引脚进行了引出,能够用于各类型传感器的接入。底座两侧分别为10颗可编程RGB灯(SK6812),配合磨砂透光材质遮光条,能够提供柔和舒适发光效果。底部采用pogo pin磁吸充电接口,当吸附充电底座时,电流将经过内置的TP4057充电芯片安全的流入内部电池。除充电功能外pogo pin接口对主控I2C总线进行了引出,这使得你能够通过磁吸的方式去外接拓展。内置吸附磁铁,背面采用兼容LEGO孔设计,能够与你的其他的LEGO结构设计无缝对接。
+**M5GO BOTTOM2** 是一款专为M5Core2设计的拓展型底座,底座集成了MPU6886六轴姿态传感器,数字麦克风(SPM1423),500mAh锂电池。两组HY2.0-4P拓展接口将常用的ADC/DAC/UART引脚进行了引出,能够用于各类型传感器的接入。底座两侧分别为10颗可编程RGB灯(SK6812),配合磨砂透光材质遮光条,能够提供柔和舒适发光效果。底部采用pogo pin磁吸充电接口,当吸附充电底座时,电流将经过内置的TP4057充电芯片安全的流入内部电池。除充电功能外pogo pin接口对主控I2C总线进行了引出,这使得你能够通过磁吸的方式去外接拓展。内置吸附磁铁,背面采用兼容LEGO孔设计,能够与你的其他的LEGO结构设计无缝对接。
## 产品特性
@@ -64,6 +64,32 @@
+ ## EasyLoader
+
+>EasyLoader是一个简洁快速的程序烧录器,其内置了一个产品相关的案例程序,通过简单步骤将其烧录至主控,即可进行一系列的功能验证.**(程序烧录前,请根据设备类型安装相应驱动程序. M5Core型主机[请点击此处查看CP210X驱动安装教程](zh_CN/arduino/arduino_development?id=安装串口驱动),M5StickC/V/T/ATOM系列可免驱动使用)**
+
+
+
+
+
+
+
+
+
+
+
案例描述:
+
IMU数据获取,麦克风数据获取显示频谱,控制LED灯闪烁.
+
+
+
+
## 管脚映射
**SK6812-LED Bar**
@@ -124,7 +150,9 @@
\ No newline at end of file
diff --git a/docs/zh_CN/base/pm2.5.md b/docs/zh_CN/base/pm2.5.md
index f6efd129..124d9dbf 100644
--- a/docs/zh_CN/base/pm2.5.md
+++ b/docs/zh_CN/base/pm2.5.md
@@ -78,7 +78,7 @@ SHT20温湿度传感器
diff --git a/docs/zh_CN/core/core2.md b/docs/zh_CN/core/core2.md
index 2f97b005..341c9b0e 100644
--- a/docs/zh_CN/core/core2.md
+++ b/docs/zh_CN/core/core2.md
@@ -174,7 +174,7 @@ M5Stack Core2支持的开发平台和程序语言:Arduino,[UIFlow](http://fl
diff --git a/docs/zh_CN/core/core2_aws.md b/docs/zh_CN/core/core2_aws.md
index 52825572..f2a7d8bb 100644
--- a/docs/zh_CN/core/core2_aws.md
+++ b/docs/zh_CN/core/core2_aws.md
@@ -182,7 +182,7 @@