AP_HAL_Linux: Restart RCInput_RPI DMA sampling if it stops

This commit is contained in:
Aaron Wang Shi 2017-09-23 01:29:45 +08:00 committed by Lucas De Marchi
parent 903ef4d065
commit ccde7cfdd4
1 changed files with 7 additions and 0 deletions

View File

@ -485,6 +485,13 @@ void RCInput_RPI::_timer_tick()
// Now we are getting address in which DMAC is writing at current moment
dma_cb_t *ad = (dma_cb_t *)con_blocks->get_virt_addr(dma_reg[RCIN_RPI_DMA_CONBLK_AD | RCIN_RPI_DMA_CHANNEL << 8]);
if (!ad) {
init_ctrl_data();
init_PCM();
init_DMA();
return;
}
for (int j = 1; j >= -1; j--) {
void *x = circle_buffer->get_virt_addr((ad + j)->dst);
if (x != nullptr) {