基本信息
源码名称:基于hc32的max30102血氧驱动程序
源码大小:2.59M
文件格式:.rar
开发语言:C/C++
更新时间:2023-01-12
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
基于hc32的max30102血氧驱动程序

.
├── MAX30102_BASEDON_HC32
│   ├── MDK
│   │   ├── JLinkSettings.ini
│   │   ├── MAX30102.c
│   │   ├── MAX30102.h
│   │   ├── RTE
│   │   │   ├── __FEATURE__Release
│   │   │   │   └── RTE_Components.h
│   │   │   └── _i2c_mcu_master_int_Release
│   │   │       └── RTE_Components.h
│   │   ├── algorithm.c
│   │   ├── algorithm.h
│   │   ├── blood.c
│   │   ├── blood.h
│   │   ├── i2c_mcu_master_int.uvguix.wjr
│   │   ├── i2c_mcu_master_int.uvoptx
│   │   ├── i2c_mcu_master_int.uvprojx
│   │   ├── iic.c
│   │   ├── iic.h
│   │   ├── led.c
│   │   ├── led.h
│   │   ├── output
│   │   │   └── release
│   │   │       ├── algorithm.crf
│   │   │       ├── algorithm.d
│   │   │       ├── algorithm.o
│   │   │       ├── blood.crf
│   │   │       ├── blood.d
│   │   │       ├── blood.o
│   │   │       ├── ddl.crf
│   │   │       ├── ddl.d
│   │   │       ├── ddl.o
│   │   │       ├── gpio.crf
│   │   │       ├── gpio.d
│   │   │       ├── gpio.o
│   │   │       ├── i2c.crf
│   │   │       ├── i2c.d
│   │   │       ├── i2c.o
│   │   │       ├── i2c_mcu_master_int.axf
│   │   │       ├── i2c_mcu_master_int.build_log.htm
│   │   │       ├── i2c_mcu_master_int.hex
│   │   │       ├── i2c_mcu_master_int.lnp
│   │   │       ├── i2c_mcu_master_int.map
│   │   │       ├── i2c_mcu_master_int.sct
│   │   │       ├── i2c_mcu_master_int_i2c_mcu_master_int_Release.dep
│   │   │       ├── i2c_mcu_master_int_sct.Bak
│   │   │       ├── iic.crf
│   │   │       ├── iic.d
│   │   │       ├── iic.o
│   │   │       ├── interrupts_hc32l13x.crf
│   │   │       ├── interrupts_hc32l13x.d
│   │   │       ├── interrupts_hc32l13x.o
│   │   │       ├── led.crf
│   │   │       ├── led.d
│   │   │       ├── led.o
│   │   │       ├── main.crf
│   │   │       ├── main.d
│   │   │       ├── main.o
│   │   │       ├── max30102.crf
│   │   │       ├── max30102.d
│   │   │       ├── max30102.o
│   │   │       ├── startup_hc32l13x.d
│   │   │       ├── startup_hc32l13x.o
│   │   │       ├── sysctrl.crf
│   │   │       ├── sysctrl.d
│   │   │       ├── sysctrl.o
│   │   │       ├── system_hc32l13x.crf
│   │   │       ├── system_hc32l13x.d
│   │   │       ├── system_hc32l13x.o
│   │   │       ├── uart.crf
│   │   │       ├── uart.d
│   │   │       ├── uart.o
│   │   │       ├── usart.crf
│   │   │       ├── usart.d
│   │   │       └── usart.o
│   │   ├── startup_hc32l13x.s
│   │   ├── usart.c
│   │   └── usart.h
│   ├── driver
│   │   ├── inc
│   │   │   ├── adc.h
│   │   │   ├── adt.h
│   │   │   ├── aes.h
│   │   │   ├── bgr.h
│   │   │   ├── bt.h
│   │   │   ├── crc.h
│   │   │   ├── ddl.h
│   │   │   ├── debug.h
│   │   │   ├── dmac.h
│   │   │   ├── flash.h
│   │   │   ├── gpio.h
│   │   │   ├── hdiv.h
│   │   │   ├── i2c.h
│   │   │   ├── lcd.h
│   │   │   ├── lpm.h
│   │   │   ├── lptim.h
│   │   │   ├── lpuart.h
│   │   │   ├── lvd.h
│   │   │   ├── opa.h
│   │   │   ├── pca.h
│   │   │   ├── pcnt.h
│   │   │   ├── ram.h
│   │   │   ├── reset.h
│   │   │   ├── rtc.h
│   │   │   ├── spi.h
│   │   │   ├── sysctrl.h
│   │   │   ├── timer3.h
│   │   │   ├── trim.h
│   │   │   ├── trng.h
│   │   │   ├── uart.h
│   │   │   ├── vc.h
│   │   │   └── wdt.h
│   │   └── src
│   │       ├── adc.c
│   │       ├── adt.c
│   │       ├── aes.c
│   │       ├── bgr.c
│   │       ├── bt.c
│   │       ├── crc.c
│   │       ├── ddl.c
│   │       ├── debug.c
│   │       ├── dmac.c
│   │       ├── flash.c
│   │       ├── gpio.c
│   │       ├── hdiv.c
│   │       ├── i2c.c
│   │       ├── lcd.c
│   │       ├── lpm.c
│   │       ├── lptim.c
│   │       ├── lpuart.c
│   │       ├── lvd.c
│   │       ├── opa.c
│   │       ├── pca.c
│   │       ├── pcnt.c
│   │       ├── ram.c
│   │       ├── reset.c
│   │       ├── rtc.c
│   │       ├── spi.c
│   │       ├── sysctrl.c
│   │       ├── timer3.c
│   │       ├── trim.c
│   │       ├── trng.c
│   │       ├── uart.c
│   │       ├── vc.c
│   │       └── wdt.c
│   ├── mcu
│   │   └── common
│   │       ├── base_types.h
│   │       ├── board_stkhc32l13x.h
│   │       ├── hc32l13x.h
│   │       ├── interrupts_hc32l13x.c
│   │       ├── interrupts_hc32l13x.h
│   │       ├── system_hc32l13x.c
│   │       └── system_hc32l13x.h
│   ├── reference
│   │   ├── zhengge
│   │   │   ├── Algorithm.c
│   │   │   ├── Algorithm.h
│   │   │   ├── BloodOxygen.c
│   │   │   ├── BloodOxygen.h
│   │   │   ├── MAX30102.c
│   │   │   └── MAX30102.h
│   │   └── 基于光电容积脉搏波的抗运动心率及血氧提取算法研究_李敏.caj
│   └── source
│       ├── ddl_device.h
│       └── main.c
└── 基于hc32的max30102血氧驱动程序_MAX30102_BASEDON_HC32.rar

15 directories, 152 files