當前位置:首頁 » 編程語言 » 樹莓派c語言控制

樹莓派c語言控制

發布時間: 2024-11-28 11:17:55

❶ 求教樹莓派用wiringPi控制SPI口的方法,高分!!

#include <stdio.h>
#include <wiringPi.h>
#include <wiringPiSPI.h>
void main(void)
{
int spi1;
unsigned char date[2],rec[2];
int spiChannel = 0;
int clock = 1000000;

wiringPiSetup();
spi1 = wiringPiSPISetup(spiChannel,clock);

if(spi1!=-1)
{
printf("Starting SPI Test\n");
printf("Write:\n");
date[0]=0x80;//寄存器地址
date[1]=0x55;//要寫的數據
wiringPiSPIDataRW(0,date,2);
printf("date[0] : %d ",date[0]);
printf("date[1] : %d \n",date[1]);
delay(500);
printf("Read:\n");
rec[0]=0x00;//寄存器地址
rec[1]=0x00;
wiringPiSPIDataRW(0,rec,2);
printf("rec[0] : %d ",rec[0]);
printf("rec[1] : %d \n",rec[1]);//返回的數據是這個
}
}
我試過可行的,編譯gcc -Wall -o testSPI testSPI.c -lwiringPi
sudo ./testSPI

❷ 樹莓派上用C語言的函數問題

undefined reference to 'digitalwrite'
未定義,你不能直接GCC這個yuke.c ,你的ynke.c 里include 其他的頭文件,你gcc 編譯的時候,要把這些頭文件加入

❸ 如何在windows下或者linux下對樹莓派編程(C語言或C++)

Windows用VS2017,裝上跨平台模塊,新建項目選擇「Linux」,選擇「控制台應用程序」或者「閃爍」,隨後會彈出「Getting Started」教你如何遠程連接上樹莓派,在main.cpp中編寫代碼,F7編譯,Ctrl+F5編譯運行(不調試)。
Linux新建.cpp文件,寫好代碼後保存退出,打開終端輸入 g++ 文件路徑
會生成可執行文件。

熱點內容
sqlserver2008分區表 發布:2024-11-28 13:41:58 瀏覽:481
php輸出array 發布:2024-11-28 13:30:15 瀏覽:745
汽車安卓大屏的高德怎麼卸載 發布:2024-11-28 13:26:00 瀏覽:701
androidbitmap失真 發布:2024-11-28 13:05:04 瀏覽:866
php圖片識別文字 發布:2024-11-28 12:55:23 瀏覽:823
redis永久緩存 發布:2024-11-28 12:37:40 瀏覽:56
php是自學網 發布:2024-11-28 12:33:57 瀏覽:733
php採集系統 發布:2024-11-28 12:32:04 瀏覽:908
資料庫恢復的實現技術 發布:2024-11-28 12:25:26 瀏覽:6
壓縮圖檔 發布:2024-11-28 12:25:23 瀏覽:424