コード例 #1
0
void dma_usart2_puts(const char* pString){
	int strSize = strlen(pString);
	dma_usart2_nputs(pString, strSize);
}
コード例 #2
0
void usart2_dma_async_puts(const char* pString, void (*tx_complete_callback)(void)){
	int strSize = strlen(pString);
	dma_usart2_nputs(pString, strSize, tx_complete_callback);	
}