Don't try to set up serial polling before the HRT has been started.

This commit is contained in:
px4dev 2013-01-10 02:11:53 -08:00
parent 469d13fdfe
commit 329f595bca
1 changed files with 0 additions and 21 deletions

View File

@ -95,25 +95,4 @@ __EXPORT void stm32_boardinitialize(void)
stm32_configgpio(GPIO_ADC_VBATT);
stm32_configgpio(GPIO_ADC_IN5);
/* set up the serial DMA polling */
#ifdef SERIAL_HAVE_DMA
{
static struct hrt_call serial_dma_call;
struct timespec ts;
/*
* Poll at 1ms intervals for received bytes that have not triggered
* a DMA event.
*/
ts.tv_sec = 0;
ts.tv_nsec = 1000000;
hrt_call_every(&serial_dma_call,
ts_to_abstime(&ts),
ts_to_abstime(&ts),
(hrt_callout)stm32_serial_dma_poll,
NULL);
}
#endif
}