Skip to content
Open
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
5 changes: 4 additions & 1 deletion app/rev2/prelaunch.c
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,10 @@ if ( usb_detect() )
IGN_STATUS ign_status;
/* Execute subcommand*/
ign_status = ign_cmd_execute( subcommand_code );


if (ign_status != IGN_OK){

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

nit: whitespace around predicate + brace on next line (coding standards/uniformity: please maintain style)

error_fail_fast( ERROR_IGN_CMD_ERROR )

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

cr: semicolon. this causes a critical compiler error and the app fails to build.

}

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

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

nit: brace should be indented four spaces (coding standards/uniformity)

/* Return response code to terminal */
usb_transmit( &ign_status,
sizeof( ign_status ),
Expand Down
Loading