2021-08-22 14:58:31 索煒達(dá)電子 770
項(xiàng)目編號(hào):E422
文件大?。?82K
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡要概述
采用正點(diǎn)原子 F103 精英板作為主控,驅(qū)動(dòng) DDS (AD9910) 產(chǎn)生可控頻率、幅值的正弦信號(hào)作為激勵(lì),經(jīng)放大濾波后輸入待測(cè)阻抗網(wǎng)絡(luò)和與之串聯(lián)的參考電阻,使用差分放大電路獲得二者的電壓,輸入 AD8302 幅相檢測(cè)芯片,輸出其幅值比、相位差,再使用單片機(jī)板載 ADC 同時(shí)對(duì)兩路信號(hào)進(jìn)行采樣和模數(shù)轉(zhuǎn)換,最后由單片機(jī)進(jìn)行數(shù)據(jù)處理與計(jì)算。
支持使用外接的觸控串口屏與單片機(jī)通信來控制 DDS 輸出的信號(hào)參數(shù),并顯示測(cè)量結(jié)果(模值、相角、實(shí)部、虛部)。
目錄│文件列表:
└ impedometer
│ 阻抗測(cè)量儀.HMI
├ CMSIS
│ ├ CM3
│ │ │ stm32f10x.h
│ │ │ stm32f10x_conf.h
│ │ │ stm32f10x_it.c
│ │ │ stm32f10x_it.h
│ │ │ system_stm32f10x.c
│ │ │ system_stm32f10x.h
│ │ ├ CORE
│ │ │ │ core_cm3.c
│ │ │ └ core_cm3.h
│ │ └ STARTUP
│ │ │ startup_stm32f10x_cl.s
│ │ │ startup_stm32f10x_hd.s
│ │ │ startup_stm32f10x_hd_vl.s
│ │ │ startup_stm32f10x_ld.s
│ │ │ startup_stm32f10x_ld_vl.s
│ │ │ startup_stm32f10x_md.s
│ │ │ startup_stm32f10x_md_vl.s
│ │ └ startup_stm32f10x_xl.s
│ └ STM32LIB
│ ├ inc
│ │ │ misc.h
│ │ │ stm32f10x_adc.h
│ │ │ stm32f10x_bkp.h
│ │ │ stm32f10x_can.h
│ │ │ stm32f10x_cec.h
│ │ │ stm32f10x_crc.h
│ │ │ stm32f10x_dac.h
│ │ │ stm32f10x_dbgmcu.h
│ │ │ stm32f10x_dma.h
│ │ │ stm32f10x_exti.h
│ │ │ stm32f10x_flash.h
│ │ │ stm32f10x_fsmc.h
│ │ │ stm32f10x_gpio.h
│ │ │ stm32f10x_i2c.h
│ │ │ stm32f10x_iwdg.h
│ │ │ stm32f10x_pwr.h
│ │ │ stm32f10x_rcc.h
│ │ │ stm32f10x_rtc.h
│ │ │ stm32f10x_sdio.h
│ │ │ stm32f10x_spi.h
│ │ │ stm32f10x_tim.h
│ │ │ stm32f10x_usart.h
│ │ └ stm32f10x_wwdg.h
│ └ src
│ │ misc.c
│ │ stm32f10x_adc.c
│ │ stm32f10x_bkp.c
│ │ stm32f10x_can.c
│ │ stm32f10x_cec.c
│ │ stm32f10x_crc.c
│ │ stm32f10x_dac.c
│ │ stm32f10x_dbgmcu.c
│ │ stm32f10x_dma.c
│ │ stm32f10x_exti.c
│ │ stm32f10x_flash.c
│ │ stm32f10x_fsmc.c
│ │ stm32f10x_gpio.c
│ │ stm32f10x_i2c.c
│ │ stm32f10x_iwdg.c
│ │ stm32f10x_pwr.c
│ │ stm32f10x_rcc.c
│ │ stm32f10x_rtc.c
│ │ stm32f10x_sdio.c
│ │ stm32f10x_spi.c
│ │ stm32f10x_tim.c
│ │ stm32f10x_usart.c
│ └ stm32f10x_wwdg.c
├ HARDWARE
│ │ STM32_config.h
│ ├ ad9910
│ │ │ AD9910.H
│ │ └ AD9910V1.C
│ ├ ADC
│ │ │ adc.c
│ │ └ adc.h
│ ├ HMI
│ │ └ hmi.h
│ ├ KEY
│ │ │ key.c
│ │ └ key.h
│ ├ LCD
│ │ │ chinese.h
│ │ │ font.h
│ │ │ lcd.c
│ │ │ lcd.h
│ │ └ oledfont.h
│ ├ LED
│ │ │ led.c
│ │ └ led.h
│ └ TIMER
│ │ timer.c
│ └ timer.h
├ OBJ
│ └ VirtualCOMPort.hex
├ Soft
│ └ Task
│ │ task_manage.c
│ └ task_manage.h
├ SYSTEM
│ ├ delay
│ │ │ delay.c
│ │ └ delay.h
│ ├ sys
│ │ │ sys.c
│ │ └ sys.h
│ └ usart
│ │ usart.c
│ └ usart.h
└ USER
│ ad8302.h
│ ascii_convert.h
│ JLinkSettings.ini
│ main.c
│ VirtualCOMPort.uvoptx
└ VirtualCOMPort.uvprojx