Skip to content

Commit

Permalink
Changed void* to uint8_t*. Closes #30
Browse files Browse the repository at this point in the history
  • Loading branch information
krichardsson committed May 21, 2018
1 parent 7bfd294 commit c50b0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uwb_tdoa_anchor3.c
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ static int populateTxData(rangePacket3_t *rangePacket)
}
}

return (void*)anchorDataPtr - (void*)rangePacket;
return (uint8_t*)anchorDataPtr - (uint8_t*)rangePacket;
}

// Set TX data in the radio TX buffer
Expand Down

0 comments on commit c50b0f0

Please sign in to comment.