我正在尝试在我的 Orange Pi Plus H3 上使用中断。我从这里下载了WiringOP并安装了它。
但是当我运行程序时,我收到了消息:
gpio: 无法打开 GPIO 导出接口: 没有那个文件或目录wiringPiISR: 无法打开/sys/class/gpio/gpio7/value: 没有那个文件或目录
我发现了很多类似的问题,但没有一种解决方案不适合我。例如在 /boot/config.txt 中进行更改,但在我的 /boot/ 目录中我没有 config.txt 文件等。
有没有办法解决这个问题?
这是我测试过的代码:
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <stdlib.h>
#include <wiringPi.h>
// WPi 7 to PA7, ie. Physical OPi-pin 29||WPi 8 to PA8, ie. Physical OPi-pin 31||WPi 9 to PG08 OPi-pin 32||
// WPi 10 to PA09 OPi-pin 33|| WPi 12 to PPA10 OPi-pin 35 || WPi 15 to PG06 OPi-pin 38
#define BUTTON_PIN 8
// the event counter
volatile int eventCounter = 0;
// -------------------------------------------------------------------------
void myInterrupt(void) {
eventCounter++;
}
// -------------------------------------------------------------------------
int main(void) {
// sets up the wiringPi library
if (wiringPiSetup () < 0) {
fprintf (stderr, "Unable to setup wiringPi: %s\n", strerror (errno));
return 1;
}
pinMode(BUTTON_PIN, INPUT);
pullUpDnControl (BUTTON_PIN, PUD_UP) ;
if ( wiringPiISR (BUTTON_PIN, INT_EDGE_FALLING, &myInterrupt) < 0 ) {
fprintf (stderr, "Unable to setup ISR: %s\n", strerror (errno));
return 1;
}
// display counter value every second.
while ( 1 ) {
// printf( "%d\n", eventCounter );
if (eventCounter != 0) {
system("systemctl suspend");
//printf("Error!!!");
}
eventCounter = 0;
delay( 100 ); // wait 0.1 second
}
return 0;
}
我的系统是使用 Loboris 修改过的内核的 Lubuntu 15.04。