接下來的時間就要不斷的更新博客了 Im Back !
今天要想大家分享自己寫自己的庫的方法(寫的不對或者有錯誤請指正)
1. 我先把我所說的"模板"的含義說一下:并不是你一開始建立一個專案所建立的專案模板那么簡單,這個模板應該是最小的系統版為基礎的一個可以被你進行短期修改就可以使用在不同專案上的一個庫(當然這個程序是要建立在這個一開始的最小系統板的的專案模板的) 你的模板可以是你買的最小系統板的廠家的(但是一定注意 這些基礎檔案一定要有序和方便易懂,你要知道每個檔案夾是什么意思,存放什么東西 ) 就拿我的這個檔案來說: Hardward:一般在最小系統板以外的外設都先加到這個檔案夾里(比如:超聲波 舵機 電機 顯示屏驅動 各種傳感器) Libraries:存放驅動相應芯片的東西,和啟動檔案(注意:你在不同的專案中要用到不同的芯片,所以你要在ST公司下載相應的啟動檔案和核心檔案,我這個例子是F103的都可以通用) MDK-ARM:這個編譯完產生的東西存放的檔案夾,里面的OBJ檔案就是要燒錄進板子的程式檔案(你要打開一個專案的project的檔案也在這里) USER:放主函式其他Hardward的產生.o檔案 你可以自己找模板,但是都是大同小異,你對這個模板一定要熟悉,下面是我的模板鏈接 鏈接:https://pan.baidu.com/s/1lQJogk05qK4nEsOucVDiWg 提取碼:49j1
2. 為以后加入的外設做準備,比如加入一些檔案,或者找一些寫的好的函式加進去,這個部分你也可以再寫一個檔案夾來存放
加入Headfile.h的頭檔案放在USER就可以了(里面放你需要的通用的.h檔案,以后就不要經行反復的呼叫了.***注意:不能把外設的.h檔案加進來,一定是通用的***)
還可以加其他的自定義,后面我發的模板鏈接里都有
math函式檔案(一些數學公式的計算,再一些地方需要用到,你可以自己找更加好的)
3. 把基礎的一些通行或者外設的初始化寫好(比如I2C,USART,SPI,ADC等)
這里你可以把這些初始化寫在相應的外設中,比如你和顯示屏之間通信,你可以把USART所有的介面都定義在一起,然后外設函式呼叫.也可以在外設初始化的時候定義,我個人傾向于前面的那種,但是我也暫時沒有寫出來,因為它確實要對板子十分熟悉,并且要有經驗
4.加入自己的專案的代碼了 這個創建檔案夾的程序我就不再復述了(但是一定得記住再Management里加.c檔案,再C++的時候加入檔案夾)
勾選那個 C99就可以避免你很多C語言的錯誤(比如在for回圈里進行變數的定義)
你建立一個專案的順序因該是循序漸進: 一定要一個部分一個部分的寫,寫完一個部分去進行實驗,看看是否可以運行
然后在main函式中進行相應初始化的定義,寫下一個的時候把它再注釋掉,寫完下一個以后解除注釋(這個可以一步步的測驗你的代碼錯誤:比如引腳的重復使用,有些這面定義了別的地方就不行了(一定會深有體會的))
最后就是軟硬體的結合看效果和除錯(先要保證可以實作基礎的功能,細節除錯放在后面.還是第一個博客的哪句畫:先確保代碼沒有問題再找硬體的問題 )
5.寫說明檔案 你寫的代碼也許時間長你也會忘記,也許你有團隊成員,他需要對代碼修改或者改進你的代碼(這個檔案看自己,但一定注意:這是給別人看的 )
6.總結
1.想建立一個好的庫,你先得進行宏觀的規劃,把每一部分都分類做一個筆記來,然后順著筆記來寫
<style>#mermaid-svg-UxpiJedCE4Tu7o37 .label{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);fill:#333;color:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .label text{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .node rect,#mermaid-svg-UxpiJedCE4Tu7o37 .node circle,#mermaid-svg-UxpiJedCE4Tu7o37 .node ellipse,#mermaid-svg-UxpiJedCE4Tu7o37 .node polygon,#mermaid-svg-UxpiJedCE4Tu7o37 .node path{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-UxpiJedCE4Tu7o37 .node .label{text-align:center;fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .node.clickable{cursor:pointer}#mermaid-svg-UxpiJedCE4Tu7o37 .arrowheadPath{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .edgePath .path{stroke:#333;stroke-width:1.5px}#mermaid-svg-UxpiJedCE4Tu7o37 .flowchart-link{stroke:#333;fill:none}#mermaid-svg-UxpiJedCE4Tu7o37 .edgeLabel{background-color:#e8e8e8;text-align:center}#mermaid-svg-UxpiJedCE4Tu7o37 .edgeLabel rect{opacity:0.9}#mermaid-svg-UxpiJedCE4Tu7o37 .edgeLabel span{color:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .cluster rect{fill:#ffffde;stroke:#aa3;stroke-width:1px}#mermaid-svg-UxpiJedCE4Tu7o37 .cluster text{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 div.mermaidTooltip{position:absolute;text-align:center;max-width:200px;padding:2px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:12px;background:#ffffde;border:1px solid #aa3;border-radius:2px;pointer-events:none;z-index:100}#mermaid-svg-UxpiJedCE4Tu7o37 .actor{stroke:#ccf;fill:#ECECFF}#mermaid-svg-UxpiJedCE4Tu7o37 text.actor>tspan{fill:#000;stroke:none}#mermaid-svg-UxpiJedCE4Tu7o37 .actor-line{stroke:grey}#mermaid-svg-UxpiJedCE4Tu7o37 .messageLine0{stroke-width:1.5;stroke-dasharray:none;stroke:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .messageLine1{stroke-width:1.5;stroke-dasharray:2, 2;stroke:#333}#mermaid-svg-UxpiJedCE4Tu7o37 #arrowhead path{fill:#333;stroke:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .sequenceNumber{fill:#fff}#mermaid-svg-UxpiJedCE4Tu7o37 #sequencenumber{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 #crosshead path{fill:#333;stroke:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .messageText{fill:#333;stroke:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .labelBox{stroke:#ccf;fill:#ECECFF}#mermaid-svg-UxpiJedCE4Tu7o37 .labelText,#mermaid-svg-UxpiJedCE4Tu7o37 .labelText>tspan{fill:#000;stroke:none}#mermaid-svg-UxpiJedCE4Tu7o37 .loopText,#mermaid-svg-UxpiJedCE4Tu7o37 .loopText>tspan{fill:#000;stroke:none}#mermaid-svg-UxpiJedCE4Tu7o37 .loopLine{stroke-width:2px;stroke-dasharray:2, 2;stroke:#ccf;fill:#ccf}#mermaid-svg-UxpiJedCE4Tu7o37 .note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-UxpiJedCE4Tu7o37 .noteText,#mermaid-svg-UxpiJedCE4Tu7o37 .noteText>tspan{fill:#000;stroke:none}#mermaid-svg-UxpiJedCE4Tu7o37 .activation0{fill:#f4f4f4;stroke:#666}#mermaid-svg-UxpiJedCE4Tu7o37 .activation1{fill:#f4f4f4;stroke:#666}#mermaid-svg-UxpiJedCE4Tu7o37 .activation2{fill:#f4f4f4;stroke:#666}#mermaid-svg-UxpiJedCE4Tu7o37 .mermaid-main-font{font-family:"trebuchet ms", verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 .section{stroke:none;opacity:0.2}#mermaid-svg-UxpiJedCE4Tu7o37 .section0{fill:rgba(102,102,255,0.49)}#mermaid-svg-UxpiJedCE4Tu7o37 .section2{fill:#fff400}#mermaid-svg-UxpiJedCE4Tu7o37 .section1,#mermaid-svg-UxpiJedCE4Tu7o37 .section3{fill:#fff;opacity:0.2}#mermaid-svg-UxpiJedCE4Tu7o37 .sectionTitle0{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .sectionTitle1{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .sectionTitle2{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .sectionTitle3{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .sectionTitle{text-anchor:start;font-size:11px;text-height:14px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 .grid .tick{stroke:#d3d3d3;opacity:0.8;shape-rendering:crispEdges}#mermaid-svg-UxpiJedCE4Tu7o37 .grid .tick text{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 .grid path{stroke-width:0}#mermaid-svg-UxpiJedCE4Tu7o37 .today{fill:none;stroke:red;stroke-width:2px}#mermaid-svg-UxpiJedCE4Tu7o37 .task{stroke-width:2}#mermaid-svg-UxpiJedCE4Tu7o37 .taskText{text-anchor:middle;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 .taskText:not([font-size]){font-size:11px}#mermaid-svg-UxpiJedCE4Tu7o37 .taskTextOutsideRight{fill:#000;text-anchor:start;font-size:11px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 .taskTextOutsideLeft{fill:#000;text-anchor:end;font-size:11px}#mermaid-svg-UxpiJedCE4Tu7o37 .task.clickable{cursor:pointer}#mermaid-svg-UxpiJedCE4Tu7o37 .taskText.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-UxpiJedCE4Tu7o37 .taskTextOutsideLeft.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-UxpiJedCE4Tu7o37 .taskTextOutsideRight.clickable{cursor:pointer;fill:#003163 !important;font-weight:bold}#mermaid-svg-UxpiJedCE4Tu7o37 .taskText0,#mermaid-svg-UxpiJedCE4Tu7o37 .taskText1,#mermaid-svg-UxpiJedCE4Tu7o37 .taskText2,#mermaid-svg-UxpiJedCE4Tu7o37 .taskText3{fill:#fff}#mermaid-svg-UxpiJedCE4Tu7o37 .task0,#mermaid-svg-UxpiJedCE4Tu7o37 .task1,#mermaid-svg-UxpiJedCE4Tu7o37 .task2,#mermaid-svg-UxpiJedCE4Tu7o37 .task3{fill:#8a90dd;stroke:#534fbc}#mermaid-svg-UxpiJedCE4Tu7o37 .taskTextOutside0,#mermaid-svg-UxpiJedCE4Tu7o37 .taskTextOutside2{fill:#000}#mermaid-svg-UxpiJedCE4Tu7o37 .taskTextOutside1,#mermaid-svg-UxpiJedCE4Tu7o37 .taskTextOutside3{fill:#000}#mermaid-svg-UxpiJedCE4Tu7o37 .active0,#mermaid-svg-UxpiJedCE4Tu7o37 .active1,#mermaid-svg-UxpiJedCE4Tu7o37 .active2,#mermaid-svg-UxpiJedCE4Tu7o37 .active3{fill:#bfc7ff;stroke:#534fbc}#mermaid-svg-UxpiJedCE4Tu7o37 .activeText0,#mermaid-svg-UxpiJedCE4Tu7o37 .activeText1,#mermaid-svg-UxpiJedCE4Tu7o37 .activeText2,#mermaid-svg-UxpiJedCE4Tu7o37 .activeText3{fill:#000 !important}#mermaid-svg-UxpiJedCE4Tu7o37 .done0,#mermaid-svg-UxpiJedCE4Tu7o37 .done1,#mermaid-svg-UxpiJedCE4Tu7o37 .done2,#mermaid-svg-UxpiJedCE4Tu7o37 .done3{stroke:grey;fill:#d3d3d3;stroke-width:2}#mermaid-svg-UxpiJedCE4Tu7o37 .doneText0,#mermaid-svg-UxpiJedCE4Tu7o37 .doneText1,#mermaid-svg-UxpiJedCE4Tu7o37 .doneText2,#mermaid-svg-UxpiJedCE4Tu7o37 .doneText3{fill:#000 !important}#mermaid-svg-UxpiJedCE4Tu7o37 .crit0,#mermaid-svg-UxpiJedCE4Tu7o37 .crit1,#mermaid-svg-UxpiJedCE4Tu7o37 .crit2,#mermaid-svg-UxpiJedCE4Tu7o37 .crit3{stroke:#f88;fill:red;stroke-width:2}#mermaid-svg-UxpiJedCE4Tu7o37 .activeCrit0,#mermaid-svg-UxpiJedCE4Tu7o37 .activeCrit1,#mermaid-svg-UxpiJedCE4Tu7o37 .activeCrit2,#mermaid-svg-UxpiJedCE4Tu7o37 .activeCrit3{stroke:#f88;fill:#bfc7ff;stroke-width:2}#mermaid-svg-UxpiJedCE4Tu7o37 .doneCrit0,#mermaid-svg-UxpiJedCE4Tu7o37 .doneCrit1,#mermaid-svg-UxpiJedCE4Tu7o37 .doneCrit2,#mermaid-svg-UxpiJedCE4Tu7o37 .doneCrit3{stroke:#f88;fill:#d3d3d3;stroke-width:2;cursor:pointer;shape-rendering:crispEdges}#mermaid-svg-UxpiJedCE4Tu7o37 .milestone{transform:rotate(45deg) scale(0.8, 0.8)}#mermaid-svg-UxpiJedCE4Tu7o37 .milestoneText{font-style:italic}#mermaid-svg-UxpiJedCE4Tu7o37 .doneCritText0,#mermaid-svg-UxpiJedCE4Tu7o37 .doneCritText1,#mermaid-svg-UxpiJedCE4Tu7o37 .doneCritText2,#mermaid-svg-UxpiJedCE4Tu7o37 .doneCritText3{fill:#000 !important}#mermaid-svg-UxpiJedCE4Tu7o37 .activeCritText0,#mermaid-svg-UxpiJedCE4Tu7o37 .activeCritText1,#mermaid-svg-UxpiJedCE4Tu7o37 .activeCritText2,#mermaid-svg-UxpiJedCE4Tu7o37 .activeCritText3{fill:#000 !important}#mermaid-svg-UxpiJedCE4Tu7o37 .titleText{text-anchor:middle;font-size:18px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 g.classGroup text{fill:#9370db;stroke:none;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family);font-size:10px}#mermaid-svg-UxpiJedCE4Tu7o37 g.classGroup text .title{font-weight:bolder}#mermaid-svg-UxpiJedCE4Tu7o37 g.clickable{cursor:pointer}#mermaid-svg-UxpiJedCE4Tu7o37 g.classGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-UxpiJedCE4Tu7o37 g.classGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 .classLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.5}#mermaid-svg-UxpiJedCE4Tu7o37 .classLabel .label{fill:#9370db;font-size:10px}#mermaid-svg-UxpiJedCE4Tu7o37 .relation{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-UxpiJedCE4Tu7o37 .dashed-line{stroke-dasharray:3}#mermaid-svg-UxpiJedCE4Tu7o37 #compositionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 #compositionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 #aggregationStart{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 #aggregationEnd{fill:#ECECFF;stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 #dependencyStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 #dependencyEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 #extensionStart{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 #extensionEnd{fill:#9370db;stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 .commit-id,#mermaid-svg-UxpiJedCE4Tu7o37 .commit-msg,#mermaid-svg-UxpiJedCE4Tu7o37 .branch-label{fill:lightgrey;color:lightgrey;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 .pieTitleText{text-anchor:middle;font-size:25px;fill:#000;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 .slice{font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 g.stateGroup text{fill:#9370db;stroke:none;font-size:10px;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 g.stateGroup text{fill:#9370db;fill:#333;stroke:none;font-size:10px}#mermaid-svg-UxpiJedCE4Tu7o37 g.statediagram-cluster .cluster-label text{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 g.stateGroup .state-title{font-weight:bolder;fill:#000}#mermaid-svg-UxpiJedCE4Tu7o37 g.stateGroup rect{fill:#ECECFF;stroke:#9370db}#mermaid-svg-UxpiJedCE4Tu7o37 g.stateGroup line{stroke:#9370db;stroke-width:1}#mermaid-svg-UxpiJedCE4Tu7o37 .transition{stroke:#9370db;stroke-width:1;fill:none}#mermaid-svg-UxpiJedCE4Tu7o37 .stateGroup .composit{fill:white;border-bottom:1px}#mermaid-svg-UxpiJedCE4Tu7o37 .stateGroup .alt-composit{fill:#e0e0e0;border-bottom:1px}#mermaid-svg-UxpiJedCE4Tu7o37 .state-note{stroke:#aa3;fill:#fff5ad}#mermaid-svg-UxpiJedCE4Tu7o37 .state-note text{fill:black;stroke:none;font-size:10px}#mermaid-svg-UxpiJedCE4Tu7o37 .stateLabel .box{stroke:none;stroke-width:0;fill:#ECECFF;opacity:0.7}#mermaid-svg-UxpiJedCE4Tu7o37 .edgeLabel text{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .stateLabel text{fill:#000;font-size:10px;font-weight:bold;font-family:'trebuchet ms', verdana, arial;font-family:var(--mermaid-font-family)}#mermaid-svg-UxpiJedCE4Tu7o37 .node circle.state-start{fill:black;stroke:black}#mermaid-svg-UxpiJedCE4Tu7o37 .node circle.state-end{fill:black;stroke:white;stroke-width:1.5}#mermaid-svg-UxpiJedCE4Tu7o37 #statediagram-barbEnd{fill:#9370db}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-cluster rect{fill:#ECECFF;stroke:#9370db;stroke-width:1px}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-cluster rect.outer{rx:5px;ry:5px}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-state .divider{stroke:#9370db}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-state .title-state{rx:5px;ry:5px}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-cluster.statediagram-cluster .inner{fill:white}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-cluster.statediagram-cluster-alt .inner{fill:#e0e0e0}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-cluster .inner{rx:0;ry:0}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-state rect.basic{rx:5px;ry:5px}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-state rect.divider{stroke-dasharray:10,10;fill:#efefef}#mermaid-svg-UxpiJedCE4Tu7o37 .note-edge{stroke-dasharray:5}#mermaid-svg-UxpiJedCE4Tu7o37 .statediagram-note rect{fill:#fff5ad;stroke:#aa3;stroke-width:1px;rx:0;ry:0}:root{--mermaid-font-family: '"trebuchet ms", verdana, arial';--mermaid-font-family: "Comic Sans MS", "Comic Sans", cursive}#mermaid-svg-UxpiJedCE4Tu7o37 .error-icon{fill:#522}#mermaid-svg-UxpiJedCE4Tu7o37 .error-text{fill:#522;stroke:#522}#mermaid-svg-UxpiJedCE4Tu7o37 .edge-thickness-normal{stroke-width:2px}#mermaid-svg-UxpiJedCE4Tu7o37 .edge-thickness-thick{stroke-width:3.5px}#mermaid-svg-UxpiJedCE4Tu7o37 .edge-pattern-solid{stroke-dasharray:0}#mermaid-svg-UxpiJedCE4Tu7o37 .edge-pattern-dashed{stroke-dasharray:3}#mermaid-svg-UxpiJedCE4Tu7o37 .edge-pattern-dotted{stroke-dasharray:2}#mermaid-svg-UxpiJedCE4Tu7o37 .marker{fill:#333}#mermaid-svg-UxpiJedCE4Tu7o37 .marker.cross{stroke:#333}
:root { --mermaid-font-family: "trebuchet ms", verdana, arial;}</style>
<style>#mermaid-svg-UxpiJedCE4Tu7o37 {
color: rgba(0, 0, 0, 0.75);
font: ;
}</style>
USART
USART1與電腦連接
USART2與OPENMV連接
USART3與顯示屏連接
USART4與超聲波傳感器連接
通信
2.遇到代碼問題要懂得總結:這個問題你可能不是第一次遇到,但是你就是想不起來怎么解決,寫一個檔案去記錄下來(只記住簡單的處理方法就行) 3.寫完一部分的代碼一定記住先保存一下,然后拿一個復制檔案再寫,留一個源檔案(教訓慘痛) 4.對芯片檔案的查找要熟練(下面是我常用的一些檔案,注意區分芯片和型別) 鏈接:https://pan.baidu.com/s/1ChlyuMb0-iSeA96tjHrtkQ 提取碼:3iti
最后是我的一個庫(沒完全寫完) 鏈接:https://pan.baidu.com/s/1mVLF0rE-mKsHBWlr8-pf3A 提取碼:gnma