mirror of https://github.com/g4klx/MMDVM.git
Small clean up.
This commit is contained in:
parent
ee44fd81ef
commit
612b10cd11
|
@ -159,7 +159,7 @@ void CIO::startInt()
|
||||||
|
|
||||||
void CIO::interrupt()
|
void CIO::interrupt()
|
||||||
{
|
{
|
||||||
if (ADC->ADC_ISR & ADC_ISR_EOC_Chan) { // Ensure there was an End-of-Conversion and we read the ISR reg
|
if ((ADC->ADC_ISR & ADC_ISR_EOC_Chan) == ADC_ISR_EOC_Chan) { // Ensure there was an End-of-Conversion and we read the ISR reg
|
||||||
uint8_t control = MARK_NONE;
|
uint8_t control = MARK_NONE;
|
||||||
uint16_t sample = DC_OFFSET;
|
uint16_t sample = DC_OFFSET;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue