Files
hpw421/component/boot2/bsp/DMA_uart_debug.h
T
2026-07-03 18:08:25 +08:00

14 lines
361 B
C

#ifndef _DMA_UART_DEBUG_H_
#define _DMA_UART_DEBUG_H_
#include "xinc_reg.h"
extern volatile uint8_t __attribute__((aligned(4))) DMA_buf[16];
void DMA_Uart_SendChar(uint8_t ch);
#define __XIP_RAM_CODE __attribute__((section("ram_code")))
__XIP_RAM_CODE void DMA_Uart_SendNumChar(uint8_t ch,uint8_t bt);
#define DMA_Uart_SendChar_1 DMA_Uart_SendChar
#endif