From 65062d0d5b21f838aa0043a15ce54cfab8d72c43 Mon Sep 17 00:00:00 2001 From: wujiazhi <1147861305@qq.com> Date: Tue, 11 Jun 2024 14:23:53 +0800 Subject: [PATCH] 1.Fixed communication failure between MCU and wireless module 2.Fix the wrong judgment of alkaline lithium power --- HARDWARE/DMA/DMA.h | 33 ++++++++++++--------------------- 1 files changed, 12 insertions(+), 21 deletions(-) diff --git a/HARDWARE/DMA/DMA.h b/HARDWARE/DMA/DMA.h index 647f662..58a1e26 100644 --- a/HARDWARE/DMA/DMA.h +++ b/HARDWARE/DMA/DMA.h @@ -1,27 +1,18 @@ -#ifndef __DMA_H -#define __DMA_H -#include "sys.h" -#include "stm32f10x_dma.h" +#ifndef _DMA_H_ +#define _DMA_H_ -/****************************************************************************** - * Copyright (C) 2014-2015 HangZhou SiZhu Co.,LTD. - * - *----------------------------------------------------------------------------- - * File: DMA.h - * Description: head file of DMA.c used to operate DMA - * Author: Lishoujian (867693272@qq.com) - * Date: Jan 8, 2015 - *****************************************************************************/ - -/* ----------------------- Platform includes --------------------------------*/ +#include "define_all.h" -#define DMA_bufsize 1000; //DMA send buffer size -extern uint16 SendBuff[1000]; - -void DMA_Configuration(void); -void RCC_Configuration(void); -#endif + + + + + + + + +#endif -- Gitblit v1.9.3