Skip to content
Snippets Groups Projects
Commit ed729aab authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

Fixed typo in DMA transfer count.

parent 54929587
Branches
Tags
No related merge requests found
......@@ -365,7 +365,7 @@ uint8_t lsv_experiment(int16_t start, int16_t stop, uint16_t slope, int8_t first
memset(&dmach_conf, 0, sizeof(dmach_conf));
dma_channel_set_burst_length(&dmach_conf, DMA_CH_BURSTLEN_1BYTE_gc);
dma_channel_set_transfer_count(&dmach_conf, 2);
dma_channel_set_transfer_count(&dmach_conf, 1);
dma_channel_set_src_reload_mode(&dmach_conf, DMA_CH_SRCRELOAD_TRANSACTION_gc);
dma_channel_set_dest_reload_mode(&dmach_conf, DMA_CH_DESTRELOAD_NONE_gc);
......
No preview for this file type
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment