Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: HbAttitude.cpp
- Revision:
- 70:a7b1e3eec51b
- Parent:
- 52:33fa8060dd8c
--- a/HbAttitude.cpp Mon Mar 11 06:24:39 2019 +0000 +++ b/HbAttitude.cpp Mon Mar 11 08:58:28 2019 +0000 @@ -106,6 +106,16 @@ } //========================================================= +//前回値・積分地リセット +//========================================================= +void HbAttitude::resetValue() +{ + sum = 0;//積分値 + old = 0;//1サンプル前のデータ(微分用) + oAng = 0;//1サンプル前の角度 +} + +//========================================================= //パラメータゲッター //========================================================= float HbAttitude::getPp(){return p;}