Skip to content
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

Drop AA HAL support #129

Merged
merged 2 commits into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
- 歪なディレクトリ構造の修正: [#28](https://github.com/arkedge/c2a-core/issues/28)
- 移行には [scripts/migration/](./scripts/migration/) 以下の `v4-rename-*.sh` の migration script を使用可能
- example user についてはこの migration script のみで移行しているが,あらゆる C2A user の状況について考慮できているわけではないため,適宜対応が必要
- `hal`(旧 `IfWrapper`)のうち,古すぎるインターフェースを排除: [#23](https://github.com/arkedge/c2a-core/issues/23), [#25](https://github.com/arkedge/c2a-core/pull/25)
- `hal`(旧 `IfWrapper`)のうち,古すぎるインターフェースを排除: [#23](https://github.com/arkedge/c2a-core/issues/23), [#25](https://github.com/arkedge/c2a-core/pull/25), [#129](https://github.com/arkedge/c2a-core/pull/129)
- 既に使われてしまっているものについては,各 C2A user で一旦雑に古いヘッダファイルを各々で持って対応可能(今後再設計する予定)
- `check_coding_rule.py` の設定ファイルである `check_coding_rule.json` の場所を C2A user のトップディレクトリに変更: [#97](https://github.com/arkedge/c2a-core/pull/97)
- 対応方法
Expand Down
1 change: 0 additions & 1 deletion build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ fn main() {
//bind("system/time_manager".into(), "time_manager.h");
//bind("system/watchdog_timer".into(), "watchdog_timer.h");

bind("hal".into(), "aa.h");
bind("hal".into(), "ccsds.h");
bind("hal".into(), "i2c.h");
bind("hal".into(), "pa.h");
Expand Down
30 changes: 0 additions & 30 deletions hal/aa.h

This file was deleted.

3 changes: 0 additions & 3 deletions hal/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
pub mod aa {
include!(concat!(env!("OUT_DIR"), "/aa.rs"));
}
pub mod ccsds {
include!(concat!(env!("OUT_DIR"), "/ccsds.rs"));
}
Expand Down
Loading