-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GPS時刻スパイクフィルタの追加 #237
GPS時刻スパイクフィルタの追加 #237
Conversation
src/src_user/Settings/SatelliteParameters/Sample/oem7600_parameters.c
Outdated
Show resolved
Hide resolved
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.c
Outdated
Show resolved
Hide resolved
src/src_user/Settings/SatelliteParameters/Sample/oem7600_parameters.c
Outdated
Show resolved
Hide resolved
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.c
Outdated
Show resolved
Hide resolved
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.c
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
命名についての細かなコメントをつけさせてもらいました。
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.c
Outdated
Show resolved
Hide resolved
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.h
Outdated
Show resolved
Hide resolved
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.c
Outdated
Show resolved
Hide resolved
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.h
Outdated
Show resolved
Hide resolved
これは別PRとさせて頂きたいです.
|
今回の実装に関係ない部分は次PRでも良いですが、下記の部分などは今回追加実装分に出ているwarningだと思います。そのようなwarningに関してはこのPRで対応すべきだと思いますので、お願いします。 https://github.com/ut-issl/c2a-aobc/actions/runs/6498394983/job/17649635619?pr=237#step:11:200 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
タイポなど細かい部分が多くて申し訳ないですが、過去にタイポを一掃する作業を行った時にとても大変だったので、一つ一つのレビューの中で丁寧に対応していきたいと思っていますので、よろしくお願いします。
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.c
Outdated
Show resolved
Hide resolved
|
||
static Oem7600Filter oem7600_filter_; | ||
const Oem7600Filter* const oem7600_filter = &oem7600_filter_; | ||
|
||
static SpikeFilter APP_OEM7600_FILTER_position_spike_[PHYSICAL_CONST_THREE_DIM]; //!< スパイク除去フィルタ for 衛星位置 | ||
static SpikeFilter APP_OEM7600_FILTER_velocity_spike_[PHYSICAL_CONST_THREE_DIM]; //!< スパイク除去フィルタ for 衛星速度 | ||
static SpikeFilter APP_OEM7600_FILTER_gps_time_total_sec_spike_; //!< スパイク除去フィルタ for gpstime |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[NITS] 細かくてすみませんが、コメントの中のものもGPS time
など単語として正しくしてもらえると嬉しいです。(このような細かなミスが、エディタが持つタイポ探知機能に引っかかり、逆に真のタイポが埋もれて見つけづらくなるためです。)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちらのコメント内のgpstime
が修正されればマージして良いと思いますので、Approveします。
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
修正致しましたのでマージします
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ありがとうございます。
src/src_user/Applications/UserDefined/AOCS/HardwareDependent/SensorFilters/oem7600_filter.c
Outdated
Show resolved
Hide resolved
|
||
static Oem7600Filter oem7600_filter_; | ||
const Oem7600Filter* const oem7600_filter = &oem7600_filter_; | ||
|
||
static SpikeFilter APP_OEM7600_FILTER_position_spike_[PHYSICAL_CONST_THREE_DIM]; //!< スパイク除去フィルタ for 衛星位置 | ||
static SpikeFilter APP_OEM7600_FILTER_velocity_spike_[PHYSICAL_CONST_THREE_DIM]; //!< スパイク除去フィルタ for 衛星速度 | ||
static SpikeFilter APP_OEM7600_FILTER_gps_time_total_sec_spike_; //!< スパイク除去フィルタ for gpstime |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちらのコメント内のgpstime
が修正されればマージして良いと思いますので、Approveします。
Issue
詳細
GPS時刻に関するスパイクフィルタをアプリ
oem7600_filter
に追加.上記に伴い,関連するライブラリ等を更新.
検証結果
ビルドチェック (どちらもチェック)
動作確認チェック (いずれかをチェック)
試験結果詳細記述場所 or 詳細ログ保存場所へのリンク
補足
NA