../hello_world.c:176: warning: passing arg 4 of `alt_dma_txchan_send' from incompatible pointer type
static void dma_txdone(void* handle, void* data)
{
tx_done=1;
}
if(alt_dma_txchan_send(txchan, Rx1Buffer+Rx1ReadPC, TempCount<<2, dma_txdone, NULL))
{
return 0;
}
编译完毕后老是有个警告。实际执行没有问题。 |