File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 16
16
// setup(): 入力ピンの初期化
17
17
// getUsec(): 入力パルス幅[usec]
18
18
// getFreq(): 入力パルス周波数[Hz]
19
+ // setupMean(): 入力パルス平均
20
+ // getUsecMean(): 入力パスル平均[usec]
19
21
// attach(): 割り込み処理の再開
20
22
// detach(): 割り込み処理の中止
21
23
// setupOut(): 出力ピンの初期化
Original file line number Diff line number Diff line change @@ -231,7 +231,8 @@ void loop()
231
231
// steering assist
232
232
if (i==0 && (RX_CONF.gpid &0x1 )) {
233
233
float SP = USEC[0 ];
234
- float PV = RX_CONF.gain [0 ] * RX_AHRS.getYawRate ();
234
+ float PV = RX_CONF.gain [0 ] * GYRO[2 ];
235
+ // float PV = RX_CONF.gain[0] * RX_AHRS.getYawRate();
235
236
USEC[0 ] = CH1_PID.loop (SP,PV);
236
237
}
237
238
#if 0
Original file line number Diff line number Diff line change @@ -653,6 +653,14 @@ class TimerMS {
653
653
}
654
654
};
655
655
656
+
657
+
658
+
659
+ // //////////////////////////////////////////////////////////////////////////////
660
+ // class CountHz{}: 周期計測用ライブラリ
661
+ // getFreq(): 周期の取得[Hz]
662
+ // touch(): カウント(例:ループ内で呼ぶ)
663
+ // //////////////////////////////////////////////////////////////////////////////
656
664
class CountHZ {
657
665
unsigned long last;
658
666
int freq, loop;
You can’t perform that action at this time.
0 commit comments