Raspberry Pi/pi4j で 10mhz のパルスを出力しようと、wiringPi...
ミリ秒パルスでも問題なし
これは Mac で動作します... pi4j とワイヤリング pi がインストールされている Raspberry Pi では動作しません:
final long INTERVAL = 100;
long start = System.nanoTime();
long end=0;
do{
end = System.nanoTime();
}while(start + INTERVAL >= end);
System.out.println(end - start);