-
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
Apply rename migration to example users: DriverSuper -> Framing #116
Apply rename migration to example users: DriverSuper -> Framing #116
Conversation
examples/mobc/src/src_user/Settings/framing/framing_buffer_define.h
Outdated
Show resolved
Hide resolved
60ae11b
to
30e67c5
Compare
3a6c49f
to
8e3d336
Compare
30e67c5
to
744b051
Compare
9acea1e
to
9852596
Compare
9852596
to
dc257a0
Compare
beta リリースうちたい気持ちってなんでですか? |
単に大きな breaking change だからです |
0eb9fa0
to
dc257a0
Compare
@@ -64,7 +64,7 @@ struct AOBC_Driver | |||
{ | |||
struct | |||
{ | |||
DriverSuper super; //!< DriverSuper class | |||
Framing super; //!< Framing class |
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.
Framing super; //!< Framing class | |
Framing framing; //!< Framing class |
{ | ||
uint8_t i, stream; | ||
|
||
for (i = 0; i < GS_PORT_TYPE_NUM; ++i) | ||
{ | ||
DriverSuper* ds; | ||
Framing* ds; |
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.
Framing* ds; | |
Framing* frm; |
@@ -67,14 +67,14 @@ typedef struct | |||
// CCSDS 側の Driver | |||
struct | |||
{ | |||
DriverSuper super; | |||
Framing super; |
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.
Framing super; | |
Framing framing; |
CCSDS_Config ccsds_config; | ||
} driver_ccsds; | ||
|
||
// UART 側の Driver | ||
struct | ||
{ | ||
DriverSuper super; | ||
Framing super; |
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.
Framing super; | |
Framing framing; |
概要
DriverSuper -> Framing の migration を example user に適用した
Issue / PR
検証結果
CI が通ればよし
影響範囲
example user の
DriverSuper
関係のものが rename される