├── CORE ├── core_cm3.c ├── core_cm3.h ├── startup_stm32f10x_hd.s └── startup_stm32f10x_md.s ├── HARDWARE ├── IIC │ ├── myiic.c │ └── myiic.h ├── MAX30102 │ ├── MAX30102.c │ ├── MAX30102.c.orig │ └── MAX30102.h └── algorithm │ ├── algorithm.c │ └── algorithm.h ├── OBJ ├── IIC.axf ├── IIC.build_log.htm ├── IIC.hex ├── IIC.htm ├── IIC.lnp ├── IIC.sct ├── IIC_Target 1.dep ├── algorithm.crf ├── algorithm.d ├── algorithm.o ├── core_cm3.crf ├── core_cm3.d ├── core_cm3.o ├── delay.crf ├── delay.d ├── delay.o ├── main.crf ├── main.d ├── main.o ├── max30102.crf ├── max30102.d ├── max30102.o ├── misc.crf ├── misc.d ├── misc.o ├── myiic.crf ├── myiic.d ├── myiic.o ├── startup_stm32f10x_hd.d ├── startup_stm32f10x_hd.o ├── startup_stm32f10x_md.d ├── startup_stm32f10x_md.o ├── 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_usart.crf ├── stm32f10x_usart.d ├── stm32f10x_usart.o ├── sys.crf ├── sys.d ├── sys.o ├── system_stm32f10x.crf ├── system_stm32f10x.d ├── system_stm32f10x.o ├── usart.crf ├── usart.d └── usart.o ├── README.MD ├── STM32F10x_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 ├── SYSTEM ├── delay │ ├── delay.c │ └── delay.h ├── sys │ ├── sys.c │ └── sys.h └── usart │ ├── usart.c │ └── usart.h ├── USER ├── DebugConfig │ ├── Target_1_STM32F103C8_1.0.0.dbgconf │ └── Target_1_STM32F103RC_1.0.0.dbgconf ├── IIC.map ├── IIC.uvguix.Administrator ├── IIC.uvguix.L ├── IIC.uvoptx ├── IIC.uvprojx ├── JLinkLog.txt ├── JLinkSettings.ini ├── main.c ├── startup_stm32f10x_hd.lst ├── startup_stm32f10x_md.lst ├── stm32f10x.h ├── stm32f10x_conf.h ├── stm32f10x_it.c ├── stm32f10x_it.h ├── system_stm32f10x.c └── system_stm32f10x.h └── keilkilll.bat /CORE/core_cm3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/CORE/core_cm3.c -------------------------------------------------------------------------------- /CORE/core_cm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/CORE/core_cm3.h -------------------------------------------------------------------------------- /CORE/startup_stm32f10x_hd.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/CORE/startup_stm32f10x_hd.s -------------------------------------------------------------------------------- /CORE/startup_stm32f10x_md.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/CORE/startup_stm32f10x_md.s -------------------------------------------------------------------------------- /HARDWARE/IIC/myiic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/HARDWARE/IIC/myiic.c -------------------------------------------------------------------------------- /HARDWARE/IIC/myiic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/HARDWARE/IIC/myiic.h -------------------------------------------------------------------------------- /HARDWARE/MAX30102/MAX30102.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/HARDWARE/MAX30102/MAX30102.c -------------------------------------------------------------------------------- /HARDWARE/MAX30102/MAX30102.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/HARDWARE/MAX30102/MAX30102.c.orig -------------------------------------------------------------------------------- /HARDWARE/MAX30102/MAX30102.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/HARDWARE/MAX30102/MAX30102.h -------------------------------------------------------------------------------- /HARDWARE/algorithm/algorithm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/HARDWARE/algorithm/algorithm.c -------------------------------------------------------------------------------- /HARDWARE/algorithm/algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/HARDWARE/algorithm/algorithm.h -------------------------------------------------------------------------------- /OBJ/IIC.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/IIC.axf -------------------------------------------------------------------------------- /OBJ/IIC.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/IIC.build_log.htm -------------------------------------------------------------------------------- /OBJ/IIC.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/IIC.hex -------------------------------------------------------------------------------- /OBJ/IIC.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/IIC.htm -------------------------------------------------------------------------------- /OBJ/IIC.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/IIC.lnp -------------------------------------------------------------------------------- /OBJ/IIC.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/IIC.sct -------------------------------------------------------------------------------- /OBJ/IIC_Target 1.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/IIC_Target 1.dep -------------------------------------------------------------------------------- /OBJ/algorithm.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/algorithm.crf -------------------------------------------------------------------------------- /OBJ/algorithm.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/algorithm.d -------------------------------------------------------------------------------- /OBJ/algorithm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/algorithm.o -------------------------------------------------------------------------------- /OBJ/core_cm3.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/core_cm3.crf -------------------------------------------------------------------------------- /OBJ/core_cm3.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/core_cm3.d -------------------------------------------------------------------------------- /OBJ/core_cm3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/core_cm3.o -------------------------------------------------------------------------------- /OBJ/delay.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/delay.crf -------------------------------------------------------------------------------- /OBJ/delay.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/delay.d -------------------------------------------------------------------------------- /OBJ/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/delay.o -------------------------------------------------------------------------------- /OBJ/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/main.crf -------------------------------------------------------------------------------- /OBJ/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/main.d -------------------------------------------------------------------------------- /OBJ/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/main.o -------------------------------------------------------------------------------- /OBJ/max30102.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/max30102.crf -------------------------------------------------------------------------------- /OBJ/max30102.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/max30102.d -------------------------------------------------------------------------------- /OBJ/max30102.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/max30102.o -------------------------------------------------------------------------------- /OBJ/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/misc.crf -------------------------------------------------------------------------------- /OBJ/misc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/misc.d -------------------------------------------------------------------------------- /OBJ/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/misc.o -------------------------------------------------------------------------------- /OBJ/myiic.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/myiic.crf -------------------------------------------------------------------------------- /OBJ/myiic.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/myiic.d -------------------------------------------------------------------------------- /OBJ/myiic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/myiic.o -------------------------------------------------------------------------------- /OBJ/startup_stm32f10x_hd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/startup_stm32f10x_hd.d -------------------------------------------------------------------------------- /OBJ/startup_stm32f10x_hd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/startup_stm32f10x_hd.o -------------------------------------------------------------------------------- /OBJ/startup_stm32f10x_md.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/startup_stm32f10x_md.d -------------------------------------------------------------------------------- /OBJ/startup_stm32f10x_md.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/startup_stm32f10x_md.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_gpio.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_gpio.d -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_gpio.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_it.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_it.d -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_it.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_rcc.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_rcc.d -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_rcc.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_usart.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_usart.d -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/stm32f10x_usart.o -------------------------------------------------------------------------------- /OBJ/sys.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/sys.crf -------------------------------------------------------------------------------- /OBJ/sys.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/sys.d -------------------------------------------------------------------------------- /OBJ/sys.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/sys.o -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/system_stm32f10x.crf -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/system_stm32f10x.d -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/system_stm32f10x.o -------------------------------------------------------------------------------- /OBJ/usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/usart.crf -------------------------------------------------------------------------------- /OBJ/usart.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/usart.d -------------------------------------------------------------------------------- /OBJ/usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/OBJ/usart.o -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/README.MD -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/misc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_adc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_bkp.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_can.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_can.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_cec.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_crc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_dac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_dac.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_dbgmcu.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_dma.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_exti.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_flash.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_fsmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_fsmc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_gpio.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_i2c.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_iwdg.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_pwr.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_rcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_rcc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_rtc.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_sdio.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_spi.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_tim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_tim.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_usart.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/inc/stm32f10x_wwdg.h -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/misc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_adc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_bkp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_bkp.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_can.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_can.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_cec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_cec.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_crc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_dac.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_dbgmcu.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_dma.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_exti.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_fsmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_fsmc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_gpio.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_iwdg.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_pwr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_pwr.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_rcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_rcc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_rtc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_rtc.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_sdio.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_spi.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_tim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_tim.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/STM32F10x_FWLib/src/stm32f10x_wwdg.c -------------------------------------------------------------------------------- /SYSTEM/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/SYSTEM/delay/delay.c -------------------------------------------------------------------------------- /SYSTEM/delay/delay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/SYSTEM/delay/delay.h -------------------------------------------------------------------------------- /SYSTEM/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/SYSTEM/sys/sys.c -------------------------------------------------------------------------------- /SYSTEM/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/SYSTEM/sys/sys.h -------------------------------------------------------------------------------- /SYSTEM/usart/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/SYSTEM/usart/usart.c -------------------------------------------------------------------------------- /SYSTEM/usart/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/SYSTEM/usart/usart.h -------------------------------------------------------------------------------- /USER/DebugConfig/Target_1_STM32F103C8_1.0.0.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/DebugConfig/Target_1_STM32F103C8_1.0.0.dbgconf -------------------------------------------------------------------------------- /USER/DebugConfig/Target_1_STM32F103RC_1.0.0.dbgconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/DebugConfig/Target_1_STM32F103RC_1.0.0.dbgconf -------------------------------------------------------------------------------- /USER/IIC.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/IIC.map -------------------------------------------------------------------------------- /USER/IIC.uvguix.Administrator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/IIC.uvguix.Administrator -------------------------------------------------------------------------------- /USER/IIC.uvguix.L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/IIC.uvguix.L -------------------------------------------------------------------------------- /USER/IIC.uvoptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/IIC.uvoptx -------------------------------------------------------------------------------- /USER/IIC.uvprojx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/IIC.uvprojx -------------------------------------------------------------------------------- /USER/JLinkLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/JLinkLog.txt -------------------------------------------------------------------------------- /USER/JLinkSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/JLinkSettings.ini -------------------------------------------------------------------------------- /USER/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/main.c -------------------------------------------------------------------------------- /USER/startup_stm32f10x_hd.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/startup_stm32f10x_hd.lst -------------------------------------------------------------------------------- /USER/startup_stm32f10x_md.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/startup_stm32f10x_md.lst -------------------------------------------------------------------------------- /USER/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/stm32f10x.h -------------------------------------------------------------------------------- /USER/stm32f10x_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/stm32f10x_conf.h -------------------------------------------------------------------------------- /USER/stm32f10x_it.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/stm32f10x_it.c -------------------------------------------------------------------------------- /USER/stm32f10x_it.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/stm32f10x_it.h -------------------------------------------------------------------------------- /USER/system_stm32f10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/system_stm32f10x.c -------------------------------------------------------------------------------- /USER/system_stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/USER/system_stm32f10x.h -------------------------------------------------------------------------------- /keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Liber-coder/MAX30102_demo_only_C/HEAD/keilkilll.bat --------------------------------------------------------------------------------