打印
[新品上市]

【APM32F107VCT6 MINI开发板测评】串口中断

[复制链接]
945|12
手机看帖
扫描二维码
随时随地手机跟帖
跳转到指定楼层
楼主
板子上有个232,我正好有个USB转232,就搞个232通讯程序吧。我用的串口1

原理图:


主程序代码:
#include "main.h"
#include "stdio.h"
/** @addtogroup Examples
  @{
*/

/** @addtogroup USART_Interrupt
  @{
*/

/** @addtogroup USART_Interrupt_MACROS MACROS
  @{
*/

#define DEBUG_USART USART2
/**@} end of group USART_Interrupt_MACROS */

/** @addtogroup USART_Interrupt_Variables Variables
  @{
*/

uint8_t txBuf[] = "Hello USART2 \r\n";
uint8_t count = 0;
/**@} end of group USART_Interrupt_Variables */

/** @addtogroup USART_Interrupt_Functions Functions
  @{
*/

/*!
* [url=home.php?mod=space&uid=247401]@brief[/url]       Main program
*
* @param       None
*
* @retval      None
*
*/
int main(void)
{

    USART_Config_T USART_ConfigStruct;

    APM_MINI_LEDInit(LED2);

    RCM_EnableAPB2PeriphClock((RCM_APB2_PERIPH_T)(RCM_APB2_PERIPH_GPIOA | RCM_APB2_PERIPH_USART1));
    RCM_EnableAPB1PeriphClock(RCM_APB1_PERIPH_USART2);

    USART_ConfigStruct.baudRate = 115200;
    USART_ConfigStruct.hardwareFlow = USART_HARDWARE_FLOW_NONE;
    USART_ConfigStruct.mode = USART_MODE_TX_RX;
    USART_ConfigStruct.parity = USART_PARITY_NONE;
    USART_ConfigStruct.stopBits = USART_STOP_BIT_1;
    USART_ConfigStruct.wordLength = USART_WORD_LEN_8B;
    APM_MINI_COMInit(COM1, &USART_ConfigStruct);
    //APM_MINI_COMInit(COM2, &USART_ConfigStruct);

    USART_EnableInterrupt(USART1, USART_INT_RXBNE);
    //USART_EnableInterrupt(USART2, USART_INT_RXBNE);

    NVIC_EnableIRQRequest(USART1_IRQn, 2, 0);
    //NVIC_EnableIRQRequest(USART2_IRQn, 1, 0);

    while (1)
    {
    }
}

/*!
* @brief       Delay
*
* @param       None
*
* @retval      None
*
*/
void Delay(void)
{
    uint32_t tick = 0xfffff;

    while (tick--);
}

/*!
* @brief       USART1_Interrupt
*
* @param       None
*
* @retval      None
*
*/
void USART1_Isr(void)
{
//    if(USART_ReadIntFlag(USART1, USART_INT_TXBE))
//    {
//        USART_TxData(USART1, txBuf[count]);
//        count++;
//        if (count == sizeof(txBuf))
//        {
//            count = 0;
//            Delay();
//            APM_MINI_LEDToggle(LED2);
//        }
//    }
                uint8_t dat;
    if(USART_ReadIntFlag(USART1, USART_INT_RXBNE))
    {
        dat = (uint8_t)USART_RxData(USART1);
        USART_TxData(USART1, dat);
    }
}

/*!
* @brief       USART2_Interrupt
*
* @param       None
*
* @retval      None
*
*/
void USART2_Isr(void)
{
    uint8_t dat;
    if(USART_ReadIntFlag(USART2, USART_INT_RXBNE))
    {
        dat = (uint8_t)USART_RxData(USART2);
        printf("%c", dat);
    }
}

#if defined (__CC_ARM) || defined (__ICCARM__) || (defined(__ARMCC_VERSION) && (__ARMCC_VERSION >= 6010050))

/*!
* @brief       Redirect C Library function printf to serial port.
*              After Redirection, you can use printf function.
*
* @param       ch:  The characters that need to be send.
*
* @param       *f:  pointer to a FILE that can recording all information
*              needed to control a stream
*
* @retval      The characters that need to be send.
*
* @note
*/
int fputc(int ch, FILE *f)
{
    /* send a byte of data to the serial port */
    USART_TxData(DEBUG_USART, (uint8_t)ch);

    /* wait for the data to be send  */
    while (USART_ReadStatusFlag(DEBUG_USART, USART_FLAG_TXBE) == RESET);

    return (ch);
}

#elif defined (__GNUC__)

/*!
* @brief       Redirect C Library function printf to serial port.
*              After Redirection, you can use printf function.
*
* @param       ch:  The characters that need to be send.
*
* @retval      The characters that need to be send.
*
* @note
*/
int __io_putchar(int ch)
{
    /* send a byte of data to the serial port */
    USART_TxData(DEBUG_USART, ch);

    /* wait for the data to be send  */
    while (USART_ReadStatusFlag(DEBUG_USART, USART_FLAG_TXBE) == RESET);

    return ch;
}

/*!
* @brief       Redirect C Library function printf to serial port.
*              After Redirection, you can use printf function.
*
* @param       file:  Meaningless in this function.
*
* @param       *ptr:  Buffer pointer for data to be sent.
*
* @param       len:  Length of data to be sent.
*
* @retval      The characters that need to be send.
*
* @note
*/
int _write(int file, char *ptr, int len)
{
    int i;
    for (i = 0; i < len; i++)
    {
        __io_putchar(*ptr++);
    }

    return len;
}

#else
#warning Not supported compiler type
#endif

/**@} end of group USART_Interrupt_Functions */
/**@} end of group USART_Interrupt */
/**@} end of group Examples */
初始化代码:
#define MINI_COM1                        USART1
#define MINI_COM1_CLK                    RCM_APB2_PERIPH_USART1
#define MINI_COM1_TX_PIN                 GPIO_PIN_9
#define MINI_COM1_TX_GPIO_PORT           GPIOA
#define MINI_COM1_TX_GPIO_CLK            RCM_APB2_PERIPH_GPIOA
#define MINI_COM1_RX_PIN                 GPIO_PIN_10
#define MINI_COM1_RX_GPIO_PORT           GPIOA
#define MINI_COM1_RX_GPIO_CLK            RCM_APB2_PERIPH_GPIOA
#define MINI_COM1_IRQn                   USART1_IRQn


/*!
* @brief       Configures COM port.
*
* @param       COM: Specifies the COM port to be configured.
*              This parameter can be one of following parameters:
*              [url=home.php?mod=space&uid=2817080]@ARG[/url] COM1
*              @arg COM2
*
* @retval      None
*/
void APM_MINI_COMInit(COM_TypeDef COM, USART_Config_T* configStruct)
{
    GPIO_Config_T GPIO_configStruct;

    /* Enable GPIO clock */
    RCM_EnableAPB2PeriphClock(COM_TX_PORT_CLK[COM] | COM_RX_PORT_CLK[COM]);

    if (COM == COM1)
    {
        RCM_EnableAPB2PeriphClock(COM_USART_CLK[COM]);
    }
    else
    {
        RCM_EnableAPB1PeriphClock(COM_USART_CLK[COM]);
    }

    /* Configure USART Tx as alternate function push-pull */
    GPIO_configStruct.mode = GPIO_MODE_AF_PP;
    GPIO_configStruct.pin = COM_TX_PIN[COM];
    GPIO_configStruct.speed = GPIO_SPEED_50MHz;
    GPIO_Config(COM_TX_PORT[COM], &GPIO_configStruct);

    /* Configure USART Rx as input floating */
    GPIO_configStruct.mode = GPIO_MODE_IN_FLOATING;
    GPIO_configStruct.pin = COM_RX_PIN[COM];
    GPIO_Config(COM_RX_PORT[COM], &GPIO_configStruct);

    /* USART configuration */
    USART_Config(COM_USART[COM], configStruct);

    /* Enable USART */
    USART_Enable(COM_USART[COM]);
}
中断函数:
/*!
* @brief   This function handles USART1 Handler
*
* @param   None
*
* @retval  None
*
*/
void USART1_IRQHandler(void)
{
    USART1_Isr();
}
效果图:


使用特权

评论回复
沙发
pl202| | 2023-3-2 12:05 | 只看该作者
APM32F107VCT6 MINI开发板看着不错。

使用特权

评论回复
板凳
jkl21| | 2023-3-7 19:35 | 只看该作者
APM32F107VCT6 MINI开发板还以申请吗?

使用特权

评论回复
地板
macpherson| | 2023-3-7 21:44 | 只看该作者
APM32F107VC 可以通过串口下载代码吗?

使用特权

评论回复
5
比神乐|  楼主 | 2023-3-8 09:31 | 只看该作者
macpherson 发表于 2023-3-7 21:44
APM32F107VC 可以通过串口下载代码吗?

没试过。

使用特权

评论回复
6
linfelix| | 2023-3-9 12:46 | 只看该作者
APM32F107VCT6 支持多少个串口的?

使用特权

评论回复
7
比神乐|  楼主 | 2023-3-10 09:05 | 只看该作者
linfelix 发表于 2023-3-9 12:46
APM32F107VCT6 支持多少个串口的?

没仔细看,应该比较多。

使用特权

评论回复
8
jackcat| | 2023-3-10 10:07 | 只看该作者
串口接收中断怎么触发?               

使用特权

评论回复
9
kmzuaz| | 2023-3-10 10:26 | 只看该作者
最大的波特率可以设置为多少?              

使用特权

评论回复
10
saservice| | 2023-3-10 10:54 | 只看该作者
可以使用dma接收数据吗?
              

使用特权

评论回复
11
比神乐|  楼主 | 2023-3-11 09:03 | 只看该作者
kmzuaz 发表于 2023-3-10 10:26
最大的波特率可以设置为多少?

不知道

使用特权

评论回复
12
比神乐|  楼主 | 2023-3-11 09:04 | 只看该作者
saservice 发表于 2023-3-10 10:54
可以使用dma接收数据吗?

应该可以的

使用特权

评论回复
13
forgot| | 2023-6-28 17:07 | 只看该作者
感谢楼主的分享,很全面,学习一下,期待更多好的内容

使用特权

评论回复
发新帖 我要提问
您需要登录后才可以回帖 登录 | 注册

本版积分规则

436

主题

3415

帖子

7

粉丝