當前位置: 首頁>>代碼示例>>C++>>正文


C++ DMA_CCR函數代碼示例

本文整理匯總了C++中DMA_CCR函數的典型用法代碼示例。如果您正苦於以下問題:C++ DMA_CCR函數的具體用法?C++ DMA_CCR怎麽用?C++ DMA_CCR使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了DMA_CCR函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C++代碼示例。

示例1: dma_channel_reset

void dma_channel_reset(uint32_t dma, uint8_t channel)
{
	/* Disable channel and reset config bits. */
	DMA_CCR(dma, channel) = 0;
	/* Reset data transfer number. */
	DMA_CNDTR(dma, channel) = 0;
	/* Reset peripheral address. */
	DMA_CPAR(dma, channel) = 0;
	/* Reset memory address. */
	DMA_CMAR(dma, channel) = 0;
	/* Reset interrupt flags. */
	DMA_IFCR(dma) |= DMA_IFCR_CIF(channel);
}
開發者ID:0utsider89,項目名稱:libopencm3,代碼行數:13,代碼來源:dma_common_l1f013.c

示例2: dma_set_read_from_peripheral

void dma_set_read_from_peripheral(u32 dma, u8 channel)
{
	DMA_CCR(dma, channel) &= ~DMA_CCR_DIR;
}
開發者ID:dipspb,項目名稱:libopencm3,代碼行數:4,代碼來源:dma_common_f13.c

示例3: dma_set_peripheral_address

void dma_set_peripheral_address(uint32_t dma, uint8_t channel, uint32_t address)
{
	if (!(DMA_CCR(dma, channel) & DMA_CCR_EN)) {
		DMA_CPAR(dma, channel) = (uint32_t) address;
	}
}
開發者ID:insane-adding-machines,項目名稱:unicore-mx,代碼行數:6,代碼來源:dma_common_l1f013.c

示例4: dma_enable_channel

void dma_enable_channel(uint32_t dma, uint8_t channel)
{
	DMA_CCR(dma, channel) |= DMA_CCR_EN;
}
開發者ID:insane-adding-machines,項目名稱:unicore-mx,代碼行數:4,代碼來源:dma_common_l1f013.c

示例5: dma_disable_half_transfer_interrupt

void dma_disable_half_transfer_interrupt(uint32_t dma, uint8_t channel)
{
	DMA_CCR(dma, channel) &= ~DMA_CCR_HTIE;
}
開發者ID:insane-adding-machines,項目名稱:unicore-mx,代碼行數:4,代碼來源:dma_common_l1f013.c

示例6: dma_set_read_from_memory

void dma_set_read_from_memory(uint32_t dma, uint8_t channel)
{
	DMA_CCR(dma, channel) |= DMA_CCR_DIR;
}
開發者ID:insane-adding-machines,項目名稱:unicore-mx,代碼行數:4,代碼來源:dma_common_l1f013.c

示例7: dma_enable_circular_mode

void dma_enable_circular_mode(uint32_t dma, uint8_t channel)
{
	DMA_CCR(dma, channel) |= DMA_CCR_CIRC;
	DMA_CCR(dma, channel) &= ~DMA_CCR_MEM2MEM;
}
開發者ID:insane-adding-machines,項目名稱:unicore-mx,代碼行數:5,代碼來源:dma_common_l1f013.c

示例8: dma_disable_memory_increment_mode

void dma_disable_memory_increment_mode(uint32_t dma, uint8_t channel)
{
	DMA_CCR(dma, channel) &= ~DMA_CCR_MINC;
}
開發者ID:insane-adding-machines,項目名稱:unicore-mx,代碼行數:4,代碼來源:dma_common_l1f013.c

示例9: dma_enable_channel

void dma_enable_channel(u32 dma, u8 channel)
{
	DMA_CCR(dma, channel) |= DMA_CCR_EN;
}
開發者ID:dipspb,項目名稱:libopencm3,代碼行數:4,代碼來源:dma_common_f13.c

示例10: dma_disable_transfer_complete_interrupt

void dma_disable_transfer_complete_interrupt(u32 dma, u8 channel)
{
	DMA_CCR(dma, channel) &= ~DMA_CCR_TCIE;
}
開發者ID:dipspb,項目名稱:libopencm3,代碼行數:4,代碼來源:dma_common_f13.c

示例11: dma_disable_half_transfer_interrupt

void dma_disable_half_transfer_interrupt(u32 dma, u8 channel)
{
	DMA_CCR(dma, channel) &= ~DMA_CCR_HTIE;
}
開發者ID:dipspb,項目名稱:libopencm3,代碼行數:4,代碼來源:dma_common_f13.c

示例12: dma_enable_half_transfer_interrupt

void dma_enable_half_transfer_interrupt(u32 dma, u8 channel)
{
	DMA_CCR(dma, channel) |= DMA_CCR_HTIE;
}
開發者ID:dipspb,項目名稱:libopencm3,代碼行數:4,代碼來源:dma_common_f13.c

示例13: dma_disable_transfer_error_interrupt

void dma_disable_transfer_error_interrupt(u32 dma, u8 channel)
{
	DMA_CCR(dma, channel) &= ~DMA_CCR_TEIE;
}
開發者ID:dipspb,項目名稱:libopencm3,代碼行數:4,代碼來源:dma_common_f13.c

示例14: dma_enable_transfer_error_interrupt

void dma_enable_transfer_error_interrupt(u32 dma, u8 channel)
{
	DMA_CCR(dma, channel) |= DMA_CCR_TEIE;
}
開發者ID:dipspb,項目名稱:libopencm3,代碼行數:4,代碼來源:dma_common_f13.c

示例15: dma_set_read_from_memory

void dma_set_read_from_memory(u32 dma, u8 channel)
{
	DMA_CCR(dma, channel) |= DMA_CCR_DIR;
}
開發者ID:dipspb,項目名稱:libopencm3,代碼行數:4,代碼來源:dma_common_f13.c


注:本文中的DMA_CCR函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。