unleashed-firmware/lib/toolbox/manchester_encoder.c
あく acc39a4bc0
Api Symbols: replace asserts with checks (#3507)
* Api Symbols: replace asserts with checks
* Api Symbols: replace asserts with checks part 2
* Update no args function signatures with void, to help compiler to track incorrect usage
* More unavoidable void
* Update PVS config and code to make it happy
* Format sources
* nfc: fix checks
* dead code cleanup & include fixes

Co-authored-by: gornekich <n.gorbadey@gmail.com>
Co-authored-by: hedger <hedger@users.noreply.github.com>
Co-authored-by: hedger <hedger@nanode.su>
2024-03-19 23:43:52 +09:00

61 lines
1.4 KiB
C

#include "manchester_encoder.h"
#include <stdio.h>
#include <furi.h>
void manchester_encoder_reset(ManchesterEncoderState* state) {
furi_check(state);
state->step = 0;
}
bool manchester_encoder_advance(
ManchesterEncoderState* state,
const bool curr_bit,
ManchesterEncoderResult* result) {
furi_check(state);
furi_check(result);
bool advance = false;
switch(state->step) {
case 0:
state->prev_bit = curr_bit;
if(state->prev_bit) {
*result = ManchesterEncoderResultShortLow;
} else {
*result = ManchesterEncoderResultShortHigh;
}
state->step = 1;
advance = true;
break;
case 1:
*result = (state->prev_bit << 1) + curr_bit;
if(curr_bit == state->prev_bit) {
state->step = 2;
} else {
state->prev_bit = curr_bit;
advance = true;
}
break;
case 2:
if(curr_bit) {
*result = ManchesterEncoderResultShortLow;
} else {
*result = ManchesterEncoderResultShortHigh;
}
state->prev_bit = curr_bit;
state->step = 1;
advance = true;
break;
default:
furi_crash();
break;
}
return advance;
}
ManchesterEncoderResult manchester_encoder_finish(ManchesterEncoderState* state) {
furi_check(state);
state->step = 0;
return (state->prev_bit << 1) + state->prev_bit;
}