1
0
Fork 0

Rename recv_frame to validator_recv_frame

This commit is contained in:
Fred Sundvik 2016-02-14 21:33:14 +02:00
parent 2a6696bd3d
commit 0eb62c4ce6
5 changed files with 38 additions and 36 deletions

View file

@ -60,7 +60,7 @@ void recv_byte(byte_stuffer_state_t* state, uint8_t data) {
if (state->next_zero == 0) {
// The frame is completed
if (state->data_pos > 0) {
recv_frame(state->data, state->data_pos);
validator_recv_frame(state->data, state->data_pos);
}
}
else {