2021-11-02 14:00:33 索煒達(dá)電子 857
項(xiàng)目編號(hào):E2099
文件大?。?.97M
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡(jiǎn)要概述:
基于STM32的無線藍(lán)牙心電監(jiān)護(hù)儀設(shè)計(jì)
目錄│文件列表:
└ 基于STM32的無線藍(lán)牙心電監(jiān)護(hù)儀設(shè)計(jì)
│ 基于STM32的無線藍(lán)牙心電監(jiān)護(hù)儀.doc
├ 電路圖
│ └ ECG.pdf
└ 程序源碼
├ ecg
│ ├ CMSIS
│ │ │ core_cm3.c
│ │ │ core_cm3.h
│ │ │ stm32f10x.h
│ │ │ system_stm32f10x.c
│ │ │ system_stm32f10x.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
│ ├ FWlib
│ │ ├ 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
│ │ ├ Key
│ │ │ │ bsp_key.c
│ │ │ └ bsp_key.h
│ │ ├ led
│ │ │ │ bsp_led.c
│ │ │ └ bsp_led.h
│ │ └ OLED
│ │ │ bmp.h
│ │ │ oled.c
│ │ │ oled.h
│ │ │ oledfont.h
│ │ └ oledfont.h~RF12a1bcea.TMP
│ ├ Listing
│ │ │ startup_stm32f10x_hd.lst
│ │ └ STM32-DEMO.map
│ ├ Output
│ │ │ adc.crf
│ │ │ adc.d
│ │ │ adc.o
│ │ │ bsp_key.crf
│ │ │ bsp_key.d
│ │ │ bsp_key.o
│ │ │ bsp_led.crf
│ │ │ bsp_led.d
│ │ │ bsp_led.o
│ │ │ change.crf
│ │ │ change.d
│ │ │ change.o
│ │ │ core_cm3.crf
│ │ │ core_cm3.d
│ │ │ core_cm3.o
│ │ │ delay.crf
│ │ │ delay.d
│ │ │ delay.o
│ │ │ delay_us.crf
│ │ │ delay_us.d
│ │ │ delay_us.o
│ │ │ ExtDll.iex
│ │ │ led.crf
│ │ │ led.d
│ │ │ led.__i
│ │ │ main.crf
│ │ │ main.d
│ │ │ main.o
│ │ │ malloc.crf
│ │ │ malloc.d
│ │ │ malloc.o
│ │ │ matrix_operation.crf
│ │ │ matrix_operation.d
│ │ │ matrix_operation.o
│ │ │ misc.crf
│ │ │ misc.d
│ │ │ misc.o
│ │ │ oled.crf
│ │ │ oled.d
│ │ │ oled.o
│ │ │ sg_filter.crf
│ │ │ sg_filter.d
│ │ │ sg_filter.o
│ │ │ startup_stm32f10x_hd.d
│ │ │ startup_stm32f10x_hd.o
│ │ │ STM32-DEMO.axf
│ │ │ STM32-DEMO.build_log.htm
│ │ │ STM32-DEMO.hex
│ │ │ STM32-DEMO.htm
│ │ │ STM32-DEMO.lnp
│ │ │ STM32-DEMO.plg
│ │ │ STM32-DEMO.sct
│ │ │ STM32-DEMO.tra
│ │ │ stm32f10x_adc.crf
│ │ │ stm32f10x_adc.d
│ │ │ stm32f10x_adc.o
│ │ │ stm32f10x_dma.crf
│ │ │ stm32f10x_dma.d
│ │ │ stm32f10x_dma.o
│ │ │ stm32f10x_exti.crf
│ │ │ stm32f10x_exti.d
│ │ │ stm32f10x_exti.o
│ │ │ stm32f10x_flash.crf
│ │ │ stm32f10x_flash.d
│ │ │ stm32f10x_flash.o
│ │ │ stm32f10x_flash.__i
│ │ │ stm32f10x_gpio.crf
│ │ │ stm32f10x_gpio.d
│ │ │ stm32f10x_gpio.o
│ │ │ stm32f10x_it.crf
│ │ │ stm32f10x_it.d
│ │ │ stm32f10x_it.o
│ │ │ stm32f10x_rcc.crf
│ │ │ stm32f10x_rcc.d
│ │ │ stm32f10x_rcc.o
│ │ │ stm32f10x_tim.crf
│ │ │ stm32f10x_tim.d
│ │ │ stm32f10x_tim.o
│ │ │ stm32f10x_usart.crf
│ │ │ stm32f10x_usart.d
│ │ │ stm32f10x_usart.o
│ │ │ sys.crf
│ │ │ sys.d
│ │ │ sys.o
│ │ │ system_stm32f10x.crf
│ │ │ system_stm32f10x.d
│ │ │ system_stm32f10x.o
│ │ │ usart1.crf
│ │ │ usart1.d
│ │ └ usart1.o
│ ├ SYSTEM
│ │ ├ delay
│ │ │ │ delay.c
│ │ │ └ delay.h
│ │ └ sys
│ │ │ sys.c
│ │ └ sys.h
│ └ USER
│ │ adc.c
│ │ adc.h
│ │ change.c
│ │ change.h
│ │ delay_us.c
│ │ delay_us.h
│ │ JLink Regs CM3.txt
│ │ JLinkLog.txt
│ │ JLinkSettings.ini
│ │ main.c
│ │ malloc.c
│ │ malloc.h
│ │ math.h
│ │ Matrix_operation.c
│ │ Matrix_operation.h
│ │ sg_filter.c
│ │ sg_filter.h
│ │ STM32-DEMO.plg
│ │ STM32-DEMO.uvgui.flyleaf
│ │ STM32-DEMO.uvgui.Lenovo
│ │ STM32-DEMO.uvgui.yun
│ │ STM32-DEMO.uvgui.Zou
│ │ STM32-DEMO.uvgui_flyleaf.bak
│ │ STM32-DEMO.uvgui_Lenovo.bak
│ │ STM32-DEMO.uvgui_yun.bak
│ │ STM32-DEMO.uvgui_Zou.bak
│ │ STM32-DEMO.uvopt
│ │ STM32-DEMO.uvproj
│ │ STM32-DEMO_ADC1-DEMO.dep
│ │ STM32-DEMO_LED-DEMO.dep
│ │ STM32-DEMO_Target 1.dep
│ │ STM32-DEMO_USART1-DEMO.dep
│ │ STM32-DEMO_uvopt.bak
│ │ STM32-DEMO_uvproj.bak
│ │ stm32f10x_conf.h
│ │ stm32f10x_it.c
│ │ stm32f10x_it.h
│ │ usart1.c
│ └ usart1.h
└ 心電前端
│ 心電前端.sln
└ 心電前端
│ App.config
│ Form1.cs
│ Form1.Designer.cs
│ Form1.resx
│ Form_IO.cs
│ Form_IO.Designer.cs
│ Form_IO.resx
│ Program.cs
│ SGFilter.cs
│ _Matrix.cs
│ 心電前端.csproj
├ bin
│ └ Debug
│ │ 02_09_36.png
│ │ 03_48_32.png
│ │ 21_20_42.png
│ │ Nobi.StatusChart.dll
│ │ Nobi.StatusChart.pdb
│ │ ZGraph.dll
│ │ ZGraph.pdb
│ │ 心電前端.exe
│ │ 心電前端.exe.config
│ │ 心電前端.pdb
│ │ 心電前端.vshost.exe
│ │ 心電前端.vshost.exe.config
│ └ 心電前端.vshost.exe.manifest
├ obj
│ └ Debug
│ │ DesignTimeResolveAssemblyReferences.cache
│ │ DesignTimeResolveAssemblyReferencesInput.cache
│ │ TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ 心電前端.csproj.FileListAbsolute.txt
│ │ 心電前端.csproj.GenerateResource.Cache
│ │ 心電前端.csprojResolveAssemblyReference.cache
│ │ 心電前端.ECGLoad.resources
│ │ 心電前端.exe
│ │ 心電前端.Form_IO.resources
│ │ 心電前端.pdb
│ └ 心電前端.Properties.Resources.resources
└ Properties
│ AssemblyInfo.cs
│ Resources.Designer.cs
│ Resources.resx
│ Settings.Designer.cs
└ Settings.settings