2021-10-09 23:45:49 索煒達(dá)電子 800
項(xiàng)目編號:E1462
文件大?。?3M
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡要概述:
小型的心電呼吸檢測穿戴式裝置
目錄│文件列表:
└ TinyECG
│ readme.txt
├ APP_ECG_BOX_V1.0
│ │ build.gradle
│ │ ECG_BOX.iml
│ │ proguard-rules.pro
│ └ src
│ ├ androidTest
│ │ └ java
│ │ └ com
│ │ └ example
│ │ └ zhangyoujin
│ │ └ myapplication
│ │ └ ApplicationTest.java
│ └ main
│ │ AndroidManifest.xml
│ ├ java
│ │ └ com
│ │ └ example
│ │ └ zhangyoujin
│ │ └ myapplication
│ │ ├ BLE_PACKAGE
│ │ │ │ BLEControl.java
│ │ │ │ BluetoothLeClass.java
│ │ │ │ LeDeviceListAdapter.java
│ │ │ └ Utils.java
│ │ └ View
│ │ │ BleMsgFragment.java
│ │ │ ControlFragment.java
│ │ │ DrawData.java
│ │ │ MainActivity.java
│ │ └ OscilloscopeFragment.java
│ └ res
│ ├ layout
│ │ │ activity_main.xml
│ │ │ fragment_blemsg.xml
│ │ │ fragment_decicelist.xml
│ │ │ fragment_oscilloscope.xml
│ │ │ listitem_device.xml
│ │ └ main.xml
│ ├ menu
│ │ └ menu_main.xml
│ ├ mipmap-hdpi
│ │ └ ic_launcher.png
│ ├ mipmap-mdpi
│ │ └ ic_launcher.png
│ ├ mipmap-xhdpi
│ │ └ ic_launcher.png
│ ├ mipmap-xxhdpi
│ │ └ ic_launcher.png
│ ├ values
│ │ │ dimens.xml
│ │ │ strings.xml
│ │ └ styles.xml
│ ├ values-w820dp
│ │ └ dimens.xml
│ └ xml
│ └ device_filter.xml
├ LMC_stm8l151_ADS1292_V1.0
│ ├ devices
│ │ │ ads1292r.c
│ │ │ ads1292r.h
│ │ │ afe4400.c
│ │ │ afe4400.h
│ │ │ afe4404.c
│ │ │ afe4404.h
│ │ │ iic_bmp085.c
│ │ │ iic_bmp085.h
│ │ │ led.c
│ │ │ led.h
│ │ │ max30100.c
│ │ │ max30100.h
│ │ │ mlx90615.c
│ │ │ mlx90615.h
│ │ │ oled.c
│ │ │ oled.h
│ │ │ oled_codetab.h
│ │ │ spi_tft.c
│ │ │ spi_tft.h
│ │ └ spi_tft_FONT.H
│ ├ fwlib
│ │ ├ inc
│ │ │ │ stm8l15x.h
│ │ │ │ stm8l15x_adc.h
│ │ │ │ stm8l15x_aes.h
│ │ │ │ stm8l15x_beep.h
│ │ │ │ stm8l15x_clk.h
│ │ │ │ stm8l15x_comp.h
│ │ │ │ stm8l15x_dac.h
│ │ │ │ stm8l15x_dma.h
│ │ │ │ stm8l15x_exti.h
│ │ │ │ stm8l15x_flash.h
│ │ │ │ stm8l15x_gpio.h
│ │ │ │ stm8l15x_i2c.h
│ │ │ │ stm8l15x_irtim.h
│ │ │ │ stm8l15x_itc.h
│ │ │ │ stm8l15x_iwdg.h
│ │ │ │ stm8l15x_lcd.h
│ │ │ │ stm8l15x_pwr.h
│ │ │ │ stm8l15x_rst.h
│ │ │ │ stm8l15x_rtc.h
│ │ │ │ stm8l15x_spi.h
│ │ │ │ stm8l15x_syscfg.h
│ │ │ │ stm8l15x_tim1.h
│ │ │ │ stm8l15x_tim2.h
│ │ │ │ stm8l15x_tim3.h
│ │ │ │ stm8l15x_tim4.h
│ │ │ │ stm8l15x_tim5.h
│ │ │ │ stm8l15x_usart.h
│ │ │ │ stm8l15x_wfe.h
│ │ │ │ stm8l15x_wwdg.h
│ │ │ └ stm8l15x.h_
│ │ │ └ stm8l15x.h
│ │ ├ library
│ │ │ └ iar_stm8l15x
│ │ │ └ stm8l15x_lib.a
│ │ └ src
│ │ │ stm8l15x_adc.c
│ │ │ stm8l15x_aes.c
│ │ │ stm8l15x_beep.c
│ │ │ stm8l15x_clk.c
│ │ │ stm8l15x_comp.c
│ │ │ stm8l15x_dac.c
│ │ │ stm8l15x_dma.c
│ │ │ stm8l15x_exti.c
│ │ │ stm8l15x_flash.c
│ │ │ stm8l15x_gpio.c
│ │ │ stm8l15x_i2c.c
│ │ │ stm8l15x_irtim.c
│ │ │ stm8l15x_itc.c
│ │ │ stm8l15x_iwdg.c
│ │ │ stm8l15x_lcd.c
│ │ │ stm8l15x_pwr.c
│ │ │ stm8l15x_rst.c
│ │ │ stm8l15x_rtc.c
│ │ │ stm8l15x_spi.c
│ │ │ stm8l15x_syscfg.c
│ │ │ stm8l15x_tim1.c
│ │ │ stm8l15x_tim2.c
│ │ │ stm8l15x_tim3.c
│ │ │ stm8l15x_tim4.c
│ │ │ stm8l15x_tim5.c
│ │ │ stm8l15x_usart.c
│ │ │ stm8l15x_wfe.c
│ │ └ stm8l15x_wwdg.c
│ ├ hardware
│ │ │ adc.c
│ │ │ adc.h
│ │ │ clk.c
│ │ │ clk.h
│ │ │ exit.c
│ │ │ exit.h
│ │ │ iic.c
│ │ │ iic.h
│ │ │ lowpower.c
│ │ │ lowpower.h
│ │ │ spi.c
│ │ │ spi.h
│ │ │ timer2.c
│ │ │ timer2.h
│ │ │ timer4.c
│ │ │ timer4.h
│ │ │ uart.c
│ │ └ uart.h
│ ├ iar
│ │ │ stm8l15x.eww
│ │ │ stm8l15x_lcd.dep
│ │ │ stm8l15x_lcd.ewd
│ │ │ stm8l15x_lcd.ewp
│ │ │ stm8l15x_lib.dep
│ │ ├ Debug
│ │ │ ├ Exe
│ │ │ │ │ stm8l15x_eep.hex
│ │ │ │ │ stm8l15x_lcd.hex
│ │ │ │ │ stm8l15x_lib.a
│ │ │ │ └ stm8s_io.out
│ │ │ ├ List
│ │ │ │ │ 25x16.s
│ │ │ │ │ ad1292r.s
│ │ │ │ │ ads1292r.s
│ │ │ │ │ afe4400.s
│ │ │ │ │ afe4404.s
│ │ │ │ │ clk.s
│ │ │ │ │ delay.s
│ │ │ │ │ eep_test.s
│ │ │ │ │ exit.s
│ │ │ │ │ flash.s
│ │ │ │ │ iar_eeprom.s
│ │ │ │ │ iic.s
│ │ │ │ │ iic_bmp085.s
│ │ │ │ │ io_test.s
│ │ │ │ │ lcd.s
│ │ │ │ │ lcd_test1.s
│ │ │ │ │ lcd_test2.s
│ │ │ │ │ led.s
│ │ │ │ │ led_test.s
│ │ │ │ │ lowpower.s
│ │ │ │ │ main.s
│ │ │ │ │ mlx90615.s
│ │ │ │ │ oled.s
│ │ │ │ │ periph_lcd.s
│ │ │ │ │ periph_tim4.s
│ │ │ │ │ spi.s
│ │ │ │ │ spi_tft.s
│ │ │ │ │ stm8l15x_adc.s
│ └ main
│ │ delay.c
│ │ delay.h
│ │ iar_macro.h
│ │ main.c
│ │ main.h
│ └ stm8l15x_conf.h
└ PCB_ECG_RESP_V2.0
│ stm8l_resp.PrjPCB
│ stm8l_resp.PrjPCBStructure
│ stm8l_resp_v2.0.PcbDoc
│ stm8l_resp_v2.0.PcbDoc.htm
│ stm8l_resp_v2.0.SchDoc
│ stm8l_resp_v2.0.zip