【E422】基于STM32F103的阻抗测量仪

2021-08-22 14:58:31      索炜达电子      455     

项目编号:E422

文件大小:882K

源码说明:带中文注释

开发环境:C编译器

简要概述

采用正点原子 F103 精英板作为主控,驱动 DDS (AD9910) 产生可控频率、幅值的正弦信号作为激励,经放大滤波后输入待测阻抗网络和与之串联的参考电阻,使用差分放大电路获得二者的电压,输入 AD8302 幅相检测芯片,输出其幅值比、相位差,再使用单片机板载 ADC 同时对两路信号进行采样和模数转换,最后由单片机进行数据处理与计算。

支持使用外接的触控串口屏与单片机通信来控制 DDS 输出的信号参数,并显示测量结果(模值、相角、实部、虚部)。

目录│文件列表:

 └ impedometer

    │ 阻抗测量仪.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

TAG阻抗测量仪
  • 8 次
  • 1 分