-
Notifications
You must be signed in to change notification settings - Fork 2
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
Refactor user cmake option #132
Conversation
examples/mobc/CMakeLists.txt
Outdated
@@ -16,11 +16,11 @@ option(USE_SCI_COM_WINGS "Use SCI_COM_WINGS" ON) | |||
# そちらのバッファが詰まってSILSの動作が止まることがあるので注意すること! | |||
option(USE_SCI_COM_UART "Use SCI_COM_UART" OFF) |
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.
USE_SCI_COM_WINGS
と USE_SCI_COM_UART
もどうにかしたい
- 今後は WINGS は optional な存在となるため,
USE_SCI_COM_WINGS
は default OFF とする - SCI って何?
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.
SCI はルネサス語っぽい(Serial Communication Interface)
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.
やるなら
uart_sils_sci_if
ccsds_sils_sci_if
も同時に消したい
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.
この PR では一旦 C2A_
prefix だけ付ける
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.
OK
rebase |
50f9edb
to
50abcaa
Compare
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.
wfの方の修正がいるので,一旦approveとりけし.内容はOK
workflows-c2a 側の対応は #136 で入る |
workflows-c2a の対応入ったので rebase |
44b8a0d
to
32606b1
Compare
再度修正: #137 |
…> C2A_USE_SCI_COM_UART
rebase |
836b52c
to
1a54a0e
Compare
概要
#86 に引き続き,C2A user 側の CMake option についても整理する
Issue / PR
詳細
各 C2A user で実際にどのような CMake option が定義されているかは未知だが,#86 でコーディング規約を変更したため,コーディング規約に遵守している限りは,最低限 大文字の SNAKE_CASE で,
C2A_
prefix に揃えているはず.この PR では,example user の CMake option を新しい規約に遵守させる.
検証結果
test へのリンクや,検証結果へのリンク
影響範囲