escc: Remove unused variable.

This commit is contained in:
joevt 2024-08-27 04:35:19 -07:00 committed by dingusdev
parent d22f926a8a
commit 1f8a76e534

View File

@ -425,7 +425,7 @@ void EsccChannel::dma_in_rx()
[this]() {
this->timer_id_rx = 0;
char c = receive_byte();
int xx = dma_ch[1]->push_data(&c, 1);
dma_ch[1]->push_data(&c, 1);
this->dma_in_rx();
});
}