Skip to content

Commit

Permalink
Fixed indexing error
Browse files Browse the repository at this point in the history
  • Loading branch information
bbixler500 committed Oct 2, 2024
1 parent d41a019 commit b44adbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hwp_encoder/IRIG_Detection.c
Original file line number Diff line number Diff line change
Expand Up @@ -213,8 +213,8 @@ int main(void) {
// Initialize two IRIG packets
// Set IRIG headers for both IRIG packets
irig_packets[0].header = 0xCAFF;
irig_packets[0].header = 0xCAFF;
irig_packets[1].version = 1;
irig_packets[1].header = 0xCAFF;
irig_packets[0].version = 1;
irig_packets[1].version = 1;

// Sample for DAQ_HOURS number of hours
Expand Down

0 comments on commit b44adbe

Please sign in to comment.