在好例子网,分享、交流、成长!
您当前所在位置:首页C/C++ 开发实例嵌入式开发 → 心率血氧(FTHR_MAX30102)

心率血氧(FTHR_MAX30102)

嵌入式开发

下载此实例
  • 开发语言:C/C++
  • 实例大小:4.65M
  • 下载次数:10
  • 浏览次数:141
  • 发布时间:2021-03-23
  • 实例类别:嵌入式开发
  • 发 布 人:sj冰凌
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】
【实例截图】

【核心代码】

FTHR_MAX30102

├── FTHR_MAX30102.uvoptx
├── FTHR_MAX30102.uvprojx
├── GettingStarted.html
├── MAX30102
│   ├── MAX30102.cpp
│   └── MAX30102.h
├── algorithm
│   ├── algorithm.cpp
│   └── algorithm.h
├── main.cpp
├── max32630fthr
│   ├── MAX14690
│   │   ├── MAX14690.cpp
│   │   └── MAX14690.h
│   ├── MAX14690.lib
│   ├── max32630fthr.cpp
│   └── max32630fthr.h
├── max32630fthr.lib
├── mbed
│   ├── TARGET_MAX32630FTHR
│   │   ├── TARGET_Maxim
│   │   │   ├── TARGET_MAX32630
│   │   │   │   ├── PeripheralPins.h
│   │   │   │   ├── PortNames.h
│   │   │   │   ├── TARGET_MAX32630FTHR
│   │   │   │   │   ├── PeripheralNames.h
│   │   │   │   │   └── PinNames.h
│   │   │   │   ├── device
│   │   │   │   │   ├── adc_regs.h
│   │   │   │   │   ├── aes_regs.h
│   │   │   │   │   ├── clkman_regs.h
│   │   │   │   │   ├── cmsis.h
│   │   │   │   │   ├── crc_regs.h
│   │   │   │   │   ├── flc_regs.h
│   │   │   │   │   ├── gpio_regs.h
│   │   │   │   │   ├── i2cm_regs.h
│   │   │   │   │   ├── i2cs_regs.h
│   │   │   │   │   ├── icc_regs.h
│   │   │   │   │   ├── ioman_regs.h
│   │   │   │   │   ├── maa_regs.h
│   │   │   │   │   ├── max3263x.h
│   │   │   │   │   ├── mxc_device.h
│   │   │   │   │   ├── owm_regs.h
│   │   │   │   │   ├── pmu_regs.h
│   │   │   │   │   ├── prng_regs.h
│   │   │   │   │   ├── pt_regs.h
│   │   │   │   │   ├── pwrman_regs.h
│   │   │   │   │   ├── pwrseq_regs.h
│   │   │   │   │   ├── rtc_regs.h
│   │   │   │   │   ├── spib_regs.h
│   │   │   │   │   ├── spim_regs.h
│   │   │   │   │   ├── spis_regs.h
│   │   │   │   │   ├── spix_regs.h
│   │   │   │   │   ├── sysman_regs.h
│   │   │   │   │   ├── system_max3263x.h
│   │   │   │   │   ├── tmr_regs.h
│   │   │   │   │   ├── tpu_regs.h
│   │   │   │   │   ├── trim_regs.h
│   │   │   │   │   ├── uart_regs.h
│   │   │   │   │   ├── usb_regs.h
│   │   │   │   │   ├── wdt2_regs.h
│   │   │   │   │   └── wdt_regs.h
│   │   │   │   ├── device.h
│   │   │   │   ├── gpio_object.h
│   │   │   │   ├── mxc
│   │   │   │   │   ├── adc.h
│   │   │   │   │   ├── aes.h
│   │   │   │   │   ├── clkman.h
│   │   │   │   │   ├── crc.h
│   │   │   │   │   ├── flc.h
│   │   │   │   │   ├── gpio.h
│   │   │   │   │   ├── i2cm.h
│   │   │   │   │   ├── i2cs.h
│   │   │   │   │   ├── icc.h
│   │   │   │   │   ├── ioman.h
│   │   │   │   │   ├── lp.h
│   │   │   │   │   ├── maa.h
│   │   │   │   │   ├── mxc_assert.h
│   │   │   │   │   ├── mxc_config.h
│   │   │   │   │   ├── mxc_errors.h
│   │   │   │   │   ├── mxc_lock.h
│   │   │   │   │   ├── mxc_sys.h
│   │   │   │   │   ├── nvic_table.h
│   │   │   │   │   ├── owm.h
│   │   │   │   │   ├── pmu.h
│   │   │   │   │   ├── prng.h
│   │   │   │   │   ├── pt.h
│   │   │   │   │   ├── rtc.h
│   │   │   │   │   ├── spim.h
│   │   │   │   │   ├── spix.h
│   │   │   │   │   ├── tmr.h
│   │   │   │   │   ├── tmr_utils.h
│   │   │   │   │   ├── uart.h
│   │   │   │   │   ├── wdt.h
│   │   │   │   │   └── wdt2.h
│   │   │   │   └── objects.h
│   │   │   └── mbed_rtx.h
│   │   ├── TOOLCHAIN_ARM_STD
│   │   │   ├── MAX3263x.sct
│   │   │   ├── PeripheralPins.o
│   │   │   ├── adc.o
│   │   │   ├── aes.o
│   │   │   ├── analogin_api.o
│   │   │   ├── clkman.o
│   │   │   ├── crc.o
│   │   │   ├── device_nvic.o
│   │   │   ├── flc.o
│   │   │   ├── gpio.o
│   │   │   ├── gpio_api.o
│   │   │   ├── gpio_irq_api.o
│   │   │   ├── i2c_api.o
│   │   │   ├── i2cm.o
│   │   │   ├── i2cs.o
│   │   │   ├── icc.o
│   │   │   ├── ioman.o
│   │   │   ├── low_level_init.o
│   │   │   ├── lp.o
│   │   │   ├── maa.o
│   │   │   ├── mbed.ar
│   │   │   ├── mbed_board.o
│   │   │   ├── mbed_retarget.o
│   │   │   ├── mbed_sdk_boot.o
│   │   │   ├── mxc_assert.o
│   │   │   ├── mxc_sys.o
│   │   │   ├── owm.o
│   │   │   ├── pinmap.o
│   │   │   ├── pmu.o
│   │   │   ├── port_api.o
│   │   │   ├── prng.o
│   │   │   ├── pt.o
│   │   │   ├── pwmout_api.o
│   │   │   ├── rtc.o
│   │   │   ├── rtc_api.o
│   │   │   ├── serial_api.o
│   │   │   ├── sleep.o
│   │   │   ├── spi_api.o
│   │   │   ├── spim.o
│   │   │   ├── spix.o
│   │   │   ├── startup_MAX3263x.o
│   │   │   ├── sys.o
│   │   │   ├── system_max3263x.o
│   │   │   ├── tmr.o
│   │   │   ├── tmr_utils.o
│   │   │   ├── uart.o
│   │   │   ├── us_ticker.o
│   │   │   ├── wdt.o
│   │   │   └── wdt2.o
│   │   ├── arm_math.h
│   │   ├── cmsis_armcc.h
│   │   ├── cmsis_armclang.h
│   │   ├── cmsis_compiler.h
│   │   ├── cmsis_gcc.h
│   │   ├── core_armv8mbl.h
│   │   ├── core_armv8mml.h
│   │   ├── core_ca.h
│   │   ├── core_cm0.h
│   │   ├── core_cm0plus.h
│   │   ├── core_cm23.h
│   │   ├── core_cm3.h
│   │   ├── core_cm33.h
│   │   ├── core_cm4.h
│   │   ├── core_cm7.h
│   │   ├── core_cmSecureAccess.h
│   │   ├── core_sc000.h
│   │   ├── core_sc300.h
│   │   ├── mbed_lib.json
│   │   └── tz_context.h
│   ├── drivers
│   │   ├── AnalogIn.h
│   │   ├── AnalogOut.h
│   │   ├── BusIn.h
│   │   ├── BusInOut.h
│   │   ├── BusOut.h
│   │   ├── CAN.h
│   │   ├── DigitalIn.h
│   │   ├── DigitalInOut.h
│   │   ├── DigitalOut.h
│   │   ├── Ethernet.h
│   │   ├── FlashIAP.h
│   │   ├── I2C.h
│   │   ├── I2CSlave.h
│   │   ├── InterruptIn.h
│   │   ├── InterruptManager.h
│   │   ├── LowPowerTicker.h
│   │   ├── LowPowerTimeout.h
│   │   ├── LowPowerTimer.h
│   │   ├── PortIn.h
│   │   ├── PortInOut.h
│   │   ├── PortOut.h
│   │   ├── PwmOut.h
│   │   ├── RawSerial.h
│   │   ├── SPI.h
│   │   ├── SPISlave.h
│   │   ├── Serial.h
│   │   ├── SerialBase.h
│   │   ├── Ticker.h
│   │   ├── Timeout.h
│   │   ├── Timer.h
│   │   ├── TimerEvent.h
│   │   └── UARTSerial.h
│   ├── hal
│   │   ├── Driver_Common.h
│   │   ├── Driver_Storage.h
│   │   ├── analogin_api.h
│   │   ├── analogout_api.h
│   │   ├── buffer.h
│   │   ├── can_api.h
│   │   ├── can_helper.h
│   │   ├── dma_api.h
│   │   ├── emac_api.h
│   │   ├── ethernet_api.h
│   │   ├── flash_api.h
│   │   ├── flash_data.h
│   │   ├── gpio_api.h
│   │   ├── gpio_irq_api.h
│   │   ├── i2c_api.h
│   │   ├── lp_ticker_api.h
│   │   ├── pinmap.h
│   │   ├── port_api.h
│   │   ├── pwmout_api.h
│   │   ├── rtc_api.h
│   │   ├── serial_api.h
│   │   ├── sleep_api.h
│   │   ├── spi_api.h
│   │   ├── ticker_api.h
│   │   ├── trng_api.h
│   │   └── us_ticker_api.h
│   ├── mbed.h
│   ├── platform
│   │   ├── ATCmdParser.h
│   │   ├── CThunk.h
│   │   ├── CallChain.h
│   │   ├── Callback.h
│   │   ├── CircularBuffer.h
│   │   ├── DirHandle.h
│   │   ├── FileBase.h
│   │   ├── FileHandle.h
│   │   ├── FileLike.h
│   │   ├── FilePath.h
│   │   ├── FileSystemHandle.h
│   │   ├── FileSystemLike.h
│   │   ├── FunctionPointer.h
│   │   ├── LocalFileSystem.h
│   │   ├── NonCopyable.h
│   │   ├── PlatformMutex.h
│   │   ├── SingletonPtr.h
│   │   ├── Stream.h
│   │   ├── Transaction.h
│   │   ├── critical.h
│   │   ├── mbed_application.h
│   │   ├── mbed_assert.h
│   │   ├── mbed_critical.h
│   │   ├── mbed_debug.h
│   │   ├── mbed_error.h
│   │   ├── mbed_interface.h
│   │   ├── mbed_mem_trace.h
│   │   ├── mbed_mktime.h
│   │   ├── mbed_poll.h
│   │   ├── mbed_preprocessor.h
│   │   ├── mbed_retarget.h
│   │   ├── mbed_rtc_time.h
│   │   ├── mbed_semihost_api.h
│   │   ├── mbed_sleep.h
│   │   ├── mbed_stats.h
│   │   ├── mbed_toolchain.h
│   │   ├── mbed_wait_api.h
│   │   ├── platform.h
│   │   ├── rtc_time.h
│   │   ├── semihost_api.h
│   │   ├── sleep.h
│   │   ├── toolchain.h
│   │   └── wait_api.h
│   └── targets.json
├── mbed.bld
└── mbed_config.h

15 directories, 260 files



标签:

实例下载地址

心率血氧(FTHR_MAX30102)

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警