main.c
来自「str75x的软件库源代码」· C语言 代码 · 共 269 行
C
269 行
/******************** (C) COPYRIGHT 2006 STMicroelectronics ********************
* File Name : main.c
* Author : MCD Application Team
* Date First Issued : 03/10/2006
* Description : Main program body
********************************************************************************
* History:
* 07/17/2006 : V1.0
* 03/10/2006 : V0.1
********************************************************************************
* THE PRESENT SOFTWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
* WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
* AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
* INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
* CONTENT OF SUCH SOFTWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
* INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
*******************************************************************************/
/* Includes ------------------------------------------------------------------*/
#include "75x_lib.h"
/* Private typedef -----------------------------------------------------------*/
typedef enum { FAILED = 0, PASSED = !FAILED} TestStatus;
/* Private define ------------------------------------------------------------*/
#define UART0_DR_Base 0xFFFFD400
#define UART2_DR_Base 0xFFFFDC00
#define TxBufferSize0 (countof(TxBuffer0) - 1)
#define TxBufferSize2 (countof(TxBuffer2) - 1)
#define RxBufferSize2 TxBufferSize0
/* Private macro -------------------------------------------------------------*/
#define countof(a) (sizeof(a) / sizeof(*(a)))
/* Private variables ---------------------------------------------------------*/
UART_InitTypeDef UART_InitStructure;
u8 TxBuffer0[] = "UART Example 5: UART0 -> UART2 using DMA";
u8 TxBuffer2[] = "UART Example 5: UART2 -> UART0 using DMA";
u8 RxBuffer0[TxBufferSize2];
u8 RxBuffer2[RxBufferSize2];
u8 TxCounter = 0, RxCounter = 0;
TestStatus TransferStatus0, TransferStatus2;
ErrorStatus OSC4MStartUpStatus;
/* Private function prototypes -----------------------------------------------*/
void MRCC_Configuration(void);
void GPIO_Configuration(void);
void DMA_Configuration(void);
TestStatus Buffercmp(u8* pBuffer1, u8* pBuffer2, u16 BufferLength);
/* Private functions ---------------------------------------------------------*/
/*******************************************************************************
* Function Name : main
* Description : Main program
* Input : None
* Output : None
* Return : None
*******************************************************************************/
int main()
{
#ifdef DEBUG
debug();
#endif
/* Configure the system clocks */
MRCC_Configuration();
/* Configure the GPIO ports */
GPIO_Configuration();
/* Configure the DMA stream 2 and 3 */
DMA_Configuration();
/* UART0 and UART2 configuration ---------------------------------------------*/
/* UART0 and UART2 configured as follow:
- Word Length = 8 Bits
- One Stop Bit
- Odd parity
- BaudRate = 9600 baud
- Hardware flow control disabled (RTS and CTS signals)
- Receive and transmit enabled
- Receive and transmit FIFOs are disabled
*/
UART_InitStructure.UART_WordLength = UART_WordLength_8D;
UART_InitStructure.UART_StopBits = UART_StopBits_1;
UART_InitStructure.UART_Parity = UART_Parity_Odd ;
UART_InitStructure.UART_BaudRate = 9600;
UART_InitStructure.UART_HardwareFlowControl = UART_HardwareFlowControl_None;
UART_InitStructure.UART_Mode = UART_Mode_Tx_Rx;
UART_InitStructure.UART_FIFO = UART_FIFO_Disable;
/* Configure UART0 */
UART_Init(UART0, &UART_InitStructure);
/* Configure UART2 */
UART_Init(UART2, &UART_InitStructure);
/* Configure the DMA transfer as a single transfer */
UART_DMAConfig(UART0_DMATransfer_Single, UART0_DMAOnError_Enable);
/* Enable DMA Rx request */
UART_DMACmd(UART0_DMAReq_Rx, ENABLE);
/* Enable DMA Tx request */
UART_DMACmd(UART0_DMAReq_Tx, ENABLE);
/* Enable UART0 */
UART_Cmd(UART0, ENABLE);
/* Enable UART2 */
UART_Cmd(UART2, ENABLE);
/* Send data from UART2 to UART0; data received by UART0 is managed by DMA ---*/
/* Enable DMA Stream2 transfer */
DMA_Cmd(DMA_Stream2, ENABLE);
/* UART2 send data to UART0 */
while(TxCounter < TxBufferSize2)
{
UART_SendData(UART2, TxBuffer2[TxCounter++]);
while(UART_GetFlagStatus(UART2,UART_FLAG_TxFIFOFull)!= RESET);
}
/* Send data from UART0 to UART2; data are sent to UART0 Tx FIFO using DMA ---*/
/* Enable DMA Stream3 transfer */
DMA_Cmd(DMA_Stream3, ENABLE);
/* UART2 receive data from UART0 */
while(RxCounter < TxBufferSize0)
{
while(UART_GetFlagStatus(UART2,UART_FLAG_RxFIFOEmpty) != RESET);
RxBuffer2[RxCounter++] = UART_ReceiveData(UART2);
}
TransferStatus2 = Buffercmp(TxBuffer2, RxBuffer0, TxBufferSize2);
/* TransferStatus = PASSED, if the data transmitted from UART2 and
received by UART0 are the same */
/* TransferStatus = FAILED, if the data transmitted from UART2 and
received by UART0 are different */
TransferStatus0 = Buffercmp(TxBuffer0, RxBuffer2, TxBufferSize0);
/* TransferStatus = PASSED, if the data transmitted from UART0 and
received by UART2 are the same */
/* TransferStatus = FAILED, if the data transmitted from UART0 and
received by UART2 are different */
while (1);
}
/*******************************************************************************
* Function Name : MRCC_Configuration
* Description : Configures the different system clocks.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
void MRCC_Configuration(void)
{
/* MRCC system reset(for debug purpose) */
MRCC_DeInit();
/* Wait for OSC4M start-up */
OSC4MStartUpStatus = MRCC_WaitForOSC4MStartUp();
if(OSC4MStartUpStatus == SUCCESS)
{
/* Set HCLK to 30 MHz */
MRCC_HCLKConfig(MRCC_CKSYS_Div2);
/* Set CKTIM to 30 MHz */
MRCC_CKTIMConfig(MRCC_HCLK_Div1);
/* Set PCLK to 30 MHz */
MRCC_PCLKConfig(MRCC_CKTIM_Div1);
/* Set CKSYS to 60 MHz */
MRCC_CKSYSConfig(MRCC_CKSYS_OSC4MPLL, MRCC_PLL_Mul_15);
}
/* GPIO pins optimized for 3V3 operation */
MRCC_IOVoltageRangeConfig(MRCC_IOVoltageRange_3V3);
/* Enable GPIO, UART0 and UART2 Clocks */
MRCC_PeripheralClockConfig(MRCC_Peripheral_GPIO | MRCC_Peripheral_UART0 |
MRCC_Peripheral_UART2, ENABLE);
}
/*******************************************************************************
* Function Name : GPIO_Configuration
* Description : Configures the different GPIO ports.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
void GPIO_Configuration(void)
{
GPIO_InitTypeDef GPIO_InitStructure;
/* Configure UART0_Tx and UART2_Tx pins as Alternate function Push-Pull */
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_AF_PP;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_11 | GPIO_Pin_25;
GPIO_Init(GPIO0, &GPIO_InitStructure);
/* Configure UART0_Rx and UART2_Rx pins as input floating */
GPIO_InitStructure.GPIO_Mode = GPIO_Mode_IN_FLOATING;
GPIO_InitStructure.GPIO_Pin = GPIO_Pin_10 | GPIO_Pin_24;
GPIO_Init(GPIO0, &GPIO_InitStructure);
}
/*******************************************************************************
* Function Name : DMA_Configuration
* Description : Configures the different DMA streams.
* Input : None
* Output : None
* Return : None
*******************************************************************************/
void DMA_Configuration(void)
{
DMA_InitTypeDef DMA_InitStructure;
/* Configure the DMA stream 2 */
DMA_InitStructure.DMA_BufferSize = TxBufferSize2;
DMA_InitStructure.DMA_SRCBaseAddr = UART0_DR_Base;
DMA_InitStructure.DMA_DSTBaseAddr = (u32) RxBuffer0;
DMA_InitStructure.DMA_SRC = DMA_SRC_NOT_INCR;
DMA_InitStructure.DMA_DST = DMA_DST_INCR;
DMA_InitStructure.DMA_SRCSize = DMA_SRCSize_Byte;
DMA_InitStructure.DMA_SRCBurst = DMA_SRCBurst_1Data;
DMA_InitStructure.DMA_DSTSize = DMA_DSTSize_Byte;
DMA_InitStructure.DMA_Mode = DMA_Mode_Normal;
DMA_InitStructure.DMA_M2M = DMA_M2M_Disable;
DMA_InitStructure.DMA_DIR = DMA_DIR_PeriphSRC;
DMA_Init(DMA_Stream2, &DMA_InitStructure);
/* Configure the DMA stream 3*/
DMA_InitStructure.DMA_SRCBaseAddr = (u32)TxBuffer0;
DMA_InitStructure.DMA_DSTBaseAddr = UART0_DR_Base;
DMA_InitStructure.DMA_SRC = DMA_SRC_INCR;
DMA_InitStructure.DMA_DST = DMA_DST_NOT_INCR;
DMA_InitStructure.DMA_SRCBurst = DMA_SRCBurst_1Data;
DMA_InitStructure.DMA_DIR = DMA_DIR_PeriphDST;
DMA_Init(DMA_Stream3, &DMA_InitStructure);
}
/*******************************************************************************
* Function Name : Buffercmp
* Description : Compares two buffers.
* Input : - pBuffer1, pBuffer2: buffers to be compared.
* : - BufferLength: buffer's length
* Output : None
* Return : PASSED: pBuffer1 identical to pBuffer2
* FAILED: pBuffer1 differs from pBuffer2
*******************************************************************************/
TestStatus Buffercmp(u8* pBuffer1, u8* pBuffer2, u16 BufferLength)
{
while(BufferLength--)
{
if(*pBuffer1 != *pBuffer2)
{
return FAILED;
}
pBuffer1++;
pBuffer2++;
}
return PASSED;
}
/******************* (C) COPYRIGHT 2006 STMicroelectronics *****END OF FILE****/
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?