Skip to content
Merged
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
1 change: 1 addition & 0 deletions src/protocol/protocol.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ void PROTOCOL_DeInit()
CLOCK_StopTimer();
if(Model.protocol != PROTOCOL_NONE && PROTOCOL_LOADED)
PROTO_Cmds(PROTOCMD_DEINIT);
CLOCK_StartMixer(); // run mixer on timer so channels are updated for things like calibration
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I prefer putting the comments above the line, which is more common practice and also make the width of line small.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually prefer this way because it makes it more likely the comment will be preserved if the line is moved. But it isn't a strong rule

proto_state = PROTO_DEINIT;
}

Expand Down