Skip to content

Commit

Permalink
Fix missed ; in Arduino example
Browse files Browse the repository at this point in the history
Should resolve CI failures
  • Loading branch information
Scottapotamas committed Apr 8, 2024
1 parent 171c9e6 commit 2d29bb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/write_config/write_config.ino
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ uint32_t measurement_timer = 0;
void handle_ack_gotoconfig( xsens_packet_buffer_t *packet );
void handle_ack_gotomeasurement( xsens_packet_buffer_t *packet );
void handle_ack_outputconfiguration( xsens_packet_buffer_t *packet );
void handle_ack_setoptionflags( xsens_packet_buffer_t *packet )
void handle_ack_setoptionflags( xsens_packet_buffer_t *packet );

typedef enum {
ACK_NONE = 0,
Expand Down

0 comments on commit 2d29bb8

Please sign in to comment.