Skip to content

Commit 5ad3acb

Browse files
committed
add library comments
1 parent bc503d0 commit 5ad3acb

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

M5RX/M5RX.hpp

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
// setup(): 入力ピンの初期化
1717
// getUsec(): 入力パルス幅[usec]
1818
// getFreq(): 入力パルス周波数[Hz]
19+
// setupMean(): 入力パルス平均
20+
// getUsecMean(): 入力パスル平均[usec]
1921
// attach(): 割り込み処理の再開
2022
// detach(): 割り込み処理の中止
2123
// setupOut(): 出力ピンの初期化

M5RX/M5RX.ino

+2-1
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,8 @@ void loop()
231231
// steering assist
232232
if (i==0 && (RX_CONF.gpid&0x1)) {
233233
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();
235236
USEC[0] = CH1_PID.loop(SP,PV);
236237
}
237238
#if 0

M5TX/M5Lib.hpp

+8
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,14 @@ class TimerMS {
653653
}
654654
};
655655

656+
657+
658+
659+
////////////////////////////////////////////////////////////////////////////////
660+
// class CountHz{}: 周期計測用ライブラリ
661+
// getFreq(): 周期の取得[Hz]
662+
// touch(): カウント(例:ループ内で呼ぶ)
663+
////////////////////////////////////////////////////////////////////////////////
656664
class CountHZ {
657665
unsigned long last;
658666
int freq, loop;

0 commit comments

Comments
 (0)