主頁 > 後端開發 > 建立自己的STM32專案庫(庫函式,Kile)

建立自己的STM32專案庫(庫函式,Kile)

2020-10-07 21:05:07 後端開發

接下來的時間就要不斷的更新博客了 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

轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/161856.html

標籤:java

上一篇:安規檢驗部分原始記錄

下一篇:HT66F018定時器0(STM)定時器/計數器功能使用教程

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • 【C++】Microsoft C++、C 和匯編程式檔案

    ......

    uj5u.com 2020-09-10 00:57:23 more
  • 例外宣告

    相比于斷言適用于排除邏輯上不可能存在的狀態,例外通常是用于邏輯上可能發生的錯誤。 例外宣告 Item 1:當函式不可能拋出例外或不能接受拋出例外時,使用noexcept 理由 如果不打算拋出例外的話,程式就會認為無法處理這種錯誤,并且應當盡早終止,如此可以有效地阻止例外的傳播與擴散。 示例 //不可 ......

    uj5u.com 2020-09-10 00:57:27 more
  • Codeforces 1400E Clear the Multiset(貪心 + 分治)

    鏈接:https://codeforces.com/problemset/problem/1400/E 來源:Codeforces 思路:給你一個陣列,現在你可以進行兩種操作,操作1:將一段沒有 0 的區間進行減一的操作,操作2:將 i 位置上的元素歸零。最終問:將這個陣列的全部元素歸零后操作的最少 ......

    uj5u.com 2020-09-10 00:57:30 more
  • UVA11610 【Reverse Prime】

    本人看到此題沒有翻譯,就附帶了一個自己的翻譯版本 思考 這一題,它的第一個要求是找出所有 $7$ 位反向質數及其質因數的個數。 我們應該需要質數篩篩選1~$10^{7}$的所有數,這里就不慢慢介紹了。但是,重讀題,我們突然發現反向質數都是 $7$ 位,而將它反過來后的數字卻是 $6$ 位數,這就說明 ......

    uj5u.com 2020-09-10 00:57:36 more
  • 統計區間素數數量

    1 #pragma GCC optimize(2) 2 #include <bits/stdc++.h> 3 using namespace std; 4 bool isprime[1000000010]; 5 vector<int> prime; 6 inline int getlist(int ......

    uj5u.com 2020-09-10 00:57:47 more
  • C/C++編程筆記:C++中的 const 變數詳解,教你正確認識const用法

    1、C中的const 1、區域const變數存放在堆疊區中,會分配記憶體(也就是說可以通過地址間接修改變數的值)。測驗代碼如下: 運行結果: 2、全域const變數存放在只讀資料段(不能通過地址修改,會發生寫入錯誤), 默認為外部聯編,可以給其他源檔案使用(需要用extern關鍵字修飾) 運行結果: ......

    uj5u.com 2020-09-10 00:58:04 more
  • 【C++犯錯記錄】VS2019 MFC添加資源不懂如何修改資源宏ID

    1. 首先在資源視圖中,添加資源 2. 點擊新添加的資源,復制自動生成的ID 3. 在解決方案資源管理器中找到Resource.h檔案,編輯,使用整個專案搜索和替換的方式快速替換 宏宣告 4. Ctrl+Shift+F 全域搜索,點擊查找全部,然后逐個替換 5. 為什么使用搜索替換而不使用屬性視窗直 ......

    uj5u.com 2020-09-10 00:59:11 more
  • 【C++犯錯記錄】VS2019 MFC不懂的批量添加資源

    1. 打開資源頭檔案Resource.h,在其中預先定義好宏 ID(不清楚其實ID值應該設定多少,可以先新建一個相同的資源項,再在這個資源的ID值的基礎上遞增即可) 2. 在資源視圖中選中專案資源,按F7編輯資源檔案,按 ID 型別 相對路徑的形式添加 資源。(別忘了先把檔案拷貝到專案中的res檔案 ......

    uj5u.com 2020-09-10 01:00:19 more
  • C/C++編程筆記:關于C++的參考型別,專供新手入門使用

    今天要講的是C++中我最喜歡的一個用法——參考,也叫別名。 參考就是給一個變數名取一個變數名,方便我們間接地使用這個變數。我們可以給一個變數創建N個參考,這N + 1個變數共享了同一塊記憶體區域。(參考型別的變數會占用記憶體空間,占用的記憶體空間的大小和指標型別的大小是相同的。雖然參考是一個物件的別名,但 ......

    uj5u.com 2020-09-10 01:00:22 more
  • 【C/C++編程筆記】從頭開始學習C ++:初學者完整指南

    眾所周知,C ++的學習曲線陡峭,但是花時間學習這種語言將為您的職業帶來奇跡,并使您與其他開發人員區分開。您會更輕松地學習新語言,形成真正的解決問題的技能,并在編程的基礎上打下堅實的基礎。 C ++將幫助您養成良好的編程習慣(即清晰一致的編碼風格,在撰寫代碼時注釋代碼,并限制類內部的可見性),并且由 ......

    uj5u.com 2020-09-10 01:00:41 more
最新发布
  • Rust中的智能指標:Box<T> Rc<T> Arc<T> Cell<T> RefCell<T> Weak

    Rust中的智能指標是什么 智能指標(smart pointers)是一類資料結構,是擁有資料所有權和額外功能的指標。是指標的進一步發展 指標(pointer)是一個包含記憶體地址的變數的通用概念。這個地址參考,或 ” 指向”(points at)一些其 他資料 。參考以 & 符號為標志并借用了他們所 ......

    uj5u.com 2023-04-20 07:24:10 more
  • Java的值傳遞和參考傳遞

    值傳遞不會改變本身,參考傳遞(如果傳遞的值需要實體化到堆里)如果發生修改了會改變本身。 1.基本資料型別都是值傳遞 package com.example.basic; public class Test { public static void main(String[] args) { int ......

    uj5u.com 2023-04-20 07:24:04 more
  • [2]SpinalHDL教程——Scala簡單入門

    第一個 Scala 程式 shell里面輸入 $ scala scala> 1 + 1 res0: Int = 2 scala> println("Hello World!") Hello World! 檔案形式 object HelloWorld { /* 這是我的第一個 Scala 程式 * 以 ......

    uj5u.com 2023-04-20 07:23:58 more
  • 理解函式指標和回呼函式

    理解 函式指標 指向函式的指標。比如: 理解函式指標的偽代碼 void (*p)(int type, char *data); // 定義一個函式指標p void func(int type, char *data); // 宣告一個函式func p = func; // 將指標p指向函式func ......

    uj5u.com 2023-04-20 07:23:52 more
  • Django筆記二十五之資料庫函式之日期函式

    本文首發于公眾號:Hunter后端 原文鏈接:Django筆記二十五之資料庫函式之日期函式 日期函式主要介紹兩個大類,Extract() 和 Trunc() Extract() 函式作用是提取日期,比如我們可以提取一個日期欄位的年份,月份,日等資料 Trunc() 的作用則是截取,比如 2022-0 ......

    uj5u.com 2023-04-20 07:23:45 more
  • 一天吃透JVM面試八股文

    什么是JVM? JVM,全稱Java Virtual Machine(Java虛擬機),是通過在實際的計算機上仿真模擬各種計算機功能來實作的。由一套位元組碼指令集、一組暫存器、一個堆疊、一個垃圾回收堆和一個存盤方法域等組成。JVM屏蔽了與作業系統平臺相關的資訊,使得Java程式只需要生成在Java虛擬機 ......

    uj5u.com 2023-04-20 07:23:31 more
  • 使用Java接入小程式訂閱訊息!

    更新完微信服務號的模板訊息之后,我又趕緊把微信小程式的訂閱訊息給實作了!之前我一直以為微信小程式也是要企業才能申請,沒想到小程式個人就能申請。 訊息推送平臺🔥推送下發【郵件】【短信】【微信服務號】【微信小程式】【企業微信】【釘釘】等訊息型別。 https://gitee.com/zhongfuch ......

    uj5u.com 2023-04-20 07:22:59 more
  • java -- 緩沖流、轉換流、序列化流

    緩沖流 緩沖流, 也叫高效流, 按照資料型別分類: 位元組緩沖流:BufferedInputStream,BufferedOutputStream 字符緩沖流:BufferedReader,BufferedWriter 緩沖流的基本原理,是在創建流物件時,會創建一個內置的默認大小的緩沖區陣列,通過緩沖 ......

    uj5u.com 2023-04-20 07:22:49 more
  • Java-SpringBoot-Range請求頭設定實作視頻分段傳輸

    老實說,人太懶了,現在基本都不喜歡寫筆記了,但是網上有關Range請求頭的文章都太水了 下面是抄的一段StackOverflow的代碼...自己大修改過的,寫的注釋挺全的,應該直接看得懂,就不解釋了 寫的不好...只是希望能給視頻網站開發的新手一點點幫助吧. 業務場景:視頻分段傳輸、視頻多段傳輸(理 ......

    uj5u.com 2023-04-20 07:22:42 more
  • Windows 10開發教程_編程入門自學教程_菜鳥教程-免費教程分享

    教程簡介 Windows 10開發入門教程 - 從簡單的步驟了解Windows 10開發,從基本到高級概念,包括簡介,UWP,第一個應用程式,商店,XAML控制元件,資料系結,XAML性能,自適應設計,自適應UI,自適應代碼,檔案管理,SQLite資料庫,應用程式到應用程式通信,應用程式本地化,應用程式 ......

    uj5u.com 2023-04-20 07:22:35 more