串口通信DMA中斷


這是以前學32的時候寫的,那時候學了32之后感覺32真是太強大了,比51強的沒影。關於dma網上有許多的資料,親們搜搜,這里只貼代碼了,其實我也想詳詳細細地敘述一番,但是自己本身打字就慢,還有好多事情要做!代碼是我親自都在板子上測試過的,,當然粘貼/復制過去可能也不會盡如人意,知識這東西總是有許多道不清說不明的東西在里頭,往往總是不經一番徹骨寒,哪得梅花撲鼻香。推薦一本書吧!這是野火出的。(是為了湊夠150個字,否則不讓提交)

這本書自從在圖書館借來就從來沒有再放回去,總是在續借。像是在打廣告了

#include <stm32f10x.h>
#include "usart1.h"
#include "qq1.h"
#include "GPIO.h"

extern uint8_t SendBuff[SENDBUFF_SIZE];

uint16_t i;    
int main()
{
    USART1_Config();
  DMA_Config();
    GPIOinit();
    
 for(i=0 ; i<SENDBUFF_SIZE ; i++)
    {
   SendBuff[i] = 0xdd;
  }
    USART_DMACmd(USART1, USART_DMAReq_Tx, ENABLE);    
    
    GPIO_Write(GPIOB,0xffff);  //將GPIOB 16個端口全部置為高電
    
    while(1);
}

 

/* 其他函數里 USART_DMACmd(USART1, USART_DMAReq_Tx, ENABLE);     */
#include "usart1.h"

uint8_t SendBuff[SENDBUFF_SIZE];

/*
 * 函數名:DMA_Config
 * 描述  :DMA 串口的初始化配置
 * 輸入  :無
 * 輸出  : 無
 * 調用  :外部調用
 */
void DMA_Config(void)
{
    DMA_InitTypeDef DMA_InitStructure;

      RCC_AHBPeriphClockCmd(RCC_AHBPeriph_DMA1, ENABLE);    //開啟DMA時鍾
      NVIC_Config();                   //配置DMA中斷

     /*設置DMA源:內存地址&串口數據寄存器地址*/
    DMA_InitStructure.DMA_PeripheralBaseAddr = USART1_DR_Base;       

    /*內存地址(要傳輸的變量的指針)*/
    DMA_InitStructure.DMA_MemoryBaseAddr = (u32)SendBuff;
    
    /*方向:從內存到外設*/        
    DMA_InitStructure.DMA_DIR = DMA_DIR_PeripheralDST;    
    
    /*傳輸大小DMA_BufferSize=SENDBUFF_SIZE*/    
    DMA_InitStructure.DMA_BufferSize = SENDBUFF_SIZE;
    
    /*外設地址不增*/        
    DMA_InitStructure.DMA_PeripheralInc = DMA_PeripheralInc_Disable; 
    
    /*內存地址自增*/
    DMA_InitStructure.DMA_MemoryInc = DMA_MemoryInc_Enable;    
    
    /*外設數據單位*/    
    DMA_InitStructure.DMA_PeripheralDataSize = DMA_PeripheralDataSize_Byte;
    
    /*內存數據單位 8bit*/
    DMA_InitStructure.DMA_MemoryDataSize = DMA_MemoryDataSize_Byte;     
    
    /*DMA模式:一次傳輸,循環*/
    DMA_InitStructure.DMA_Mode = DMA_Mode_Normal ;     
    
    /*優先級:中*/    
    DMA_InitStructure.DMA_Priority = DMA_Priority_Medium;  
    
    /*禁止內存到內存的傳輸    */
    DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
    
    /*配置DMA1的4通道*/           
    DMA_Init(DMA1_Channel4, &DMA_InitStructure);        
    
      DMA_Cmd (DMA1_Channel4,ENABLE);                    //使能DMA
      DMA_ITConfig(DMA1_Channel4,DMA_IT_TC,ENABLE);  //配置DMA發送完成后產生中斷

}
/*
 * 函數名:NVIC_Config
 * 描述  :DMA 中斷配置
 * 輸入  :無
 * 輸出  : 無
 * 調用  :外部調用
 */
static void NVIC_Config(void)
{
  NVIC_InitTypeDef NVIC_InitStructure;
  
  /* Configure one bit for preemption priority */
  NVIC_PriorityGroupConfig(NVIC_PriorityGroup_1);
  
  /* 配置P[A|B|C|D|E]0為中斷源 */
  NVIC_InitStructure.NVIC_IRQChannel = DMA1_Channel4_IRQn;
  NVIC_InitStructure.NVIC_IRQChannelPreemptionPriority = 1;
  NVIC_InitStructure.NVIC_IRQChannelSubPriority = 1;
  NVIC_InitStructure.NVIC_IRQChannelCmd = ENABLE;
  NVIC_Init(&NVIC_InitStructure);
}
#ifndef __USART1_H
#define    __USART1_H

#include "stm32f10x.h"

#define USART1_DR_Base  0x40013804
#define SENDBUFF_SIZE 5000

void DMA_Config(void);
static void NVIC_Config(void);

#endif /* __USART1_H */
#include "qq1.h"

/*
 * 函數名:USART1_Config
 * 描述  :USART1 GPIO 配置,工作模式配置。115200 8-N-1
 * 輸入  :無
 * 輸出  : 無
 * 調用  :外部調用
 */
void USART1_Config(void)
{
    GPIO_InitTypeDef GPIO_InitStructure;
    USART_InitTypeDef USART_InitStructure;
    
    /* config USART1 clock */
    RCC_APB2PeriphClockCmd(RCC_APB2Periph_USART1 | RCC_APB2Periph_GPIOA, ENABLE);
    
    /* USART1 GPIO config */
    /* Configure USART1 Tx (PA.09) as alternate function push-pull */
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_9;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;
    GPIO_Init(GPIOA, &GPIO_InitStructure);    
    /* Configure USART1 Rx (PA.10) as input floating */
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10;
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
    GPIO_Init(GPIOA, &GPIO_InitStructure);
      
    /* USART1 mode config */
    USART_InitStructure.USART_BaudRate = 115200;
    USART_InitStructure.USART_WordLength = USART_WordLength_8b;
    USART_InitStructure.USART_StopBits = USART_StopBits_1;
    USART_InitStructure.USART_Parity = USART_Parity_No ;
    USART_InitStructure.USART_HardwareFlowControl = USART_HardwareFlowControl_None;
    USART_InitStructure.USART_Mode = USART_Mode_Rx | USART_Mode_Tx;
    USART_Init(USART1, &USART_InitStructure); 
    USART_Cmd(USART1, ENABLE); 
}
#ifndef __QQ1_H
#define __QQ1_H

#include <stm32f10x.h>


void USART1_Config(void);

#endif
#include"GPIO.h"
     
void GPIOinit(void)
{
    
    GPIO_InitTypeDef GPIO_InitStructure;
  RCC_APB2PeriphClockCmd(RCC_APB2Periph_GPIOB , ENABLE);
                        
    GPIO_InitStructure.GPIO_Pin = GPIO_Pin_All; //所有GPIO為同一類型端口
    GPIO_InitStructure.GPIO_Mode = GPIO_Mode_Out_PP;     //推挽輸出
    GPIO_InitStructure.GPIO_Speed = GPIO_Speed_50MHz;     //輸出的最大頻率為50HZ
    
    GPIO_Init(GPIOB, &GPIO_InitStructure);   //初始化GPIOB端口
    
    
}

 

#ifndef __GPIO_H
#define __GPIO_H

#include "stm32f10x.h"

void GPIOinit(void);

#endif

 

#include "stm32f10x_it.h"


void DMA1_Channel4_IRQHandler(void)
{    

   if(DMA_GetFlagStatus(DMA1_FLAG_TC4)==SET) 
   {  
  
    GPIOB ->BRR = GPIO_Pin_All;
     
    DMA_ClearFlag(DMA1_FLAG_TC4); 
         
    }    
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM