キーボードをエミュレートする USB RFID カードリーダーがあります。そのため、カードを入れると、ターミナルウィンドウに文字列が表示されます-つまり"0684a24bc1"
しかし、Cプログラムでそれを読みたいです。私が使用しても問題はありません:scanf("%s",buff);
しかし、以下のコードを使用すると、認識されないデータが大量 (約 500 バイト) になりました。なんで?非ブロッキング読み取りを希望します。
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
#include <termios.h>
int main(int argc, char ** argv) {
int fd;
char buf[256];
fd = open("/dev/input/event3", O_RDWR | O_NOCTTY | O_NDELAY);
if (fd == -1) {
perror("open_port: Unable to open /dev/ttyAMA0 - ");
return(-1);
}
// Turn off blocking for reads, use (fd, F_SETFL, FNDELAY) if you want that
fcntl(fd, F_SETFL, 0);
}
while(1){
n = read(fd, (void*)buf, 255);
if (n < 0) {
perror("Read failed - ");
return -1;
} else if (n == 0) printf("No data on port\n");
else {
buf[n] = '\0';
printf("%i bytes read : %s", n, buf);
}
sleep(1);
printf("i'm still doing something");
}
close(fd);
return 0;
}