Fixed a few typos
This commit is contained in:
parent
b7ffba0e92
commit
d1da74db96
|
@ -16,3 +16,4 @@ images/*.hex
|
||||||
testkit
|
testkit
|
||||||
flashdefault
|
flashdefault
|
||||||
flashtestkit
|
flashtestkit
|
||||||
|
flashcurrent
|
||||||
|
|
|
@ -242,7 +242,7 @@ static bool hdlcParse(Hdlc *hdlc, bool bit, FIFOBuffer *fifo) {
|
||||||
// Check if we have received a RESET flag (01111111)
|
// Check if we have received a RESET flag (01111111)
|
||||||
// In this comparison we also detect when no transmission
|
// In this comparison we also detect when no transmission
|
||||||
// (or silence) is taking place, and the demodulator
|
// (or silence) is taking place, and the demodulator
|
||||||
// returns an endless stream of zeroes. Due to the NRZ
|
// returns an endless stream of zeroes. Due to the NRZ-S
|
||||||
// coding, the actual bits send to this function will
|
// coding, the actual bits send to this function will
|
||||||
// be an endless stream of ones, which this AND operation
|
// be an endless stream of ones, which this AND operation
|
||||||
// will also detect.
|
// will also detect.
|
||||||
|
@ -435,7 +435,7 @@ void AFSK_adc_isr(Afsk *afsk, int8_t currentSample) {
|
||||||
// Window
|
// Window
|
||||||
//
|
//
|
||||||
// Every time we detect a signal transition, we adjust
|
// Every time we detect a signal transition, we adjust
|
||||||
// where this window is positioned little. How much we
|
// where this window is positioned a little. How much we
|
||||||
// adjust it is defined by PHASE_INC. If our current phase
|
// adjust it is defined by PHASE_INC. If our current phase
|
||||||
// phase counter value is less than half of PHASE_MAX (ie,
|
// phase counter value is less than half of PHASE_MAX (ie,
|
||||||
// the window size) when a signal transition is detected,
|
// the window size) when a signal transition is detected,
|
||||||
|
|
Loading…
Reference in New Issue