.vscode資料夾下的c_cpp_properties.json檔案
,"includepath":[
"/opt/ros/kinetic/include/**"
,//ros自帶的庫
"/usr/include/**"
,"/usr/local/include/**"
,//包含的第三方庫都可以寫進來
"$/**"
//工作空間內的所有.**件,之後就不需要在寫標頭檔案的絕對或相對路徑了],
"name"
:"ros"
,"intellisensemode"
:"gcc-x64"
,"compilerpath"
:"/usr/bin/g++"
,"cstandard"
:"c11"
,"cppstandard"
:"c++17"
//補全規則,注意修改為c11和c++17}
],"version":4
}
ROS 自動駕駛
以下說明介紹了如何安裝軟體包和校準攝像機。在remote pc和sbc 上都安裝autorace軟體包 cd catkin ws src git clone cd catkin ws catkin make 在remote pc和sbc 上都安裝其他依賴包 sudo apt get install ...
VSCode 自動新增版權資訊
操作步驟 ctrl shift p preferences configure user snippets new global snippets file.輸入任意名稱回車後,自動生成如下模板 for placeholders.placeholders with the same ids are ...
mysql中的tinyint自動補0
mysql 資料庫中要加入字段,並設定預設值為零,資料庫設計原則所佔的儲存空間越少越好,夠用就行,基於節省儲存空間的考慮所以用了tinyint型別,int型別佔4個位元組,tinyint佔1個位元組,於是設計了tinyint的字段型別,在長度的填寫上寫了2,然後設定了填充零的勾選,於是在dll裡面c...