2021-08-12 19:32:32 索煒達(dá)電子 2040
項目編號:E30
文件大小:11M
源碼說明:帶中文注釋
開發(fā)環(huán)境:Keil4
簡要概述:
電機(jī)轉(zhuǎn)速轉(zhuǎn)矩測量系統(tǒng)分兩部分:
基于STM32F103單片機(jī)的信號采集模塊。
用Qt編寫的界面顯示軟件
環(huán)境
Keil uVision4
J-Link ARM V4.50l驅(qū)動
演示說明
打開MotorMeasurement\STM32F103\USER\test01.uvproj編譯并下載程序到板子上
然后打開上位機(jī)QT程序,點(diǎn)擊開始,打開電機(jī),即可看到測量數(shù)據(jù)。
電路板Altium Designer格式
原理圖PDF格式
文件列表:
目錄│文件列表:
└ MotorMeasurement
├ STM32F103
│ │ .gitattributes
│ │ .gitignore
│ │ keilkilll.bat
│ │ readme.txt
│ ├ CORE
│ │ │ core_cm3.c
│ │ │ core_cm3.h
│ │ │ 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
│ ├ HARDWARE
│ │ ├ ADC
│ │ │ │ adc.c
│ │ │ └ adc.h
│ │ ├ CAPTURE
│ │ │ │ capture2.c
│ │ │ │ capture2.h
│ │ │ │ capture3.c
│ │ │ │ capture3.h
│ │ │ │ capture3re.c
│ │ │ │ capture3re.h
│ │ │ └ ch2bak.zip
│ │ ├ DAC
│ │ │ │ dac.c
│ │ │ └ dac.h
│ │ ├ DMA
│ │ │ │ dma.c
│ │ │ └ dma.h
│ │ ├ GPIO
│ │ │ │ gpio.c
│ │ │ └ gpio.h
│ │ ├ LCD
│ │ │ │ ascii.h
│ │ │ │ ili9325.c
│ │ │ └ ili9325.h
│ │ ├ LED
│ │ │ │ led.c
│ │ │ └ led.h
│ │ ├ PWM
│ │ │ │ pwm.c
│ │ │ └ pwm.h
│ │ └ TIMER
│ │ │ timer.c
│ │ └ timer.h
│ ├ STM32F10x_FWLib
│ │ ├ inc
│ │ │ │ misc.h
│ │ │ │ stm32f10x_adc.h
│ │ │ │ stm32f10x_bkp.h
│ │ │ │ stm32f10x_tim.h
│ │ │ │ stm32f10x_usart.h
│ │ │ └ stm32f10x_wwdg.h
│ │ └ src
│ │ │ misc.c
│ │ │ stm32f10x_adc.c
│ │ │ stm32f10x_usart.c
│ │ └ stm32f10x_wwdg.c
│ ├ SYSTEM
│ │ ├ delay
│ │ │ │ delay.c
│ │ │ └ delay.h
│ │ ├ sys
│ │ │ │ sys.c
│ │ │ └ sys.h
│ │ └ usart
│ │ │ usart1.c
│ │ │ usart1.h
│ │ │ usart2.c
│ │ └ usart2.h
│ └ USER
│ │ JLink Regs CM3.txt
│ │ UI_65
│ │ UI_65.pro
│ │ UI_65.pro.user
│ │ UI_65.pro.user.62190a8.3.3-pre1
│ │ ui_configpage.h
│ │ ui_datestpage.h
│ │ ui_helppage.h
│ │ ui_homepage.h
│ │ ui_keyboard.h
│ │ ui_mainwindow.h
│ │ ui_outputconfig.h
│ │ ui_page_1.h
│ │ ui_pdfheaderedit.h
│ └ ui_picture.h
├ UI_622_windows
│ ├ build-UI_622-Desktop_Qt_5_4_1_MinGW_32bit-Debug
│ │ │ configuration.txt
│ │ │ Makefile
│ │ │ Makefile.Debug
│ │ │ Makefile.Release
│ │ │ object_script.UI_622.Debug
│ │ │ object_script.UI_622.Release
│ │ │ ui_configpage.h
│ │ │ ui_datestpage.h
│ │ │ ui_homepage.h
│ │ │ ui_keyboard.h
│ │ │ ui_mainwindow.h
│ │ │ ui_outputconfig.h
│ │ │ ui_page_1.h
│ │ │ ui_pdfheaderedit.h
│ │ │ ui_picture.h
│ │ ├ datafiles
│ │ │ │ data2.txt
│ │ │ │ data3.txt
│ │ │ │ data4.txt
│ │ │ │ data5.txt
│ │ │ └ data6.txt
│ │ └ debug
│ │ │ configpage.o
│ │ │ datastack.o
│ │ │ datestpage.o
│ │ │ drawpage.o
│ │ │ homepage.o
│ │ │ keyboard.o
│ │ │ keybutton.o
│ │ │ main.o
│ │ │ mainwindow.o
│ │ │ moc_configpage.cpp
│ │ │ moc_configpage.o
│ │ │ moc_datestpage.cpp
│ │ │ moc_datestpage.o
│ │ │ moc_drawpage.cpp
│ │ │ moc_drawpage.o
│ │ │ moc_homepage.cpp
│ │ │ moc_homepage.o
│ │ │ moc_keyboard.cpp
│ │ │ moc_keyboard.o
│ │ │ moc_keybutton.cpp
│ │ │ serialport.o
│ │ │ uartthread.o
│ │ └ UI_622.exe
│ ├ build-UI_622-Desktop_Qt_5_5_0_MinGW_32bit-Debug
│ │ │ configuration.txt
│ │ │ Makefile
│ │ │ Makefile.Debug
│ │ │ Makefile.Release
│ │ │ object_script.UI_622.Debug
│ │ │ object_script.UI_622.Release
│ │ │ ui_configpage.h
│ │ │ ui_datestpage.h
│ │ │ ui_homepage.h
│ │ │ ui_keyboard.h
│ │ │ ui_mainwindow.h
│ │ │ ui_outputconfig.h
│ │ │ ui_page_1.h
│ │ │ ui_pdfheaderedit.h
│ │ │ ui_picture.h
│ │ └ debug
│ │ │ configpage.o
│ │ │ datastack.o
│ └ UI_622.pro.user.7d027ac
└ 底層硬件資料
│ 電機(jī)參數(shù)系統(tǒng)測試 (2016-5-21 21-23-54).zip
│ 電機(jī)參數(shù)系統(tǒng)測試.PcbDoc
│ 電機(jī)參數(shù)系統(tǒng)測試.PcbDoc.htm
└ 電機(jī)測試系統(tǒng)數(shù)據(jù)采集板(2).pdf