0
  • 聊天消息
  • 系統消息
  • 評論與回復
登錄后你可以
  • 下載海量資料
  • 學(xué)習在線(xiàn)課程
  • 觀(guān)看技術(shù)視頻
  • 寫(xiě)文章/發(fā)帖/加入社區
會(huì )員中心
創(chuàng )作中心

完善資料讓更多小伙伴認識你,還能領(lǐng)取20積分哦,立即完善>

3天內不再提示

體驗linux下杰發(fā)7802x開(kāi)發(fā)串口不定長(cháng)收發(fā)實(shí)驗

華仔的編程隨筆 ? 來(lái)源:華仔的編程隨筆 ? 作者:華仔的編程隨筆 ? 2023-06-04 15:37 ? 次閱讀

在這篇的基礎之上,我們今天學(xué)習使用AC7802的串口收發(fā)。

1、把原來(lái)的工程復制一份到新的文件夾,并重命名為AC7802_UART工程。

2、新建Uart.h、Uart.c,內容如下:

#ifndef UART_H

#define UART_H

#include "ac780x_uart.h"

void UART_Cfg_Init(void);

#endif

Uart.c

#include

#include "ac780x_gpio.h"

#include "ac780x_uart_reg.h"

#include "Uart.h"

#define RX_BUF_LEN 100U

uint8_t g_rxLen = 0; /*!< 串口接收長(cháng)度變量 */

uint8_t g_txLen = 0; /* !< 串口發(fā)送長(cháng)度變量 */

uint8_t g_txCnt = 0;

uint8_t g_rxBuf[RX_BUF_LEN] = {0}; /* !< 串口接收數組 */

/*!

  • @brief 串口回調函數
  • @param void *device:UART_Type pointer
    uint32_t wpara:UART lsr0 register
    uint32_t lpara:UART lsr1 register
  • @return none
    */
    void UART_Callback(void *device, uint32_t wpara, uint32_t lpara)
    {
    UART_Type *Uart_Device = (UART_Type *)device;

/*! 串口接收中斷 */

if(wpara & UART_LSR0_DR_Msk)

{

g_rxBuf[g_rxLen++] = UART_ReceiveData(Uart_Device);

if(g_rxLen > RX_BUF_LEN)

{

g_rxLen = 0;

}

}

/*!< 發(fā)送fifo空中斷 */

if(Uart_Device->IER & UART_IER_ETXE_Msk)

{

UART_SendData(Uart_Device,g_rxBuf[g_txCnt++]);

if(g_txCnt >= g_txLen)

{

g_txCnt = 0;

UART_SetTXEInterrupt(Uart_Device, DISABLE);

}

}

/*!< 串口空閑中斷 */

if(lpara & UART_LSR1_IDLE_Msk)

{

g_txLen = g_rxLen;

g_rxLen = 0;

UART_SetTXEInterrupt(Uart_Device, ENABLE);

}

}

/*!

  • @brief uart configuration init
  • @param none
  • @return none
    */
    void UART_Cfg_Init(void)
    {
    UART_ConfigType uart_config;

GPIO_SetFunc(GPIOA, GPIO_PIN4, GPIO_FUN3); /*! uart tx */

GPIO_SetFunc(GPIOA, GPIO_PIN5, GPIO_FUN3); /* ! uart rx */

uart_config.baudrate = 115200; /*! 波特率115200 */

uart_config.dataBits = UART_WORD_LEN_8BIT; /* ! 數據8bit */

uart_config.stopBits = UART_STOP_1BIT; /* ! 停止位1bit */

uart_config.fifoByteEn = DISABLE;

uart_config.sampleCnt = UART_SMP_CNT0; /* ! 16倍采樣 */

uart_config.callBack = UART_Callback; /* ! 回調函數設置 */

UART_Init(UART1,&uart_config); /*! 串口初始化 */

UART_SetRXNEInterrupt(UART1, ENABLE); /*! 串口接收中斷使能 */

UART_SetIdleFuncEn(UART1, ENABLE);

UART_SetIdleInterrupt(UART1, ENABLE); /*! 使能串口空閑中斷 */

NVIC_SetPriority(UART1_IRQn, 3); /*! 串口中斷優(yōu)先級 */

NVIC_ClearPendingIRQ(UART1_IRQn);

NVIC_EnableIRQ(UART1_IRQn);

}

3、修改makefile內容中的TARGET 為:AC7802_UART。去掉原來(lái)gpio.c,新建Uart.c,增加ac78x_uart.c:

C sources

C_SOURCES =

Src/main.c

Src/AC7802x_irq_cb.c

Src/AC7802x_msp.c

Src/system_AC7802x.c

Drivers/ATC_Driver/Src/ac780x_gpio.c

Drivers/ATC_Driver/Src/ac780x_ckgen.c

Drivers/ATC_Driver/Src/ac780x_spm.c

Drivers/ATC_Driver/Src/ac780x_uart.c

User/Src/Uart.c

4、make結果如下:

lugl@lugl-virtual-machine:~/ac7802/AC7802_UART$ make

mkdir build

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/main.d" -Wa,-a,-ad,-alms=build/main.lst Src/main.c -o build/main.o

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/AC7802x_irq_cb.d" -Wa,-a,-ad,-alms=build/AC7802x_irq_cb.lst Src/AC7802x_irq_cb.c -o build/AC7802x_irq_cb.o

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/AC7802x_msp.d" -Wa,-a,-ad,-alms=build/AC7802x_msp.lst Src/AC7802x_msp.c -o build/AC7802x_msp.o

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/system_AC7802x.d" -Wa,-a,-ad,-alms=build/system_AC7802x.lst Src/system_AC7802x.c -o build/system_AC7802x.o

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/ac780x_gpio.d" -Wa,-a,-ad,-alms=build/ac780x_gpio.lst Drivers/ATC_Driver/Src/ac780x_gpio.c -o build/ac780x_gpio.o

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/ac780x_ckgen.d" -Wa,-a,-ad,-alms=build/ac780x_ckgen.lst Drivers/ATC_Driver/Src/ac780x_ckgen.c -o build/ac780x_ckgen.o

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/ac780x_spm.d" -Wa,-a,-ad,-alms=build/ac780x_spm.lst Drivers/ATC_Driver/Src/ac780x_spm.c -o build/ac780x_spm.o

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/ac780x_uart.d" -Wa,-a,-ad,-alms=build/ac780x_uart.lst Drivers/ATC_Driver/Src/ac780x_uart.c -o build/ac780x_uart.o

arm-none-eabi-gcc -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/Uart.d" -Wa,-a,-ad,-alms=build/Uart.lst User/Src/Uart.c -o build/Uart.o

arm-none-eabi-gcc -x assembler-with-cpp -c -mcpu=cortex-m0plus -mthumb -IInc -IDrivers/ATC_Driver/Inc -IDrivers/Device/Include -IDrivers/Device -IDrivers/Device/Include/CMSIS -IUser/Inc -O0 -Wall -fdata-sections -ffunction-sections -g -gdwarf-2 -MMD -MP -MF"build/startup_AC7802x.d" startup_AC7802x.s -o build/startup_AC7802x.o

arm-none-eabi-gcc build/main.o build/AC7802x_irq_cb.o build/AC7802x_msp.o build/system_AC7802x.o build/ac780x_gpio.o build/ac780x_ckgen.o build/ac780x_spm.o build/ac780x_uart.o build/Uart.o build/startup_AC7802x.o -mcpu=cortex-m0plus -mthumb -specs=nano.specs -TAC78022MBQA_FLASH.ld -lc -lm -lnosys -Wl,-Map=build/AC7802_UART.map,--cref -Wl,--gc-sections -o build/AC7802_UART.elf

arm-none-eabi-size build/AC7802_UART.elf

text data bss dec hex filename

12016 12 2220 14248 37a8 build/AC7802_UART.elf

arm-none-eabi-objcopy -O ihex build/AC7802_UART.elf build/AC7802_UART.hex

arm-none-eabi-objcopy -O binary -S build/AC7802_UART.elf build/AC7802_UART.bin

5、輸入下載命令:

lugl@lugl-virtual-machine:~/ac7802/AC7802_UART$ pyocd flash ./build/AC7802_UART.elf --target ac78022mbqa

0000426 I Loading /home/lugl/ac7802/AC7802_UART/build/AC7802_UART.elf [load_cmd]

[==================================================] 100%

0001139 I Erased 0 bytes (0 sectors), programmed 0 bytes (0 pages), skipped 12288 bytes (24 pages) at 16.84 kB/s [loader]

6、同時(shí)為了方便下載,我們在makefile后面增加 makefile flash命令實(shí)現下載:

flash:

pyocd flash ./build/AC7802_UART.elf --target ac78022mbqa

我們在執行make falsh后就可以實(shí)現下載功能了:

lugl@lugl-virtual-machine:~/ac7802/AC7802_UART$ make flash

pyocd flash ./build/AC7802_UART.elf --target ac78022mbqa

0000445 I Loading /home/lugl/ac7802/AC7802_UART/build/AC7802_UART.elf [load_cmd]

[==================================================] 100%

0001146 I Erased 0 bytes (0 sectors), programmed 0 bytes (0 pages), skipped 12288 bytes (24 pages) at 17.16 kB/s [loader]

l

7、實(shí)現效果:下載后,我們用typec線(xiàn)接到開(kāi)發(fā)板的typec接口,打開(kāi)串口助手,我們就可以實(shí)現不定義發(fā)送,同時(shí)AC7802把接收到的數據回顯回來(lái):

[20:21:10.657]發(fā)→◇AT1313123112123123

[20:21:10.661]收←◆AT1313123112123123

[20:47:13.157]發(fā)→◇AT13131231

[20:47:13.160]收←◆AT13131231

[20:47:22.561]發(fā)→◇你好

[20:47:22.563]收←◆你好

[20:47:30.890]發(fā)→◇你好 AC7802X

[20:47:30.893]收←◆你好 AC7802X

【總結】杰發(fā)的庫函數做得非常好,給的示例也非常好,使得學(xué)習起來(lái)非??旖?。同時(shí)在linux環(huán)境下,用vscode也開(kāi)發(fā),也是非常之方便。體驗了編程之快樂(lè )!

聲明:本文內容及配圖由入駐作者撰寫(xiě)或者入駐合作網(wǎng)站授權轉載。文章觀(guān)點(diǎn)僅代表作者本人,不代表電子發(fā)燒友網(wǎng)立場(chǎng)。文章及其配圖僅供工程師學(xué)習之用,如有內容侵權或者其他違規問(wèn)題,請聯(lián)系本站處理。 舉報投訴
  • Linux
    +關(guān)注

    關(guān)注

    87

    文章

    11026

    瀏覽量

    207158
  • uart
    +關(guān)注

    關(guān)注

    22

    文章

    1163

    瀏覽量

    100295
  • DAC7802
    +關(guān)注

    關(guān)注

    0

    文章

    2

    瀏覽量

    6469
收藏 人收藏

    評論

    相關(guān)推薦

    FreeRTOS串口DMA收發(fā)不定長(cháng)數據

    FreeRTOS例程,介紹串口DMA收發(fā)不定長(cháng)數據
    的頭像 發(fā)表于 09-26 09:08 ?3805次閱讀
    FreeRTOS<b class='flag-5'>串口</b>DMA<b class='flag-5'>收發(fā)不定長(cháng)</b>數據

    FreeRTOS串口中斷接收不定長(cháng)的數據與二值信號量的使用

    FreeRTOS例程,使用串口中斷接收不定長(cháng)的數據,以及二值信號量的使用
    的頭像 發(fā)表于 09-26 09:02 ?3581次閱讀
    FreeRTOS<b class='flag-5'>串口</b>中斷接收<b class='flag-5'>不定長(cháng)</b>的數據與二值信號量的使用

    不定長(cháng)數據接收的原理是什么?怎么實(shí)現串口數據的不定長(cháng)接收?

    不定長(cháng)數據接收的原理是什么?怎么實(shí)現串口數據的不定長(cháng)接收?
    發(fā)表于 11-16 08:11

    怎樣通過(guò)STM32的MDA和空閑中斷實(shí)現串口不定長(cháng)數據的收發(fā)

    怎樣通過(guò)STM32的MDA和空閑中斷實(shí)現串口不定長(cháng)數據的收發(fā)呢?有哪些步驟?
    發(fā)表于 12-06 08:00

    怎樣去完成STM32串口接收不定長(cháng)數據hal庫的實(shí)驗

    怎樣去完成STM32串口接收不定長(cháng)數據hal庫的實(shí)驗呢?
    發(fā)表于 12-07 06:51

    請問(wèn)串口DMA+環(huán)形緩沖區如何實(shí)現不定長(cháng)度的數據收發(fā)?

    請問(wèn)串口DMA+環(huán)形緩沖區如何實(shí)現不定長(cháng)度的數據收發(fā)?
    發(fā)表于 12-08 06:13

    如何去實(shí)現stm32f405串口DMA+空閑中斷不定長(cháng)數據收發(fā)代碼

    如何去實(shí)現stm32f405串口DMA+空閑中斷不定長(cháng)數據收發(fā)代碼?
    發(fā)表于 12-08 07:36

    如何利用IDLE中斷進(jìn)行串口不定長(cháng)數據的接收呢

    利用IDLE中斷進(jìn)行串口不定長(cháng)數據的接收有何優(yōu)勢?如何利用IDLE中斷進(jìn)行串口不定長(cháng)數據的接收呢?
    發(fā)表于 12-08 07:04

    HAL庫串口接收不定長(cháng)數據的方法

    STM32單片機HAL庫串口接收不定長(cháng)數據HAL庫串口接收不定長(cháng)數據CubeMX配置過(guò)程代
    發(fā)表于 01-19 06:55

    HAL庫的DMA+CobeMx方式不定長(cháng)收發(fā)

    STM32L051雙串口DMA方式不定長(cháng)收發(fā)HAL庫的DMA+CobeMx方式不定長(cháng)收發(fā)Cu
    發(fā)表于 01-20 06:25

    STM32串口接收不定長(cháng)數據的程序免費下載

    本文檔的主要內容詳細介紹的是STM32串口接收不定長(cháng)數據的程序免費下載。
    發(fā)表于 08-26 08:00 ?47次下載
    STM32<b class='flag-5'>串口</b>接收<b class='flag-5'>不定長(cháng)</b>數據的程序免費下載

    stm32 串口接收不定長(cháng)度數據及黏包處理 + 串口DMA接收

    1.不定長(cháng)度數據 為什么會(huì )存在串口接收不定長(cháng)度數據呢?首先,在通信雙方進(jìn)行數據傳輸的時(shí)候,由于不同的設備在實(shí)現控制,數據采樣時(shí),發(fā)送的數據指令字節數量存在著(zhù)差異,就產(chǎn)生了串口接收
    發(fā)表于 12-23 19:09 ?26次下載
    stm32 <b class='flag-5'>串口</b>接收<b class='flag-5'>不定長(cháng)</b>度數據及黏包處理 + <b class='flag-5'>串口</b>DMA接收

    STM32 DMA串口接收不定長(cháng)數據

    STM32 DMA串口接收不定長(cháng)數據
    發(fā)表于 12-24 18:50 ?40次下載
    STM32  DMA<b class='flag-5'>串口</b>接收<b class='flag-5'>不定長(cháng)</b>數據

    STM32之串口DMA接收不定長(cháng)數據

    目錄STM32之串口DMA接收不定長(cháng)數據引言DMA簡(jiǎn)介什么是DMA在STM32的DMA資源DMA接收數據判斷數據接收完成接收完數據時(shí)處理程序實(shí)現STM32之串口DMA接收不定長(cháng)數據引言
    發(fā)表于 12-24 19:03 ?30次下載
    STM32之<b class='flag-5'>串口</b>DMA接收<b class='flag-5'>不定長(cháng)</b>數據

    STM32CubeMX之串口接收不定長(cháng)數據

    基本串口通信通常只能接收到定長(cháng)數據,無(wú)法穩定接收不定長(cháng)數據,本章介紹利用STM32單片機的IDLE空閑中斷,接收不定長(cháng)數據。使能串口1的異步
    的頭像 發(fā)表于 05-11 09:59 ?2408次閱讀
    STM32CubeMX之<b class='flag-5'>串口</b>接收<b class='flag-5'>不定長(cháng)</b>數據
    亚洲欧美日韩精品久久_久久精品AⅤ无码中文_日本中文字幕有码在线播放_亚洲视频高清不卡在线观看