你好,我是愛吃魚香ROS的小魚。上一節(jié)我們搭建好了MicroROS學習板的開發(fā)環(huán)境,并新建了第一個工程。本節(jié)我們詳細了解下該工程,了解我們需要在哪里寫代碼,在哪里改配置?
一、工程目錄概述
image-20221218001241164
首先展開工程,可以看到工程一共有8個部分如上圖所示。
二、在哪里寫代碼?
打開src/main.cpp
就是我們工程的程序入口文件,打開該文件,已經(jīng)默認給我們生成了9行代碼,后續(xù)的主要開發(fā)就在這里進行。
#include < Arduino.h >
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}Copy to clipboardErrorCopied
三、工程配置文件-platformio.ini
打開工程主目錄下的platformio.ini
文件,預(yù)生成的配置文件如下
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
[env:featheresp32]
platform = espressif32
board = featheresp32
framework = arduinoCopy to clipboardErrorCopied
這里用到的主要配置有四個
[env:featheresp32]
編譯環(huán)境platform = espressif32
,單片機平臺board = featheresp32
,開發(fā)板framework = arduino
,開發(fā)框架-arduino
后續(xù)還有很多關(guān)于工程的配置都放在這里,同時我們可以添加一條配置board_build.f_cpu = 240000000L
,將單片機的主頻提高到240MHZ
的主頻。
[env:featheresp32]
platform = espressif32
board = featheresp32
framework = arduino
board_build.f_cpu = 240000000LCopy to clipboardErrorCopied
四、編譯工程
在VsCode中編譯PIO,編譯工程和將編譯結(jié)果下載到開發(fā)板上都非常的方便。
編譯工程可以手動點擊左下角的對號進行,其他操作也可以通過按鈕進行。
點擊編譯按鈕,看到如下界面則代表編譯成功
其中打印信息有很多有用的提示,比如工程占用的RAM和Flash大?。梢岳斫鉃橄到y(tǒng)程序大?。?/p>
RAM: [ ] 4.9% (used 16144 bytes from 327680 bytes)
Flash: [== ] 16.2% (used 212961 bytes from 1310720 bytes)Copy to clipboardErrorCopied
編譯完成工程,在.pio/build/featheresp32
目錄下可以看到firmware.bin
,這個就是我們工程編譯之后生成的二進制文件,將該文件下載到開發(fā)板上就可以運行了。
五、PIO快捷鍵
這里再介紹幾個PIO的快捷鍵,在接下來的學習中你肯定能用到
快捷鍵 | 內(nèi)容 |
---|---|
Ctrl+Alt+B | 編譯工程 |
Ctrl+Alt+U | 將程序上傳燒錄到開發(fā)板 |
Ctrl+Alt+S | 打開串口Monitor |
六、總結(jié)
本節(jié)我們簡單的了解下PIO工程的結(jié)構(gòu)以及配置文件,下一節(jié)我們開始學習如何輸出Hello World!
-
程序
+關(guān)注
關(guān)注
116文章
3756瀏覽量
80751 -
開發(fā)環(huán)境
+關(guān)注
關(guān)注
1文章
218瀏覽量
16567 -
學習板
+關(guān)注
關(guān)注
0文章
42瀏覽量
12149 -
PIO
+關(guān)注
關(guān)注
0文章
18瀏覽量
6187 -
vscode
+關(guān)注
關(guān)注
1文章
154瀏覽量
7649
發(fā)布評論請先 登錄
相關(guān)推薦
評論