├── CORE ├── core_cm3.c ├── core_cm3.h └── startup_stm32f10x_hd.s ├── HARDWARE ├── ADC │ ├── adc.c │ └── adc.h ├── BEEP │ ├── beep.c │ └── beep.h ├── DS18B20 │ ├── ds18b20.c │ └── ds18b20.h ├── KEY │ ├── key.c │ └── key.h ├── LCD │ ├── font.h │ ├── lcd.c │ └── lcd.h ├── LED │ ├── led.c │ └── led.h ├── MPU6050 │ ├── eMPL │ │ ├── dmpKey.h │ │ ├── dmpmap.h │ │ ├── inv_mpu.c │ │ ├── inv_mpu.h │ │ ├── inv_mpu_dmp_motion_driver.c │ │ └── inv_mpu_dmp_motion_driver.h │ ├── mpu6050.c │ ├── mpu6050.h │ ├── mpuiic.c │ └── mpuiic.h ├── SIM900A │ ├── sim900a.c │ └── sim900a.h ├── TEXT │ ├── text.c │ └── text.h ├── TIMER │ ├── timer.c │ └── timer.h └── USART2 │ ├── usart2.c │ └── usart2.h ├── OBJ ├── Healthy.axf ├── Healthy.build_log.htm ├── Healthy.hex ├── Healthy.htm ├── Healthy.lnp ├── Healthy.sct ├── Healthy_Healthy.dep ├── Healthy_MPU6050.dep ├── MPU6050.axf ├── MPU6050.build_log.htm ├── MPU6050.htm ├── MPU6050.lnp ├── MPU6050.sct ├── MPU6050_MPU6050.dep ├── adc.crf ├── adc.d ├── adc.o ├── beep.crf ├── beep.d ├── beep.o ├── core_cm3.crf ├── core_cm3.d ├── core_cm3.o ├── delay.crf ├── delay.d ├── delay.o ├── ds18b20.crf ├── ds18b20.d ├── ds18b20.o ├── inv_mpu.crf ├── inv_mpu.d ├── inv_mpu.o ├── inv_mpu_dmp_motion_driver.crf ├── inv_mpu_dmp_motion_driver.d ├── inv_mpu_dmp_motion_driver.o ├── key.crf ├── key.d ├── key.o ├── lcd.crf ├── lcd.d ├── lcd.o ├── led.crf ├── led.d ├── led.o ├── main.crf ├── main.d ├── main.o ├── misc.crf ├── misc.d ├── misc.o ├── mpu6050.crf ├── mpu6050.d ├── mpu6050.o ├── mpuiic.crf ├── mpuiic.d ├── mpuiic.o ├── sim900a.crf ├── sim900a.d ├── sim900a.o ├── startup_stm32f10x_hd.d ├── startup_stm32f10x_hd.o ├── stm32f10x_adc.crf ├── stm32f10x_adc.d ├── stm32f10x_adc.o ├── stm32f10x_fsmc.crf ├── stm32f10x_fsmc.d ├── stm32f10x_fsmc.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_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 ├── text.crf ├── text.d ├── text.o ├── timer.crf ├── timer.d ├── timer.o ├── usart.crf ├── usart.d ├── usart.o ├── usart2.crf ├── usart2.d ├── usart2.o ├── usmart.crf ├── usmart.d ├── usmart.o ├── usmart_config.crf ├── usmart_config.d ├── usmart_config.o ├── usmart_str.crf ├── usmart_str.d └── usmart_str.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 │ ├── Healthy_STM32F103ZE_1.0.0.dbgconf │ └── MPU6050_STM32F103ZE_1.0.0.dbgconf ├── Healthy.map ├── Healthy.uvguix.15399 ├── Healthy.uvguix.Administrator ├── Healthy.uvoptx ├── Healthy.uvprojx ├── JLinkSettings.ini ├── MPU6050.map ├── MPU6050.uvguix.15399 ├── MPU6050.uvoptx ├── main.c ├── startup_stm32f10x_hd.lst ├── stm32f10x.h ├── stm32f10x_conf.h ├── stm32f10x_it.c ├── stm32f10x_it.h ├── system_stm32f10x.c └── system_stm32f10x.h ├── USMART ├── readme.txt ├── usmart.c ├── usmart.h ├── usmart_config.c ├── usmart_str.c └── usmart_str.h ├── keilkilll.bat ├── 人体健康监测系统IMG20200411170007.jpg ├── 人体健康监测系统IMG20200411170037.jpg ├── 人体健康监测系统IMG20200411170057.jpg ├── 人体健康监测系统IMG20200411170137.jpg ├── 人体健康监测系统IMG_20200408_081813.jpg ├── 人体健康监测系统IMG_20200408_111808.jpg ├── 人体健康监测系统IMG_20200411_165824.jpg └── 硬件接线说明.txt /HARDWARE/ADC/adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/ADC/adc.c -------------------------------------------------------------------------------- /HARDWARE/ADC/adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/ADC/adc.h -------------------------------------------------------------------------------- /HARDWARE/BEEP/beep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/BEEP/beep.c -------------------------------------------------------------------------------- /HARDWARE/BEEP/beep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/BEEP/beep.h -------------------------------------------------------------------------------- /HARDWARE/DS18B20/ds18b20.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/DS18B20/ds18b20.c -------------------------------------------------------------------------------- /HARDWARE/DS18B20/ds18b20.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/DS18B20/ds18b20.h -------------------------------------------------------------------------------- /HARDWARE/KEY/key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/KEY/key.c -------------------------------------------------------------------------------- /HARDWARE/KEY/key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/KEY/key.h -------------------------------------------------------------------------------- /HARDWARE/LCD/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/LCD/font.h -------------------------------------------------------------------------------- /HARDWARE/LCD/lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/LCD/lcd.c -------------------------------------------------------------------------------- /HARDWARE/LCD/lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/LCD/lcd.h -------------------------------------------------------------------------------- /HARDWARE/LED/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/LED/led.c -------------------------------------------------------------------------------- /HARDWARE/LED/led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/LED/led.h -------------------------------------------------------------------------------- /HARDWARE/MPU6050/eMPL/dmpmap.h: -------------------------------------------------------------------------------- 1 | /* 2 | $License: 3 | Copyright (C) 2011 InvenSense Corporation, All Rights Reserved. 4 | $ 5 | */ 6 | #ifndef DMPMAP_H 7 | #define DMPMAP_H 8 | 9 | #ifdef __cplusplus 10 | extern "C" 11 | { 12 | #endif 13 | 14 | #define DMP_PTAT 0 15 | #define DMP_XGYR 2 16 | #define DMP_YGYR 4 17 | #define DMP_ZGYR 6 18 | #define DMP_XACC 8 19 | #define DMP_YACC 10 20 | #define DMP_ZACC 12 21 | #define DMP_ADC1 14 22 | #define DMP_ADC2 16 23 | #define DMP_ADC3 18 24 | #define DMP_BIASUNC 20 25 | #define DMP_FIFORT 22 26 | #define DMP_INVGSFH 24 27 | #define DMP_INVGSFL 26 28 | #define DMP_1H 28 29 | #define DMP_1L 30 30 | #define DMP_BLPFSTCH 32 31 | #define DMP_BLPFSTCL 34 32 | #define DMP_BLPFSXH 36 33 | #define DMP_BLPFSXL 38 34 | #define DMP_BLPFSYH 40 35 | #define DMP_BLPFSYL 42 36 | #define DMP_BLPFSZH 44 37 | #define DMP_BLPFSZL 46 38 | #define DMP_BLPFMTC 48 39 | #define DMP_SMC 50 40 | #define DMP_BLPFMXH 52 41 | #define DMP_BLPFMXL 54 42 | #define DMP_BLPFMYH 56 43 | #define DMP_BLPFMYL 58 44 | #define DMP_BLPFMZH 60 45 | #define DMP_BLPFMZL 62 46 | #define DMP_BLPFC 64 47 | #define DMP_SMCTH 66 48 | #define DMP_0H2 68 49 | #define DMP_0L2 70 50 | #define DMP_BERR2H 72 51 | #define DMP_BERR2L 74 52 | #define DMP_BERR2NH 76 53 | #define DMP_SMCINC 78 54 | #define DMP_ANGVBXH 80 55 | #define DMP_ANGVBXL 82 56 | #define DMP_ANGVBYH 84 57 | #define DMP_ANGVBYL 86 58 | #define DMP_ANGVBZH 88 59 | #define DMP_ANGVBZL 90 60 | #define DMP_BERR1H 92 61 | #define DMP_BERR1L 94 62 | #define DMP_ATCH 96 63 | #define DMP_BIASUNCSF 98 64 | #define DMP_ACT2H 100 65 | #define DMP_ACT2L 102 66 | #define DMP_GSFH 104 67 | #define DMP_GSFL 106 68 | #define DMP_GH 108 69 | #define DMP_GL 110 70 | #define DMP_0_5H 112 71 | #define DMP_0_5L 114 72 | #define DMP_0_0H 116 73 | #define DMP_0_0L 118 74 | #define DMP_1_0H 120 75 | #define DMP_1_0L 122 76 | #define DMP_1_5H 124 77 | #define DMP_1_5L 126 78 | #define DMP_TMP1AH 128 79 | #define DMP_TMP1AL 130 80 | #define DMP_TMP2AH 132 81 | #define DMP_TMP2AL 134 82 | #define DMP_TMP3AH 136 83 | #define DMP_TMP3AL 138 84 | #define DMP_TMP4AH 140 85 | #define DMP_TMP4AL 142 86 | #define DMP_XACCW 144 87 | #define DMP_TMP5 146 88 | #define DMP_XACCB 148 89 | #define DMP_TMP8 150 90 | #define DMP_YACCB 152 91 | #define DMP_TMP9 154 92 | #define DMP_ZACCB 156 93 | #define DMP_TMP10 158 94 | #define DMP_DZH 160 95 | #define DMP_DZL 162 96 | #define DMP_XGCH 164 97 | #define DMP_XGCL 166 98 | #define DMP_YGCH 168 99 | #define DMP_YGCL 170 100 | #define DMP_ZGCH 172 101 | #define DMP_ZGCL 174 102 | #define DMP_YACCW 176 103 | #define DMP_TMP7 178 104 | #define DMP_AFB1H 180 105 | #define DMP_AFB1L 182 106 | #define DMP_AFB2H 184 107 | #define DMP_AFB2L 186 108 | #define DMP_MAGFBH 188 109 | #define DMP_MAGFBL 190 110 | #define DMP_QT1H 192 111 | #define DMP_QT1L 194 112 | #define DMP_QT2H 196 113 | #define DMP_QT2L 198 114 | #define DMP_QT3H 200 115 | #define DMP_QT3L 202 116 | #define DMP_QT4H 204 117 | #define DMP_QT4L 206 118 | #define DMP_CTRL1H 208 119 | #define DMP_CTRL1L 210 120 | #define DMP_CTRL2H 212 121 | #define DMP_CTRL2L 214 122 | #define DMP_CTRL3H 216 123 | #define DMP_CTRL3L 218 124 | #define DMP_CTRL4H 220 125 | #define DMP_CTRL4L 222 126 | #define DMP_CTRLS1 224 127 | #define DMP_CTRLSF1 226 128 | #define DMP_CTRLS2 228 129 | #define DMP_CTRLSF2 230 130 | #define DMP_CTRLS3 232 131 | #define DMP_CTRLSFNLL 234 132 | #define DMP_CTRLS4 236 133 | #define DMP_CTRLSFNL2 238 134 | #define DMP_CTRLSFNL 240 135 | #define DMP_TMP30 242 136 | #define DMP_CTRLSFJT 244 137 | #define DMP_TMP31 246 138 | #define DMP_TMP11 248 139 | #define DMP_CTRLSF2_2 250 140 | #define DMP_TMP12 252 141 | #define DMP_CTRLSF1_2 254 142 | #define DMP_PREVPTAT 256 143 | #define DMP_ACCZB 258 144 | #define DMP_ACCXB 264 145 | #define DMP_ACCYB 266 146 | #define DMP_1HB 272 147 | #define DMP_1LB 274 148 | #define DMP_0H 276 149 | #define DMP_0L 278 150 | #define DMP_ASR22H 280 151 | #define DMP_ASR22L 282 152 | #define DMP_ASR6H 284 153 | #define DMP_ASR6L 286 154 | #define DMP_TMP13 288 155 | #define DMP_TMP14 290 156 | #define DMP_FINTXH 292 157 | #define DMP_FINTXL 294 158 | #define DMP_FINTYH 296 159 | #define DMP_FINTYL 298 160 | #define DMP_FINTZH 300 161 | #define DMP_FINTZL 302 162 | #define DMP_TMP1BH 304 163 | #define DMP_TMP1BL 306 164 | #define DMP_TMP2BH 308 165 | #define DMP_TMP2BL 310 166 | #define DMP_TMP3BH 312 167 | #define DMP_TMP3BL 314 168 | #define DMP_TMP4BH 316 169 | #define DMP_TMP4BL 318 170 | #define DMP_STXG 320 171 | #define DMP_ZCTXG 322 172 | #define DMP_STYG 324 173 | #define DMP_ZCTYG 326 174 | #define DMP_STZG 328 175 | #define DMP_ZCTZG 330 176 | #define DMP_CTRLSFJT2 332 177 | #define DMP_CTRLSFJTCNT 334 178 | #define DMP_PVXG 336 179 | #define DMP_TMP15 338 180 | #define DMP_PVYG 340 181 | #define DMP_TMP16 342 182 | #define DMP_PVZG 344 183 | #define DMP_TMP17 346 184 | #define DMP_MNMFLAGH 352 185 | #define DMP_MNMFLAGL 354 186 | #define DMP_MNMTMH 356 187 | #define DMP_MNMTML 358 188 | #define DMP_MNMTMTHRH 360 189 | #define DMP_MNMTMTHRL 362 190 | #define DMP_MNMTHRH 364 191 | #define DMP_MNMTHRL 366 192 | #define DMP_ACCQD4H 368 193 | #define DMP_ACCQD4L 370 194 | #define DMP_ACCQD5H 372 195 | #define DMP_ACCQD5L 374 196 | #define DMP_ACCQD6H 376 197 | #define DMP_ACCQD6L 378 198 | #define DMP_ACCQD7H 380 199 | #define DMP_ACCQD7L 382 200 | #define DMP_ACCQD0H 384 201 | #define DMP_ACCQD0L 386 202 | #define DMP_ACCQD1H 388 203 | #define DMP_ACCQD1L 390 204 | #define DMP_ACCQD2H 392 205 | #define DMP_ACCQD2L 394 206 | #define DMP_ACCQD3H 396 207 | #define DMP_ACCQD3L 398 208 | #define DMP_XN2H 400 209 | #define DMP_XN2L 402 210 | #define DMP_XN1H 404 211 | #define DMP_XN1L 406 212 | #define DMP_YN2H 408 213 | #define DMP_YN2L 410 214 | #define DMP_YN1H 412 215 | #define DMP_YN1L 414 216 | #define DMP_YH 416 217 | #define DMP_YL 418 218 | #define DMP_B0H 420 219 | #define DMP_B0L 422 220 | #define DMP_A1H 424 221 | #define DMP_A1L 426 222 | #define DMP_A2H 428 223 | #define DMP_A2L 430 224 | #define DMP_SEM1 432 225 | #define DMP_FIFOCNT 434 226 | #define DMP_SH_TH_X 436 227 | #define DMP_PACKET 438 228 | #define DMP_SH_TH_Y 440 229 | #define DMP_FOOTER 442 230 | #define DMP_SH_TH_Z 444 231 | #define DMP_TEMP29 448 232 | #define DMP_TEMP30 450 233 | #define DMP_XACCB_PRE 452 234 | #define DMP_XACCB_PREL 454 235 | #define DMP_YACCB_PRE 456 236 | #define DMP_YACCB_PREL 458 237 | #define DMP_ZACCB_PRE 460 238 | #define DMP_ZACCB_PREL 462 239 | #define DMP_TMP22 464 240 | #define DMP_TAP_TIMER 466 241 | #define DMP_TAP_THX 468 242 | #define DMP_TAP_THY 472 243 | #define DMP_TAP_THZ 476 244 | #define DMP_TAPW_MIN 478 245 | #define DMP_TMP25 480 246 | #define DMP_TMP26 482 247 | #define DMP_TMP27 484 248 | #define DMP_TMP28 486 249 | #define DMP_ORIENT 488 250 | #define DMP_THRSH 490 251 | #define DMP_ENDIANH 492 252 | #define DMP_ENDIANL 494 253 | #define DMP_BLPFNMTCH 496 254 | #define DMP_BLPFNMTCL 498 255 | #define DMP_BLPFNMXH 500 256 | #define DMP_BLPFNMXL 502 257 | #define DMP_BLPFNMYH 504 258 | #define DMP_BLPFNMYL 506 259 | #define DMP_BLPFNMZH 508 260 | #define DMP_BLPFNMZL 510 261 | #ifdef __cplusplus 262 | } 263 | #endif 264 | #endif // DMPMAP_H 265 | -------------------------------------------------------------------------------- /HARDWARE/MPU6050/eMPL/inv_mpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/MPU6050/eMPL/inv_mpu.c -------------------------------------------------------------------------------- /HARDWARE/MPU6050/eMPL/inv_mpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/MPU6050/eMPL/inv_mpu.h -------------------------------------------------------------------------------- /HARDWARE/MPU6050/eMPL/inv_mpu_dmp_motion_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/MPU6050/eMPL/inv_mpu_dmp_motion_driver.c -------------------------------------------------------------------------------- /HARDWARE/MPU6050/eMPL/inv_mpu_dmp_motion_driver.h: -------------------------------------------------------------------------------- 1 | /* 2 | $License: 3 | Copyright (C) 2011-2012 InvenSense Corporation, All Rights Reserved. 4 | See included License.txt for License information. 5 | $ 6 | */ 7 | /** 8 | * @addtogroup DRIVERS Sensor Driver Layer 9 | * @brief Hardware drivers to communicate with sensors via I2C. 10 | * 11 | * @{ 12 | * @file inv_mpu_dmp_motion_driver.h 13 | * @brief DMP image and interface functions. 14 | * @details All functions are preceded by the dmp_ prefix to 15 | * differentiate among MPL and general driver function calls. 16 | */ 17 | #ifndef _INV_MPU_DMP_MOTION_DRIVER_H_ 18 | #define _INV_MPU_DMP_MOTION_DRIVER_H_ 19 | 20 | #define TAP_X (0x01) 21 | #define TAP_Y (0x02) 22 | #define TAP_Z (0x04) 23 | #define TAP_XYZ (0x07) 24 | 25 | #define TAP_X_UP (0x01) 26 | #define TAP_X_DOWN (0x02) 27 | #define TAP_Y_UP (0x03) 28 | #define TAP_Y_DOWN (0x04) 29 | #define TAP_Z_UP (0x05) 30 | #define TAP_Z_DOWN (0x06) 31 | 32 | #define ANDROID_ORIENT_PORTRAIT (0x00) 33 | #define ANDROID_ORIENT_LANDSCAPE (0x01) 34 | #define ANDROID_ORIENT_REVERSE_PORTRAIT (0x02) 35 | #define ANDROID_ORIENT_REVERSE_LANDSCAPE (0x03) 36 | 37 | #define DMP_INT_GESTURE (0x01) 38 | #define DMP_INT_CONTINUOUS (0x02) 39 | 40 | #define DMP_FEATURE_TAP (0x001) 41 | #define DMP_FEATURE_ANDROID_ORIENT (0x002) 42 | #define DMP_FEATURE_LP_QUAT (0x004) 43 | #define DMP_FEATURE_PEDOMETER (0x008) 44 | #define DMP_FEATURE_6X_LP_QUAT (0x010) 45 | #define DMP_FEATURE_GYRO_CAL (0x020) 46 | #define DMP_FEATURE_SEND_RAW_ACCEL (0x040) 47 | #define DMP_FEATURE_SEND_RAW_GYRO (0x080) 48 | #define DMP_FEATURE_SEND_CAL_GYRO (0x100) 49 | 50 | #define INV_WXYZ_QUAT (0x100) 51 | 52 | /* Set up functions. */ 53 | int dmp_load_motion_driver_firmware(void); 54 | int dmp_set_fifo_rate(unsigned short rate); 55 | int dmp_get_fifo_rate(unsigned short *rate); 56 | int dmp_enable_feature(unsigned short mask); 57 | int dmp_get_enabled_features(unsigned short *mask); 58 | int dmp_set_interrupt_mode(unsigned char mode); 59 | int dmp_set_orientation(unsigned short orient); 60 | int dmp_set_gyro_bias(long *bias); 61 | int dmp_set_accel_bias(long *bias); 62 | 63 | /* Tap functions. */ 64 | int dmp_register_tap_cb(void (*func)(unsigned char, unsigned char)); 65 | int dmp_set_tap_thresh(unsigned char axis, unsigned short thresh); 66 | int dmp_set_tap_axes(unsigned char axis); 67 | int dmp_set_tap_count(unsigned char min_taps); 68 | int dmp_set_tap_time(unsigned short time); 69 | int dmp_set_tap_time_multi(unsigned short time); 70 | int dmp_set_shake_reject_thresh(long sf, unsigned short thresh); 71 | int dmp_set_shake_reject_time(unsigned short time); 72 | int dmp_set_shake_reject_timeout(unsigned short time); 73 | 74 | /* Android orientation functions. */ 75 | int dmp_register_android_orient_cb(void (*func)(unsigned char)); 76 | 77 | /* LP quaternion functions. */ 78 | int dmp_enable_lp_quat(unsigned char enable); 79 | int dmp_enable_6x_lp_quat(unsigned char enable); 80 | 81 | /* Pedometer functions. */ 82 | int dmp_get_pedometer_step_count(unsigned long *count); 83 | int dmp_set_pedometer_step_count(unsigned long count); 84 | int dmp_get_pedometer_walk_time(unsigned long *time); 85 | int dmp_set_pedometer_walk_time(unsigned long time); 86 | 87 | /* DMP gyro calibration functions. */ 88 | int dmp_enable_gyro_cal(unsigned char enable); 89 | 90 | /* Read function. This function should be called whenever the MPU interrupt is 91 | * detected. 92 | */ 93 | int dmp_read_fifo(short *gyro, short *accel, long *quat, 94 | unsigned long *timestamp, short *sensors, unsigned char *more); 95 | 96 | #endif /* #ifndef _INV_MPU_DMP_MOTION_DRIVER_H_ */ 97 | 98 | -------------------------------------------------------------------------------- /HARDWARE/MPU6050/mpu6050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/MPU6050/mpu6050.c -------------------------------------------------------------------------------- /HARDWARE/MPU6050/mpu6050.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/MPU6050/mpu6050.h -------------------------------------------------------------------------------- /HARDWARE/MPU6050/mpuiic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/MPU6050/mpuiic.c -------------------------------------------------------------------------------- /HARDWARE/MPU6050/mpuiic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/MPU6050/mpuiic.h -------------------------------------------------------------------------------- /HARDWARE/SIM900A/sim900a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/SIM900A/sim900a.c -------------------------------------------------------------------------------- /HARDWARE/SIM900A/sim900a.h: -------------------------------------------------------------------------------- 1 | #ifndef __SIM900A_H__ 2 | #define __SIM900A_H__ 3 | #include "sys.h" 4 | 5 | 6 | 7 | void sim900a_send_cmd(u8 *cmd,u8 flag); 8 | void sim900a_sms_sendenglish(u8 *message); 9 | void sim900a_sms_sendchinese(void ); 10 | 11 | #endif 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /HARDWARE/TEXT/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/TEXT/text.c -------------------------------------------------------------------------------- /HARDWARE/TEXT/text.h: -------------------------------------------------------------------------------- 1 | #ifndef _TEXT_H 2 | #define _TEXT_H 3 | 4 | 5 | #include "sys.h" 6 | 7 | void Show_Chinese(u8 x,u16 y,u8 *font); 8 | 9 | 10 | 11 | void xianshi(void); 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | #endif 22 | 23 | -------------------------------------------------------------------------------- /HARDWARE/TIMER/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/TIMER/timer.c -------------------------------------------------------------------------------- /HARDWARE/TIMER/timer.h: -------------------------------------------------------------------------------- 1 | #ifndef _TIMER_H 2 | #define _TIMER_H 3 | 4 | #include "sys.h" 5 | #include "adc.h" 6 | #include "stm32f10x_tim.h" 7 | 8 | #define true 1 9 | #define false 0 10 | 11 | extern u8 BPM; // used to hold the pulse rate 12 | extern short temperature; 13 | 14 | void TIM3_Int_Init(u16 arr,u16 psc); 15 | 16 | #endif 17 | -------------------------------------------------------------------------------- /HARDWARE/USART2/usart2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/USART2/usart2.c -------------------------------------------------------------------------------- /HARDWARE/USART2/usart2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/HARDWARE/USART2/usart2.h -------------------------------------------------------------------------------- /OBJ/Healthy.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/Healthy.axf -------------------------------------------------------------------------------- /OBJ/Healthy.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/Healthy.build_log.htm -------------------------------------------------------------------------------- /OBJ/Healthy.lnp: -------------------------------------------------------------------------------- 1 | --cpu Cortex-M3 2 | "..\obj\main.o" 3 | "..\obj\stm32f10x_it.o" 4 | "..\obj\system_stm32f10x.o" 5 | "..\obj\led.o" 6 | "..\obj\key.o" 7 | "..\obj\lcd.o" 8 | "..\obj\mpuiic.o" 9 | "..\obj\mpu6050.o" 10 | "..\obj\inv_mpu.o" 11 | "..\obj\inv_mpu_dmp_motion_driver.o" 12 | "..\obj\sim900a.o" 13 | "..\obj\timer.o" 14 | "..\obj\ds18b20.o" 15 | "..\obj\adc.o" 16 | "..\obj\beep.o" 17 | "..\obj\usart2.o" 18 | "..\obj\text.o" 19 | "..\obj\delay.o" 20 | "..\obj\sys.o" 21 | "..\obj\usart.o" 22 | "..\obj\core_cm3.o" 23 | "..\obj\startup_stm32f10x_hd.o" 24 | "..\obj\misc.o" 25 | "..\obj\stm32f10x_fsmc.o" 26 | "..\obj\stm32f10x_gpio.o" 27 | "..\obj\stm32f10x_rcc.o" 28 | "..\obj\stm32f10x_usart.o" 29 | "..\obj\stm32f10x_tim.o" 30 | "..\obj\stm32f10x_adc.o" 31 | --strict --scatter "..\OBJ\Healthy.sct" 32 | --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols 33 | --info sizes --info totals --info unused --info veneers 34 | --list ".\Healthy.map" -o ..\OBJ\Healthy.axf -------------------------------------------------------------------------------- /OBJ/Healthy.sct: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00080000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00080000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | .ANY (+XO) 11 | } 12 | RW_IRAM1 0x20000000 0x00010000 { ; RW data 13 | .ANY (+RW +ZI) 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /OBJ/MPU6050.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/MPU6050.axf -------------------------------------------------------------------------------- /OBJ/MPU6050.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/MPU6050.build_log.htm -------------------------------------------------------------------------------- /OBJ/MPU6050.lnp: -------------------------------------------------------------------------------- 1 | --cpu Cortex-M3 2 | "..\obj\main.o" 3 | "..\obj\stm32f10x_it.o" 4 | "..\obj\system_stm32f10x.o" 5 | "..\obj\led.o" 6 | "..\obj\key.o" 7 | "..\obj\lcd.o" 8 | "..\obj\mpuiic.o" 9 | "..\obj\mpu6050.o" 10 | "..\obj\inv_mpu.o" 11 | "..\obj\inv_mpu_dmp_motion_driver.o" 12 | "..\obj\sim900a.o" 13 | "..\obj\timer.o" 14 | "..\obj\ds18b20.o" 15 | "..\obj\adc.o" 16 | "..\obj\beep.o" 17 | "..\obj\usart2.o" 18 | "..\obj\text.o" 19 | "..\obj\delay.o" 20 | "..\obj\sys.o" 21 | "..\obj\usart.o" 22 | "..\obj\core_cm3.o" 23 | "..\obj\startup_stm32f10x_hd.o" 24 | "..\obj\misc.o" 25 | "..\obj\stm32f10x_fsmc.o" 26 | "..\obj\stm32f10x_gpio.o" 27 | "..\obj\stm32f10x_rcc.o" 28 | "..\obj\stm32f10x_usart.o" 29 | "..\obj\stm32f10x_tim.o" 30 | "..\obj\stm32f10x_adc.o" 31 | "..\obj\usmart.o" 32 | "..\obj\usmart_config.o" 33 | "..\obj\usmart_str.o" 34 | --strict --scatter "..\OBJ\MPU6050.sct" 35 | --summary_stderr --info summarysizes --map --load_addr_map_info --xref --callgraph --symbols 36 | --info sizes --info totals --info unused --info veneers 37 | --list ".\MPU6050.map" -o ..\OBJ\MPU6050.axf -------------------------------------------------------------------------------- /OBJ/MPU6050.sct: -------------------------------------------------------------------------------- 1 | ; ************************************************************* 2 | ; *** Scatter-Loading Description File generated by uVision *** 3 | ; ************************************************************* 4 | 5 | LR_IROM1 0x08000000 0x00080000 { ; load region size_region 6 | ER_IROM1 0x08000000 0x00080000 { ; load address = execution address 7 | *.o (RESET, +First) 8 | *(InRoot$$Sections) 9 | .ANY (+RO) 10 | .ANY (+XO) 11 | } 12 | RW_IRAM1 0x20000000 0x00010000 { ; RW data 13 | .ANY (+RW +ZI) 14 | } 15 | } 16 | 17 | -------------------------------------------------------------------------------- /OBJ/adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/adc.crf -------------------------------------------------------------------------------- /OBJ/adc.d: -------------------------------------------------------------------------------- 1 | ..\obj\adc.o: ..\HARDWARE\ADC\adc.c 2 | ..\obj\adc.o: ..\HARDWARE\ADC\adc.h 3 | ..\obj\adc.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\adc.o: ..\USER\stm32f10x.h 5 | ..\obj\adc.o: ..\CORE\core_cm3.h 6 | ..\obj\adc.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\adc.o: ..\USER\system_stm32f10x.h 8 | ..\obj\adc.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\adc.o: ..\USER\stm32f10x.h 11 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\adc.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\adc.o: ..\SYSTEM\delay\delay.h 34 | -------------------------------------------------------------------------------- /OBJ/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/adc.o -------------------------------------------------------------------------------- /OBJ/beep.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/beep.crf -------------------------------------------------------------------------------- /OBJ/beep.d: -------------------------------------------------------------------------------- 1 | ..\obj\beep.o: ..\HARDWARE\BEEP\beep.c 2 | ..\obj\beep.o: ..\HARDWARE\BEEP\beep.h 3 | ..\obj\beep.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\beep.o: ..\USER\stm32f10x.h 5 | ..\obj\beep.o: ..\CORE\core_cm3.h 6 | ..\obj\beep.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\beep.o: ..\USER\system_stm32f10x.h 8 | ..\obj\beep.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\beep.o: ..\USER\stm32f10x.h 11 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\beep.o: ..\STM32F10x_FWLib\inc\misc.h 33 | -------------------------------------------------------------------------------- /OBJ/beep.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/beep.o -------------------------------------------------------------------------------- /OBJ/core_cm3.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/core_cm3.crf -------------------------------------------------------------------------------- /OBJ/core_cm3.d: -------------------------------------------------------------------------------- 1 | ..\obj\core_cm3.o: ..\CORE\core_cm3.c 2 | ..\obj\core_cm3.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 3 | -------------------------------------------------------------------------------- /OBJ/core_cm3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/core_cm3.o -------------------------------------------------------------------------------- /OBJ/delay.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/delay.crf -------------------------------------------------------------------------------- /OBJ/delay.d: -------------------------------------------------------------------------------- 1 | ..\obj\delay.o: ..\SYSTEM\delay\delay.c 2 | ..\obj\delay.o: ..\SYSTEM\delay\delay.h 3 | ..\obj\delay.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\delay.o: ..\USER\stm32f10x.h 5 | ..\obj\delay.o: ..\CORE\core_cm3.h 6 | ..\obj\delay.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\delay.o: ..\USER\system_stm32f10x.h 8 | ..\obj\delay.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\delay.o: ..\USER\stm32f10x.h 11 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\delay.o: ..\STM32F10x_FWLib\inc\misc.h 33 | -------------------------------------------------------------------------------- /OBJ/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/delay.o -------------------------------------------------------------------------------- /OBJ/ds18b20.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/ds18b20.crf -------------------------------------------------------------------------------- /OBJ/ds18b20.d: -------------------------------------------------------------------------------- 1 | ..\obj\ds18b20.o: ..\HARDWARE\DS18B20\ds18b20.c 2 | ..\obj\ds18b20.o: ..\HARDWARE\DS18B20\ds18b20.h 3 | ..\obj\ds18b20.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\ds18b20.o: ..\USER\stm32f10x.h 5 | ..\obj\ds18b20.o: ..\CORE\core_cm3.h 6 | ..\obj\ds18b20.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\ds18b20.o: ..\USER\system_stm32f10x.h 8 | ..\obj\ds18b20.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\ds18b20.o: ..\USER\stm32f10x.h 11 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\ds18b20.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\ds18b20.o: ..\SYSTEM\delay\delay.h 34 | -------------------------------------------------------------------------------- /OBJ/ds18b20.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/ds18b20.o -------------------------------------------------------------------------------- /OBJ/inv_mpu.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/inv_mpu.crf -------------------------------------------------------------------------------- /OBJ/inv_mpu.d: -------------------------------------------------------------------------------- 1 | ..\obj\inv_mpu.o: ..\HARDWARE\MPU6050\eMPL\inv_mpu.c 2 | ..\obj\inv_mpu.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 3 | ..\obj\inv_mpu.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 4 | ..\obj\inv_mpu.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdlib.h 5 | ..\obj\inv_mpu.o: D:\keilARM\ARM\ARMCC\Bin\..\include\string.h 6 | ..\obj\inv_mpu.o: D:\keilARM\ARM\ARMCC\Bin\..\include\math.h 7 | ..\obj\inv_mpu.o: ..\HARDWARE\MPU6050\eMPL\inv_mpu.h 8 | ..\obj\inv_mpu.o: ..\USER\stm32f10x.h 9 | ..\obj\inv_mpu.o: ..\CORE\core_cm3.h 10 | ..\obj\inv_mpu.o: ..\USER\system_stm32f10x.h 11 | ..\obj\inv_mpu.o: ..\USER\stm32f10x_conf.h 12 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 13 | ..\obj\inv_mpu.o: ..\USER\stm32f10x.h 14 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 15 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 16 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 17 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 18 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 19 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 20 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 21 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 22 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 23 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 24 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 25 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 26 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 27 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 28 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 29 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 30 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 31 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 32 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 33 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 34 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 35 | ..\obj\inv_mpu.o: ..\STM32F10x_FWLib\inc\misc.h 36 | ..\obj\inv_mpu.o: ..\HARDWARE\MPU6050\eMPL\inv_mpu_dmp_motion_driver.h 37 | ..\obj\inv_mpu.o: ..\HARDWARE\MPU6050\mpu6050.h 38 | ..\obj\inv_mpu.o: ..\HARDWARE\MPU6050\mpuiic.h 39 | ..\obj\inv_mpu.o: ..\SYSTEM\sys\sys.h 40 | ..\obj\inv_mpu.o: ..\SYSTEM\delay\delay.h 41 | ..\obj\inv_mpu.o: ..\SYSTEM\usart\usart.h 42 | -------------------------------------------------------------------------------- /OBJ/inv_mpu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/inv_mpu.o -------------------------------------------------------------------------------- /OBJ/inv_mpu_dmp_motion_driver.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/inv_mpu_dmp_motion_driver.crf -------------------------------------------------------------------------------- /OBJ/inv_mpu_dmp_motion_driver.d: -------------------------------------------------------------------------------- 1 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\HARDWARE\MPU6050\eMPL\inv_mpu_dmp_motion_driver.c 2 | ..\obj\inv_mpu_dmp_motion_driver.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 3 | ..\obj\inv_mpu_dmp_motion_driver.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 4 | ..\obj\inv_mpu_dmp_motion_driver.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdlib.h 5 | ..\obj\inv_mpu_dmp_motion_driver.o: D:\keilARM\ARM\ARMCC\Bin\..\include\string.h 6 | ..\obj\inv_mpu_dmp_motion_driver.o: D:\keilARM\ARM\ARMCC\Bin\..\include\math.h 7 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\HARDWARE\MPU6050\eMPL\inv_mpu.h 8 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\USER\stm32f10x.h 9 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\CORE\core_cm3.h 10 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\USER\system_stm32f10x.h 11 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\USER\stm32f10x_conf.h 12 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 13 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\USER\stm32f10x.h 14 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 15 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 16 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 17 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 18 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 19 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 20 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 21 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 22 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 23 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 24 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 25 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 26 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 27 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 28 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 29 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 30 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 31 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 32 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 33 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 34 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 35 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\STM32F10x_FWLib\inc\misc.h 36 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\HARDWARE\MPU6050\eMPL\inv_mpu_dmp_motion_driver.h 37 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\HARDWARE\MPU6050\eMPL\dmpKey.h 38 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\HARDWARE\MPU6050\eMPL\dmpmap.h 39 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\SYSTEM\usart\usart.h 40 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\SYSTEM\sys\sys.h 41 | ..\obj\inv_mpu_dmp_motion_driver.o: ..\SYSTEM\delay\delay.h 42 | -------------------------------------------------------------------------------- /OBJ/inv_mpu_dmp_motion_driver.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/inv_mpu_dmp_motion_driver.o -------------------------------------------------------------------------------- /OBJ/key.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/key.crf -------------------------------------------------------------------------------- /OBJ/key.d: -------------------------------------------------------------------------------- 1 | ..\obj\key.o: ..\HARDWARE\KEY\key.c 2 | ..\obj\key.o: ..\USER\stm32f10x.h 3 | ..\obj\key.o: ..\CORE\core_cm3.h 4 | ..\obj\key.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 5 | ..\obj\key.o: ..\USER\system_stm32f10x.h 6 | ..\obj\key.o: ..\USER\stm32f10x_conf.h 7 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 8 | ..\obj\key.o: ..\USER\stm32f10x.h 9 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 10 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 11 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 12 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 13 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 14 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 15 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 16 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 17 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 18 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 19 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 20 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 21 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 22 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 23 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 24 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 25 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 26 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 27 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 28 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 29 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 30 | ..\obj\key.o: ..\STM32F10x_FWLib\inc\misc.h 31 | ..\obj\key.o: ..\HARDWARE\KEY\key.h 32 | ..\obj\key.o: ..\SYSTEM\sys\sys.h 33 | ..\obj\key.o: ..\SYSTEM\delay\delay.h 34 | -------------------------------------------------------------------------------- /OBJ/key.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/key.o -------------------------------------------------------------------------------- /OBJ/lcd.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/lcd.crf -------------------------------------------------------------------------------- /OBJ/lcd.d: -------------------------------------------------------------------------------- 1 | ..\obj\lcd.o: ..\HARDWARE\LCD\lcd.c 2 | ..\obj\lcd.o: ..\HARDWARE\LCD\lcd.h 3 | ..\obj\lcd.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\lcd.o: ..\USER\stm32f10x.h 5 | ..\obj\lcd.o: ..\CORE\core_cm3.h 6 | ..\obj\lcd.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\lcd.o: ..\USER\system_stm32f10x.h 8 | ..\obj\lcd.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\lcd.o: ..\USER\stm32f10x.h 11 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\lcd.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\lcd.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdlib.h 34 | ..\obj\lcd.o: ..\HARDWARE\LCD\font.h 35 | ..\obj\lcd.o: ..\SYSTEM\usart\usart.h 36 | ..\obj\lcd.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 37 | ..\obj\lcd.o: ..\SYSTEM\delay\delay.h 38 | -------------------------------------------------------------------------------- /OBJ/lcd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/lcd.o -------------------------------------------------------------------------------- /OBJ/led.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/led.crf -------------------------------------------------------------------------------- /OBJ/led.d: -------------------------------------------------------------------------------- 1 | ..\obj\led.o: ..\HARDWARE\LED\led.c 2 | ..\obj\led.o: ..\HARDWARE\LED\led.h 3 | ..\obj\led.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\led.o: ..\USER\stm32f10x.h 5 | ..\obj\led.o: ..\CORE\core_cm3.h 6 | ..\obj\led.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\led.o: ..\USER\system_stm32f10x.h 8 | ..\obj\led.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\led.o: ..\USER\stm32f10x.h 11 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\led.o: ..\STM32F10x_FWLib\inc\misc.h 33 | -------------------------------------------------------------------------------- /OBJ/led.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/led.o -------------------------------------------------------------------------------- /OBJ/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/main.crf -------------------------------------------------------------------------------- /OBJ/main.d: -------------------------------------------------------------------------------- 1 | ..\obj\main.o: main.c 2 | ..\obj\main.o: ..\HARDWARE\LED\led.h 3 | ..\obj\main.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\main.o: ..\USER\stm32f10x.h 5 | ..\obj\main.o: ..\CORE\core_cm3.h 6 | ..\obj\main.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\main.o: ..\USER\system_stm32f10x.h 8 | ..\obj\main.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\main.o: ..\USER\stm32f10x.h 11 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\main.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\main.o: ..\SYSTEM\delay\delay.h 34 | ..\obj\main.o: ..\HARDWARE\KEY\key.h 35 | ..\obj\main.o: ..\HARDWARE\LCD\lcd.h 36 | ..\obj\main.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdlib.h 37 | ..\obj\main.o: ..\SYSTEM\usart\usart.h 38 | ..\obj\main.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 39 | ..\obj\main.o: ..\HARDWARE\MPU6050\mpu6050.h 40 | ..\obj\main.o: ..\HARDWARE\MPU6050\mpuiic.h 41 | ..\obj\main.o: ..\HARDWARE\MPU6050\eMPL\inv_mpu.h 42 | ..\obj\main.o: ..\HARDWARE\MPU6050\eMPL\inv_mpu_dmp_motion_driver.h 43 | ..\obj\main.o: ..\HARDWARE\DS18B20\ds18b20.h 44 | ..\obj\main.o: ..\HARDWARE\TIMER\timer.h 45 | ..\obj\main.o: ..\HARDWARE\ADC\adc.h 46 | ..\obj\main.o: ..\HARDWARE\SIM900A\sim900a.h 47 | ..\obj\main.o: ..\HARDWARE\BEEP\beep.h 48 | ..\obj\main.o: ..\HARDWARE\USART2\usart2.h 49 | ..\obj\main.o: ..\HARDWARE\TEXT\text.h 50 | -------------------------------------------------------------------------------- /OBJ/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/main.o -------------------------------------------------------------------------------- /OBJ/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/misc.crf -------------------------------------------------------------------------------- /OBJ/misc.d: -------------------------------------------------------------------------------- 1 | ..\obj\misc.o: ..\STM32F10x_FWLib\src\misc.c 2 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\misc.h 3 | ..\obj\misc.o: ..\USER\stm32f10x.h 4 | ..\obj\misc.o: ..\CORE\core_cm3.h 5 | ..\obj\misc.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\misc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\misc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\misc.o: ..\USER\stm32f10x.h 10 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\misc.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/misc.o -------------------------------------------------------------------------------- /OBJ/mpu6050.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/mpu6050.crf -------------------------------------------------------------------------------- /OBJ/mpu6050.d: -------------------------------------------------------------------------------- 1 | ..\obj\mpu6050.o: ..\HARDWARE\MPU6050\mpu6050.c 2 | ..\obj\mpu6050.o: ..\HARDWARE\MPU6050\mpu6050.h 3 | ..\obj\mpu6050.o: ..\HARDWARE\MPU6050\mpuiic.h 4 | ..\obj\mpu6050.o: ..\SYSTEM\sys\sys.h 5 | ..\obj\mpu6050.o: ..\USER\stm32f10x.h 6 | ..\obj\mpu6050.o: ..\CORE\core_cm3.h 7 | ..\obj\mpu6050.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 8 | ..\obj\mpu6050.o: ..\USER\system_stm32f10x.h 9 | ..\obj\mpu6050.o: ..\USER\stm32f10x_conf.h 10 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 11 | ..\obj\mpu6050.o: ..\USER\stm32f10x.h 12 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 13 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 14 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 15 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 16 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 17 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 18 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 19 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 20 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 21 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 22 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 23 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 24 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 25 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 26 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 27 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 28 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 29 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 30 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 31 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 32 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 33 | ..\obj\mpu6050.o: ..\STM32F10x_FWLib\inc\misc.h 34 | ..\obj\mpu6050.o: ..\SYSTEM\delay\delay.h 35 | ..\obj\mpu6050.o: ..\SYSTEM\usart\usart.h 36 | ..\obj\mpu6050.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 37 | -------------------------------------------------------------------------------- /OBJ/mpu6050.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/mpu6050.o -------------------------------------------------------------------------------- /OBJ/mpuiic.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/mpuiic.crf -------------------------------------------------------------------------------- /OBJ/mpuiic.d: -------------------------------------------------------------------------------- 1 | ..\obj\mpuiic.o: ..\HARDWARE\MPU6050\mpuiic.c 2 | ..\obj\mpuiic.o: ..\HARDWARE\MPU6050\mpuiic.h 3 | ..\obj\mpuiic.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\mpuiic.o: ..\USER\stm32f10x.h 5 | ..\obj\mpuiic.o: ..\CORE\core_cm3.h 6 | ..\obj\mpuiic.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\mpuiic.o: ..\USER\system_stm32f10x.h 8 | ..\obj\mpuiic.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\mpuiic.o: ..\USER\stm32f10x.h 11 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\mpuiic.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\mpuiic.o: ..\SYSTEM\delay\delay.h 34 | -------------------------------------------------------------------------------- /OBJ/mpuiic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/mpuiic.o -------------------------------------------------------------------------------- /OBJ/sim900a.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/sim900a.crf -------------------------------------------------------------------------------- /OBJ/sim900a.d: -------------------------------------------------------------------------------- 1 | ..\obj\sim900a.o: ..\HARDWARE\SIM900A\sim900a.c 2 | ..\obj\sim900a.o: ..\HARDWARE\SIM900A\sim900a.h 3 | ..\obj\sim900a.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\sim900a.o: ..\USER\stm32f10x.h 5 | ..\obj\sim900a.o: ..\CORE\core_cm3.h 6 | ..\obj\sim900a.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\sim900a.o: ..\USER\system_stm32f10x.h 8 | ..\obj\sim900a.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\sim900a.o: ..\USER\stm32f10x.h 11 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\sim900a.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\sim900a.o: ..\SYSTEM\usart\usart.h 34 | ..\obj\sim900a.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 35 | ..\obj\sim900a.o: ..\SYSTEM\delay\delay.h 36 | ..\obj\sim900a.o: D:\keilARM\ARM\ARMCC\Bin\..\include\string.h 37 | ..\obj\sim900a.o: ..\HARDWARE\LCD\lcd.h 38 | ..\obj\sim900a.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdlib.h 39 | ..\obj\sim900a.o: ..\HARDWARE\USART2\usart2.h 40 | -------------------------------------------------------------------------------- /OBJ/sim900a.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/sim900a.o -------------------------------------------------------------------------------- /OBJ/startup_stm32f10x_hd.d: -------------------------------------------------------------------------------- 1 | ..\obj\startup_stm32f10x_hd.o: ..\CORE\startup_stm32f10x_hd.s 2 | -------------------------------------------------------------------------------- /OBJ/startup_stm32f10x_hd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/startup_stm32f10x_hd.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_adc.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_adc.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\src\stm32f10x_adc.c 2 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 3 | ..\obj\stm32f10x_adc.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_adc.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_adc.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_adc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_adc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 10 | ..\obj\stm32f10x_adc.o: ..\USER\stm32f10x.h 11 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\stm32f10x_adc.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_adc.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_fsmc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_fsmc.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_fsmc.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\src\stm32f10x_fsmc.c 2 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 3 | ..\obj\stm32f10x_fsmc.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_fsmc.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_fsmc.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_fsmc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_fsmc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_fsmc.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\stm32f10x_fsmc.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_fsmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_fsmc.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_gpio.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\src\stm32f10x_gpio.c 2 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 3 | ..\obj\stm32f10x_gpio.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_gpio.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_gpio.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_gpio.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_gpio.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_gpio.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\stm32f10x_gpio.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_gpio.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_it.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_it.o: stm32f10x_it.c 2 | ..\obj\stm32f10x_it.o: stm32f10x_it.h 3 | ..\obj\stm32f10x_it.o: stm32f10x.h 4 | ..\obj\stm32f10x_it.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_it.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_it.o: system_stm32f10x.h 7 | ..\obj\stm32f10x_it.o: stm32f10x_conf.h 8 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_it.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\stm32f10x_it.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_it.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_rcc.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\src\stm32f10x_rcc.c 2 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 3 | ..\obj\stm32f10x_rcc.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_rcc.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_rcc.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_rcc.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_rcc.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_rcc.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\stm32f10x_rcc.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_rcc.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_tim.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_tim.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\src\stm32f10x_tim.c 2 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 3 | ..\obj\stm32f10x_tim.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_tim.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_tim.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_tim.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_tim.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_tim.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\stm32f10x_tim.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_tim.o -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_usart.crf -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.d: -------------------------------------------------------------------------------- 1 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\src\stm32f10x_usart.c 2 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 3 | ..\obj\stm32f10x_usart.o: ..\USER\stm32f10x.h 4 | ..\obj\stm32f10x_usart.o: ..\CORE\core_cm3.h 5 | ..\obj\stm32f10x_usart.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\stm32f10x_usart.o: ..\USER\system_stm32f10x.h 7 | ..\obj\stm32f10x_usart.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\stm32f10x_usart.o: ..\USER\stm32f10x.h 10 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\stm32f10x_usart.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/stm32f10x_usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/stm32f10x_usart.o -------------------------------------------------------------------------------- /OBJ/sys.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/sys.crf -------------------------------------------------------------------------------- /OBJ/sys.d: -------------------------------------------------------------------------------- 1 | ..\obj\sys.o: ..\SYSTEM\sys\sys.c 2 | ..\obj\sys.o: ..\SYSTEM\sys\sys.h 3 | ..\obj\sys.o: ..\USER\stm32f10x.h 4 | ..\obj\sys.o: ..\CORE\core_cm3.h 5 | ..\obj\sys.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\sys.o: ..\USER\system_stm32f10x.h 7 | ..\obj\sys.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\sys.o: ..\USER\stm32f10x.h 10 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\sys.o: ..\STM32F10x_FWLib\inc\misc.h 32 | -------------------------------------------------------------------------------- /OBJ/sys.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/sys.o -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/system_stm32f10x.crf -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.d: -------------------------------------------------------------------------------- 1 | ..\obj\system_stm32f10x.o: system_stm32f10x.c 2 | ..\obj\system_stm32f10x.o: stm32f10x.h 3 | ..\obj\system_stm32f10x.o: ..\CORE\core_cm3.h 4 | ..\obj\system_stm32f10x.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 5 | ..\obj\system_stm32f10x.o: system_stm32f10x.h 6 | ..\obj\system_stm32f10x.o: stm32f10x_conf.h 7 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 8 | ..\obj\system_stm32f10x.o: ..\USER\stm32f10x.h 9 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 10 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 11 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 12 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 13 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 14 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 15 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 16 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 17 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 18 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 19 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 20 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 21 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 22 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 23 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 24 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 25 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 26 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 27 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 28 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 29 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 30 | ..\obj\system_stm32f10x.o: ..\STM32F10x_FWLib\inc\misc.h 31 | -------------------------------------------------------------------------------- /OBJ/system_stm32f10x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/system_stm32f10x.o -------------------------------------------------------------------------------- /OBJ/text.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/text.crf -------------------------------------------------------------------------------- /OBJ/text.d: -------------------------------------------------------------------------------- 1 | ..\obj\text.o: ..\HARDWARE\TEXT\text.c 2 | ..\obj\text.o: ..\HARDWARE\TEXT\text.h 3 | ..\obj\text.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\text.o: ..\USER\stm32f10x.h 5 | ..\obj\text.o: ..\CORE\core_cm3.h 6 | ..\obj\text.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\text.o: ..\USER\system_stm32f10x.h 8 | ..\obj\text.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\text.o: ..\USER\stm32f10x.h 11 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\text.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\text.o: ..\HARDWARE\LCD\lcd.h 34 | ..\obj\text.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdlib.h 35 | -------------------------------------------------------------------------------- /OBJ/text.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/text.o -------------------------------------------------------------------------------- /OBJ/timer.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/timer.crf -------------------------------------------------------------------------------- /OBJ/timer.d: -------------------------------------------------------------------------------- 1 | ..\obj\timer.o: ..\HARDWARE\TIMER\timer.c 2 | ..\obj\timer.o: ..\HARDWARE\TIMER\timer.h 3 | ..\obj\timer.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\timer.o: ..\USER\stm32f10x.h 5 | ..\obj\timer.o: ..\CORE\core_cm3.h 6 | ..\obj\timer.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\timer.o: ..\USER\system_stm32f10x.h 8 | ..\obj\timer.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\timer.o: ..\USER\stm32f10x.h 11 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\timer.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\timer.o: ..\HARDWARE\ADC\adc.h 34 | ..\obj\timer.o: ..\HARDWARE\LED\led.h 35 | ..\obj\timer.o: ..\SYSTEM\usart\usart.h 36 | ..\obj\timer.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 37 | ..\obj\timer.o: ..\HARDWARE\LCD\lcd.h 38 | ..\obj\timer.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdlib.h 39 | ..\obj\timer.o: ..\HARDWARE\DS18B20\ds18b20.h 40 | -------------------------------------------------------------------------------- /OBJ/timer.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/timer.o -------------------------------------------------------------------------------- /OBJ/usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usart.crf -------------------------------------------------------------------------------- /OBJ/usart.d: -------------------------------------------------------------------------------- 1 | ..\obj\usart.o: ..\SYSTEM\usart\usart.c 2 | ..\obj\usart.o: ..\SYSTEM\sys\sys.h 3 | ..\obj\usart.o: ..\USER\stm32f10x.h 4 | ..\obj\usart.o: ..\CORE\core_cm3.h 5 | ..\obj\usart.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\usart.o: ..\USER\system_stm32f10x.h 7 | ..\obj\usart.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\usart.o: ..\USER\stm32f10x.h 10 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\usart.o: ..\STM32F10x_FWLib\inc\misc.h 32 | ..\obj\usart.o: ..\SYSTEM\usart\usart.h 33 | ..\obj\usart.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 34 | -------------------------------------------------------------------------------- /OBJ/usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usart.o -------------------------------------------------------------------------------- /OBJ/usart2.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usart2.crf -------------------------------------------------------------------------------- /OBJ/usart2.d: -------------------------------------------------------------------------------- 1 | ..\obj\usart2.o: ..\HARDWARE\USART2\usart2.c 2 | ..\obj\usart2.o: ..\SYSTEM\delay\delay.h 3 | ..\obj\usart2.o: ..\SYSTEM\sys\sys.h 4 | ..\obj\usart2.o: ..\USER\stm32f10x.h 5 | ..\obj\usart2.o: ..\CORE\core_cm3.h 6 | ..\obj\usart2.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\usart2.o: ..\USER\system_stm32f10x.h 8 | ..\obj\usart2.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\usart2.o: ..\USER\stm32f10x.h 11 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\usart2.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\usart2.o: ..\HARDWARE\USART2\usart2.h 34 | ..\obj\usart2.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdarg.h 35 | ..\obj\usart2.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 36 | ..\obj\usart2.o: D:\keilARM\ARM\ARMCC\Bin\..\include\string.h 37 | -------------------------------------------------------------------------------- /OBJ/usart2.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usart2.o -------------------------------------------------------------------------------- /OBJ/usmart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usmart.crf -------------------------------------------------------------------------------- /OBJ/usmart.d: -------------------------------------------------------------------------------- 1 | ..\obj\usmart.o: ..\USMART\usmart.c 2 | ..\obj\usmart.o: ..\USMART\usmart.h 3 | ..\obj\usmart.o: ..\USMART\usmart_str.h 4 | ..\obj\usmart.o: ..\USER\stm32f10x.h 5 | ..\obj\usmart.o: ..\CORE\core_cm3.h 6 | ..\obj\usmart.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\usmart.o: ..\USER\system_stm32f10x.h 8 | ..\obj\usmart.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\usmart.o: ..\USER\stm32f10x.h 11 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\usmart.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\usmart.o: ..\SYSTEM\usart\usart.h 34 | ..\obj\usmart.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdio.h 35 | ..\obj\usmart.o: ..\SYSTEM\sys\sys.h 36 | -------------------------------------------------------------------------------- /OBJ/usmart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usmart.o -------------------------------------------------------------------------------- /OBJ/usmart_config.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usmart_config.crf -------------------------------------------------------------------------------- /OBJ/usmart_config.d: -------------------------------------------------------------------------------- 1 | ..\obj\usmart_config.o: ..\USMART\usmart_config.c 2 | ..\obj\usmart_config.o: ..\USMART\usmart.h 3 | ..\obj\usmart_config.o: ..\USMART\usmart_str.h 4 | ..\obj\usmart_config.o: ..\USER\stm32f10x.h 5 | ..\obj\usmart_config.o: ..\CORE\core_cm3.h 6 | ..\obj\usmart_config.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 7 | ..\obj\usmart_config.o: ..\USER\system_stm32f10x.h 8 | ..\obj\usmart_config.o: ..\USER\stm32f10x_conf.h 9 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 10 | ..\obj\usmart_config.o: ..\USER\stm32f10x.h 11 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 12 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 13 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 14 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 15 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 16 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 17 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 18 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 19 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 20 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 21 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 22 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 23 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 24 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 25 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 26 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 27 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 28 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 29 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 30 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 31 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 32 | ..\obj\usmart_config.o: ..\STM32F10x_FWLib\inc\misc.h 33 | ..\obj\usmart_config.o: ..\SYSTEM\delay\delay.h 34 | ..\obj\usmart_config.o: ..\SYSTEM\sys\sys.h 35 | ..\obj\usmart_config.o: ..\HARDWARE\MPU6050\mpu6050.h 36 | ..\obj\usmart_config.o: ..\HARDWARE\MPU6050\mpuiic.h 37 | -------------------------------------------------------------------------------- /OBJ/usmart_config.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usmart_config.o -------------------------------------------------------------------------------- /OBJ/usmart_str.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usmart_str.crf -------------------------------------------------------------------------------- /OBJ/usmart_str.d: -------------------------------------------------------------------------------- 1 | ..\obj\usmart_str.o: ..\USMART\usmart_str.c 2 | ..\obj\usmart_str.o: ..\USMART\usmart_str.h 3 | ..\obj\usmart_str.o: ..\USER\stm32f10x.h 4 | ..\obj\usmart_str.o: ..\CORE\core_cm3.h 5 | ..\obj\usmart_str.o: D:\keilARM\ARM\ARMCC\Bin\..\include\stdint.h 6 | ..\obj\usmart_str.o: ..\USER\system_stm32f10x.h 7 | ..\obj\usmart_str.o: ..\USER\stm32f10x_conf.h 8 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_adc.h 9 | ..\obj\usmart_str.o: ..\USER\stm32f10x.h 10 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_bkp.h 11 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_can.h 12 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_cec.h 13 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_crc.h 14 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_dac.h 15 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_dbgmcu.h 16 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_dma.h 17 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_exti.h 18 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_flash.h 19 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_fsmc.h 20 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_gpio.h 21 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_i2c.h 22 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_iwdg.h 23 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_pwr.h 24 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_rcc.h 25 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_rtc.h 26 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_sdio.h 27 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_spi.h 28 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_tim.h 29 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_usart.h 30 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\stm32f10x_wwdg.h 31 | ..\obj\usmart_str.o: ..\STM32F10x_FWLib\inc\misc.h 32 | ..\obj\usmart_str.o: ..\USMART\usmart.h 33 | -------------------------------------------------------------------------------- /OBJ/usmart_str.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/OBJ/usmart_str.o -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Human-health-monitoring-device- 2 | 基于STM32的人体健康监测装置 3 | 4 | 检测当前的温度与心率,同时通过MPU6050检测老人是否摔倒 5 | 6 | 将摔倒信息发送给子女 7 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/misc.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file misc.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the miscellaneous 8 | * firmware library functions (add-on to CMSIS functions). 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __MISC_H 25 | #define __MISC_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup MISC 39 | * @{ 40 | */ 41 | 42 | /** @defgroup MISC_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @brief NVIC Init Structure definition 48 | */ 49 | 50 | typedef struct 51 | { 52 | uint8_t NVIC_IRQChannel; /*!< Specifies the IRQ channel to be enabled or disabled. 53 | This parameter can be a value of @ref IRQn_Type 54 | (For the complete STM32 Devices IRQ Channels list, please 55 | refer to stm32f10x.h file) */ 56 | 57 | uint8_t NVIC_IRQChannelPreemptionPriority; /*!< Specifies the pre-emption priority for the IRQ channel 58 | specified in NVIC_IRQChannel. This parameter can be a value 59 | between 0 and 15 as described in the table @ref NVIC_Priority_Table */ 60 | 61 | uint8_t NVIC_IRQChannelSubPriority; /*!< Specifies the subpriority level for the IRQ channel specified 62 | in NVIC_IRQChannel. This parameter can be a value 63 | between 0 and 15 as described in the table @ref NVIC_Priority_Table */ 64 | 65 | FunctionalState NVIC_IRQChannelCmd; /*!< Specifies whether the IRQ channel defined in NVIC_IRQChannel 66 | will be enabled or disabled. 67 | This parameter can be set either to ENABLE or DISABLE */ 68 | } NVIC_InitTypeDef; 69 | 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @defgroup NVIC_Priority_Table 75 | * @{ 76 | */ 77 | 78 | /** 79 | @code 80 | The table below gives the allowed values of the pre-emption priority and subpriority according 81 | to the Priority Grouping configuration performed by NVIC_PriorityGroupConfig function 82 | ============================================================================================================================ 83 | NVIC_PriorityGroup | NVIC_IRQChannelPreemptionPriority | NVIC_IRQChannelSubPriority | Description 84 | ============================================================================================================================ 85 | NVIC_PriorityGroup_0 | 0 | 0-15 | 0 bits for pre-emption priority 86 | | | | 4 bits for subpriority 87 | ---------------------------------------------------------------------------------------------------------------------------- 88 | NVIC_PriorityGroup_1 | 0-1 | 0-7 | 1 bits for pre-emption priority 89 | | | | 3 bits for subpriority 90 | ---------------------------------------------------------------------------------------------------------------------------- 91 | NVIC_PriorityGroup_2 | 0-3 | 0-3 | 2 bits for pre-emption priority 92 | | | | 2 bits for subpriority 93 | ---------------------------------------------------------------------------------------------------------------------------- 94 | NVIC_PriorityGroup_3 | 0-7 | 0-1 | 3 bits for pre-emption priority 95 | | | | 1 bits for subpriority 96 | ---------------------------------------------------------------------------------------------------------------------------- 97 | NVIC_PriorityGroup_4 | 0-15 | 0 | 4 bits for pre-emption priority 98 | | | | 0 bits for subpriority 99 | ============================================================================================================================ 100 | @endcode 101 | */ 102 | 103 | /** 104 | * @} 105 | */ 106 | 107 | /** @defgroup MISC_Exported_Constants 108 | * @{ 109 | */ 110 | 111 | /** @defgroup Vector_Table_Base 112 | * @{ 113 | */ 114 | 115 | #define NVIC_VectTab_RAM ((uint32_t)0x20000000) 116 | #define NVIC_VectTab_FLASH ((uint32_t)0x08000000) 117 | #define IS_NVIC_VECTTAB(VECTTAB) (((VECTTAB) == NVIC_VectTab_RAM) || \ 118 | ((VECTTAB) == NVIC_VectTab_FLASH)) 119 | /** 120 | * @} 121 | */ 122 | 123 | /** @defgroup System_Low_Power 124 | * @{ 125 | */ 126 | 127 | #define NVIC_LP_SEVONPEND ((uint8_t)0x10) 128 | #define NVIC_LP_SLEEPDEEP ((uint8_t)0x04) 129 | #define NVIC_LP_SLEEPONEXIT ((uint8_t)0x02) 130 | #define IS_NVIC_LP(LP) (((LP) == NVIC_LP_SEVONPEND) || \ 131 | ((LP) == NVIC_LP_SLEEPDEEP) || \ 132 | ((LP) == NVIC_LP_SLEEPONEXIT)) 133 | /** 134 | * @} 135 | */ 136 | 137 | /** @defgroup Preemption_Priority_Group 138 | * @{ 139 | */ 140 | 141 | #define NVIC_PriorityGroup_0 ((uint32_t)0x700) /*!< 0 bits for pre-emption priority 142 | 4 bits for subpriority */ 143 | #define NVIC_PriorityGroup_1 ((uint32_t)0x600) /*!< 1 bits for pre-emption priority 144 | 3 bits for subpriority */ 145 | #define NVIC_PriorityGroup_2 ((uint32_t)0x500) /*!< 2 bits for pre-emption priority 146 | 2 bits for subpriority */ 147 | #define NVIC_PriorityGroup_3 ((uint32_t)0x400) /*!< 3 bits for pre-emption priority 148 | 1 bits for subpriority */ 149 | #define NVIC_PriorityGroup_4 ((uint32_t)0x300) /*!< 4 bits for pre-emption priority 150 | 0 bits for subpriority */ 151 | 152 | #define IS_NVIC_PRIORITY_GROUP(GROUP) (((GROUP) == NVIC_PriorityGroup_0) || \ 153 | ((GROUP) == NVIC_PriorityGroup_1) || \ 154 | ((GROUP) == NVIC_PriorityGroup_2) || \ 155 | ((GROUP) == NVIC_PriorityGroup_3) || \ 156 | ((GROUP) == NVIC_PriorityGroup_4)) 157 | 158 | #define IS_NVIC_PREEMPTION_PRIORITY(PRIORITY) ((PRIORITY) < 0x10) 159 | 160 | #define IS_NVIC_SUB_PRIORITY(PRIORITY) ((PRIORITY) < 0x10) 161 | 162 | #define IS_NVIC_OFFSET(OFFSET) ((OFFSET) < 0x000FFFFF) 163 | 164 | /** 165 | * @} 166 | */ 167 | 168 | /** @defgroup SysTick_clock_source 169 | * @{ 170 | */ 171 | 172 | #define SysTick_CLKSource_HCLK_Div8 ((uint32_t)0xFFFFFFFB) 173 | #define SysTick_CLKSource_HCLK ((uint32_t)0x00000004) 174 | #define IS_SYSTICK_CLK_SOURCE(SOURCE) (((SOURCE) == SysTick_CLKSource_HCLK) || \ 175 | ((SOURCE) == SysTick_CLKSource_HCLK_Div8)) 176 | /** 177 | * @} 178 | */ 179 | 180 | /** 181 | * @} 182 | */ 183 | 184 | /** @defgroup MISC_Exported_Macros 185 | * @{ 186 | */ 187 | 188 | /** 189 | * @} 190 | */ 191 | 192 | /** @defgroup MISC_Exported_Functions 193 | * @{ 194 | */ 195 | 196 | void NVIC_PriorityGroupConfig(uint32_t NVIC_PriorityGroup); 197 | void NVIC_Init(NVIC_InitTypeDef* NVIC_InitStruct); 198 | void NVIC_SetVectorTable(uint32_t NVIC_VectTab, uint32_t Offset); 199 | void NVIC_SystemLPConfig(uint8_t LowPowerMode, FunctionalState NewState); 200 | void SysTick_CLKSourceConfig(uint32_t SysTick_CLKSource); 201 | 202 | #ifdef __cplusplus 203 | } 204 | #endif 205 | 206 | #endif /* __MISC_H */ 207 | 208 | /** 209 | * @} 210 | */ 211 | 212 | /** 213 | * @} 214 | */ 215 | 216 | /** 217 | * @} 218 | */ 219 | 220 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 221 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_bkp.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_bkp.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the BKP firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_BKP_H 25 | #define __STM32F10x_BKP_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup BKP 39 | * @{ 40 | */ 41 | 42 | /** @defgroup BKP_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup BKP_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup Tamper_Pin_active_level 55 | * @{ 56 | */ 57 | 58 | #define BKP_TamperPinLevel_High ((uint16_t)0x0000) 59 | #define BKP_TamperPinLevel_Low ((uint16_t)0x0001) 60 | #define IS_BKP_TAMPER_PIN_LEVEL(LEVEL) (((LEVEL) == BKP_TamperPinLevel_High) || \ 61 | ((LEVEL) == BKP_TamperPinLevel_Low)) 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup RTC_output_source_to_output_on_the_Tamper_pin 67 | * @{ 68 | */ 69 | 70 | #define BKP_RTCOutputSource_None ((uint16_t)0x0000) 71 | #define BKP_RTCOutputSource_CalibClock ((uint16_t)0x0080) 72 | #define BKP_RTCOutputSource_Alarm ((uint16_t)0x0100) 73 | #define BKP_RTCOutputSource_Second ((uint16_t)0x0300) 74 | #define IS_BKP_RTC_OUTPUT_SOURCE(SOURCE) (((SOURCE) == BKP_RTCOutputSource_None) || \ 75 | ((SOURCE) == BKP_RTCOutputSource_CalibClock) || \ 76 | ((SOURCE) == BKP_RTCOutputSource_Alarm) || \ 77 | ((SOURCE) == BKP_RTCOutputSource_Second)) 78 | /** 79 | * @} 80 | */ 81 | 82 | /** @defgroup Data_Backup_Register 83 | * @{ 84 | */ 85 | 86 | #define BKP_DR1 ((uint16_t)0x0004) 87 | #define BKP_DR2 ((uint16_t)0x0008) 88 | #define BKP_DR3 ((uint16_t)0x000C) 89 | #define BKP_DR4 ((uint16_t)0x0010) 90 | #define BKP_DR5 ((uint16_t)0x0014) 91 | #define BKP_DR6 ((uint16_t)0x0018) 92 | #define BKP_DR7 ((uint16_t)0x001C) 93 | #define BKP_DR8 ((uint16_t)0x0020) 94 | #define BKP_DR9 ((uint16_t)0x0024) 95 | #define BKP_DR10 ((uint16_t)0x0028) 96 | #define BKP_DR11 ((uint16_t)0x0040) 97 | #define BKP_DR12 ((uint16_t)0x0044) 98 | #define BKP_DR13 ((uint16_t)0x0048) 99 | #define BKP_DR14 ((uint16_t)0x004C) 100 | #define BKP_DR15 ((uint16_t)0x0050) 101 | #define BKP_DR16 ((uint16_t)0x0054) 102 | #define BKP_DR17 ((uint16_t)0x0058) 103 | #define BKP_DR18 ((uint16_t)0x005C) 104 | #define BKP_DR19 ((uint16_t)0x0060) 105 | #define BKP_DR20 ((uint16_t)0x0064) 106 | #define BKP_DR21 ((uint16_t)0x0068) 107 | #define BKP_DR22 ((uint16_t)0x006C) 108 | #define BKP_DR23 ((uint16_t)0x0070) 109 | #define BKP_DR24 ((uint16_t)0x0074) 110 | #define BKP_DR25 ((uint16_t)0x0078) 111 | #define BKP_DR26 ((uint16_t)0x007C) 112 | #define BKP_DR27 ((uint16_t)0x0080) 113 | #define BKP_DR28 ((uint16_t)0x0084) 114 | #define BKP_DR29 ((uint16_t)0x0088) 115 | #define BKP_DR30 ((uint16_t)0x008C) 116 | #define BKP_DR31 ((uint16_t)0x0090) 117 | #define BKP_DR32 ((uint16_t)0x0094) 118 | #define BKP_DR33 ((uint16_t)0x0098) 119 | #define BKP_DR34 ((uint16_t)0x009C) 120 | #define BKP_DR35 ((uint16_t)0x00A0) 121 | #define BKP_DR36 ((uint16_t)0x00A4) 122 | #define BKP_DR37 ((uint16_t)0x00A8) 123 | #define BKP_DR38 ((uint16_t)0x00AC) 124 | #define BKP_DR39 ((uint16_t)0x00B0) 125 | #define BKP_DR40 ((uint16_t)0x00B4) 126 | #define BKP_DR41 ((uint16_t)0x00B8) 127 | #define BKP_DR42 ((uint16_t)0x00BC) 128 | 129 | #define IS_BKP_DR(DR) (((DR) == BKP_DR1) || ((DR) == BKP_DR2) || ((DR) == BKP_DR3) || \ 130 | ((DR) == BKP_DR4) || ((DR) == BKP_DR5) || ((DR) == BKP_DR6) || \ 131 | ((DR) == BKP_DR7) || ((DR) == BKP_DR8) || ((DR) == BKP_DR9) || \ 132 | ((DR) == BKP_DR10) || ((DR) == BKP_DR11) || ((DR) == BKP_DR12) || \ 133 | ((DR) == BKP_DR13) || ((DR) == BKP_DR14) || ((DR) == BKP_DR15) || \ 134 | ((DR) == BKP_DR16) || ((DR) == BKP_DR17) || ((DR) == BKP_DR18) || \ 135 | ((DR) == BKP_DR19) || ((DR) == BKP_DR20) || ((DR) == BKP_DR21) || \ 136 | ((DR) == BKP_DR22) || ((DR) == BKP_DR23) || ((DR) == BKP_DR24) || \ 137 | ((DR) == BKP_DR25) || ((DR) == BKP_DR26) || ((DR) == BKP_DR27) || \ 138 | ((DR) == BKP_DR28) || ((DR) == BKP_DR29) || ((DR) == BKP_DR30) || \ 139 | ((DR) == BKP_DR31) || ((DR) == BKP_DR32) || ((DR) == BKP_DR33) || \ 140 | ((DR) == BKP_DR34) || ((DR) == BKP_DR35) || ((DR) == BKP_DR36) || \ 141 | ((DR) == BKP_DR37) || ((DR) == BKP_DR38) || ((DR) == BKP_DR39) || \ 142 | ((DR) == BKP_DR40) || ((DR) == BKP_DR41) || ((DR) == BKP_DR42)) 143 | 144 | #define IS_BKP_CALIBRATION_VALUE(VALUE) ((VALUE) <= 0x7F) 145 | /** 146 | * @} 147 | */ 148 | 149 | /** 150 | * @} 151 | */ 152 | 153 | /** @defgroup BKP_Exported_Macros 154 | * @{ 155 | */ 156 | 157 | /** 158 | * @} 159 | */ 160 | 161 | /** @defgroup BKP_Exported_Functions 162 | * @{ 163 | */ 164 | 165 | void BKP_DeInit(void); 166 | void BKP_TamperPinLevelConfig(uint16_t BKP_TamperPinLevel); 167 | void BKP_TamperPinCmd(FunctionalState NewState); 168 | void BKP_ITConfig(FunctionalState NewState); 169 | void BKP_RTCOutputConfig(uint16_t BKP_RTCOutputSource); 170 | void BKP_SetRTCCalibrationValue(uint8_t CalibrationValue); 171 | void BKP_WriteBackupRegister(uint16_t BKP_DR, uint16_t Data); 172 | uint16_t BKP_ReadBackupRegister(uint16_t BKP_DR); 173 | FlagStatus BKP_GetFlagStatus(void); 174 | void BKP_ClearFlag(void); 175 | ITStatus BKP_GetITStatus(void); 176 | void BKP_ClearITPendingBit(void); 177 | 178 | #ifdef __cplusplus 179 | } 180 | #endif 181 | 182 | #endif /* __STM32F10x_BKP_H */ 183 | /** 184 | * @} 185 | */ 186 | 187 | /** 188 | * @} 189 | */ 190 | 191 | /** 192 | * @} 193 | */ 194 | 195 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 196 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_cec.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_cec.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the CEC firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_CEC_H 25 | #define __STM32F10x_CEC_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup CEC 39 | * @{ 40 | */ 41 | 42 | 43 | /** @defgroup CEC_Exported_Types 44 | * @{ 45 | */ 46 | 47 | /** 48 | * @brief CEC Init structure definition 49 | */ 50 | typedef struct 51 | { 52 | uint16_t CEC_BitTimingMode; /*!< Configures the CEC Bit Timing Error Mode. 53 | This parameter can be a value of @ref CEC_BitTiming_Mode */ 54 | uint16_t CEC_BitPeriodMode; /*!< Configures the CEC Bit Period Error Mode. 55 | This parameter can be a value of @ref CEC_BitPeriod_Mode */ 56 | }CEC_InitTypeDef; 57 | 58 | /** 59 | * @} 60 | */ 61 | 62 | /** @defgroup CEC_Exported_Constants 63 | * @{ 64 | */ 65 | 66 | /** @defgroup CEC_BitTiming_Mode 67 | * @{ 68 | */ 69 | #define CEC_BitTimingStdMode ((uint16_t)0x00) /*!< Bit timing error Standard Mode */ 70 | #define CEC_BitTimingErrFreeMode CEC_CFGR_BTEM /*!< Bit timing error Free Mode */ 71 | 72 | #define IS_CEC_BIT_TIMING_ERROR_MODE(MODE) (((MODE) == CEC_BitTimingStdMode) || \ 73 | ((MODE) == CEC_BitTimingErrFreeMode)) 74 | /** 75 | * @} 76 | */ 77 | 78 | /** @defgroup CEC_BitPeriod_Mode 79 | * @{ 80 | */ 81 | #define CEC_BitPeriodStdMode ((uint16_t)0x00) /*!< Bit period error Standard Mode */ 82 | #define CEC_BitPeriodFlexibleMode CEC_CFGR_BPEM /*!< Bit period error Flexible Mode */ 83 | 84 | #define IS_CEC_BIT_PERIOD_ERROR_MODE(MODE) (((MODE) == CEC_BitPeriodStdMode) || \ 85 | ((MODE) == CEC_BitPeriodFlexibleMode)) 86 | /** 87 | * @} 88 | */ 89 | 90 | 91 | /** @defgroup CEC_interrupts_definition 92 | * @{ 93 | */ 94 | #define CEC_IT_TERR CEC_CSR_TERR 95 | #define CEC_IT_TBTRF CEC_CSR_TBTRF 96 | #define CEC_IT_RERR CEC_CSR_RERR 97 | #define CEC_IT_RBTF CEC_CSR_RBTF 98 | #define IS_CEC_GET_IT(IT) (((IT) == CEC_IT_TERR) || ((IT) == CEC_IT_TBTRF) || \ 99 | ((IT) == CEC_IT_RERR) || ((IT) == CEC_IT_RBTF)) 100 | /** 101 | * @} 102 | */ 103 | 104 | 105 | /** @defgroup CEC_Own_Address 106 | * @{ 107 | */ 108 | #define IS_CEC_ADDRESS(ADDRESS) ((ADDRESS) < 0x10) 109 | /** 110 | * @} 111 | */ 112 | 113 | /** @defgroup CEC_Prescaler 114 | * @{ 115 | */ 116 | #define IS_CEC_PRESCALER(PRESCALER) ((PRESCALER) <= 0x3FFF) 117 | 118 | /** 119 | * @} 120 | */ 121 | 122 | /** @defgroup CEC_flags_definition 123 | * @{ 124 | */ 125 | 126 | /** 127 | * @brief ESR register flags 128 | */ 129 | #define CEC_FLAG_BTE ((uint32_t)0x10010000) 130 | #define CEC_FLAG_BPE ((uint32_t)0x10020000) 131 | #define CEC_FLAG_RBTFE ((uint32_t)0x10040000) 132 | #define CEC_FLAG_SBE ((uint32_t)0x10080000) 133 | #define CEC_FLAG_ACKE ((uint32_t)0x10100000) 134 | #define CEC_FLAG_LINE ((uint32_t)0x10200000) 135 | #define CEC_FLAG_TBTFE ((uint32_t)0x10400000) 136 | 137 | /** 138 | * @brief CSR register flags 139 | */ 140 | #define CEC_FLAG_TEOM ((uint32_t)0x00000002) 141 | #define CEC_FLAG_TERR ((uint32_t)0x00000004) 142 | #define CEC_FLAG_TBTRF ((uint32_t)0x00000008) 143 | #define CEC_FLAG_RSOM ((uint32_t)0x00000010) 144 | #define CEC_FLAG_REOM ((uint32_t)0x00000020) 145 | #define CEC_FLAG_RERR ((uint32_t)0x00000040) 146 | #define CEC_FLAG_RBTF ((uint32_t)0x00000080) 147 | 148 | #define IS_CEC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint32_t)0xFFFFFF03) == 0x00) && ((FLAG) != 0x00)) 149 | 150 | #define IS_CEC_GET_FLAG(FLAG) (((FLAG) == CEC_FLAG_BTE) || ((FLAG) == CEC_FLAG_BPE) || \ 151 | ((FLAG) == CEC_FLAG_RBTFE) || ((FLAG)== CEC_FLAG_SBE) || \ 152 | ((FLAG) == CEC_FLAG_ACKE) || ((FLAG) == CEC_FLAG_LINE) || \ 153 | ((FLAG) == CEC_FLAG_TBTFE) || ((FLAG) == CEC_FLAG_TEOM) || \ 154 | ((FLAG) == CEC_FLAG_TERR) || ((FLAG) == CEC_FLAG_TBTRF) || \ 155 | ((FLAG) == CEC_FLAG_RSOM) || ((FLAG) == CEC_FLAG_REOM) || \ 156 | ((FLAG) == CEC_FLAG_RERR) || ((FLAG) == CEC_FLAG_RBTF)) 157 | 158 | /** 159 | * @} 160 | */ 161 | 162 | /** 163 | * @} 164 | */ 165 | 166 | /** @defgroup CEC_Exported_Macros 167 | * @{ 168 | */ 169 | 170 | /** 171 | * @} 172 | */ 173 | 174 | /** @defgroup CEC_Exported_Functions 175 | * @{ 176 | */ 177 | void CEC_DeInit(void); 178 | void CEC_Init(CEC_InitTypeDef* CEC_InitStruct); 179 | void CEC_Cmd(FunctionalState NewState); 180 | void CEC_ITConfig(FunctionalState NewState); 181 | void CEC_OwnAddressConfig(uint8_t CEC_OwnAddress); 182 | void CEC_SetPrescaler(uint16_t CEC_Prescaler); 183 | void CEC_SendDataByte(uint8_t Data); 184 | uint8_t CEC_ReceiveDataByte(void); 185 | void CEC_StartOfMessage(void); 186 | void CEC_EndOfMessageCmd(FunctionalState NewState); 187 | FlagStatus CEC_GetFlagStatus(uint32_t CEC_FLAG); 188 | void CEC_ClearFlag(uint32_t CEC_FLAG); 189 | ITStatus CEC_GetITStatus(uint8_t CEC_IT); 190 | void CEC_ClearITPendingBit(uint16_t CEC_IT); 191 | 192 | #ifdef __cplusplus 193 | } 194 | #endif 195 | 196 | #endif /* __STM32F10x_CEC_H */ 197 | 198 | /** 199 | * @} 200 | */ 201 | 202 | /** 203 | * @} 204 | */ 205 | 206 | /** 207 | * @} 208 | */ 209 | 210 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 211 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_crc.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_crc.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the CRC firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_CRC_H 25 | #define __STM32F10x_CRC_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup CRC 39 | * @{ 40 | */ 41 | 42 | /** @defgroup CRC_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup CRC_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** 55 | * @} 56 | */ 57 | 58 | /** @defgroup CRC_Exported_Macros 59 | * @{ 60 | */ 61 | 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup CRC_Exported_Functions 67 | * @{ 68 | */ 69 | 70 | void CRC_ResetDR(void); 71 | uint32_t CRC_CalcCRC(uint32_t Data); 72 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength); 73 | uint32_t CRC_GetCRC(void); 74 | void CRC_SetIDRegister(uint8_t IDValue); 75 | uint8_t CRC_GetIDRegister(void); 76 | 77 | #ifdef __cplusplus 78 | } 79 | #endif 80 | 81 | #endif /* __STM32F10x_CRC_H */ 82 | /** 83 | * @} 84 | */ 85 | 86 | /** 87 | * @} 88 | */ 89 | 90 | /** 91 | * @} 92 | */ 93 | 94 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 95 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_dbgmcu.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_dbgmcu.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the DBGMCU 8 | * firmware library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_DBGMCU_H 25 | #define __STM32F10x_DBGMCU_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup DBGMCU 39 | * @{ 40 | */ 41 | 42 | /** @defgroup DBGMCU_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup DBGMCU_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | #define DBGMCU_SLEEP ((uint32_t)0x00000001) 55 | #define DBGMCU_STOP ((uint32_t)0x00000002) 56 | #define DBGMCU_STANDBY ((uint32_t)0x00000004) 57 | #define DBGMCU_IWDG_STOP ((uint32_t)0x00000100) 58 | #define DBGMCU_WWDG_STOP ((uint32_t)0x00000200) 59 | #define DBGMCU_TIM1_STOP ((uint32_t)0x00000400) 60 | #define DBGMCU_TIM2_STOP ((uint32_t)0x00000800) 61 | #define DBGMCU_TIM3_STOP ((uint32_t)0x00001000) 62 | #define DBGMCU_TIM4_STOP ((uint32_t)0x00002000) 63 | #define DBGMCU_CAN1_STOP ((uint32_t)0x00004000) 64 | #define DBGMCU_I2C1_SMBUS_TIMEOUT ((uint32_t)0x00008000) 65 | #define DBGMCU_I2C2_SMBUS_TIMEOUT ((uint32_t)0x00010000) 66 | #define DBGMCU_TIM8_STOP ((uint32_t)0x00020000) 67 | #define DBGMCU_TIM5_STOP ((uint32_t)0x00040000) 68 | #define DBGMCU_TIM6_STOP ((uint32_t)0x00080000) 69 | #define DBGMCU_TIM7_STOP ((uint32_t)0x00100000) 70 | #define DBGMCU_CAN2_STOP ((uint32_t)0x00200000) 71 | #define DBGMCU_TIM15_STOP ((uint32_t)0x00400000) 72 | #define DBGMCU_TIM16_STOP ((uint32_t)0x00800000) 73 | #define DBGMCU_TIM17_STOP ((uint32_t)0x01000000) 74 | #define DBGMCU_TIM12_STOP ((uint32_t)0x02000000) 75 | #define DBGMCU_TIM13_STOP ((uint32_t)0x04000000) 76 | #define DBGMCU_TIM14_STOP ((uint32_t)0x08000000) 77 | #define DBGMCU_TIM9_STOP ((uint32_t)0x10000000) 78 | #define DBGMCU_TIM10_STOP ((uint32_t)0x20000000) 79 | #define DBGMCU_TIM11_STOP ((uint32_t)0x40000000) 80 | 81 | #define IS_DBGMCU_PERIPH(PERIPH) ((((PERIPH) & 0x800000F8) == 0x00) && ((PERIPH) != 0x00)) 82 | /** 83 | * @} 84 | */ 85 | 86 | /** @defgroup DBGMCU_Exported_Macros 87 | * @{ 88 | */ 89 | 90 | /** 91 | * @} 92 | */ 93 | 94 | /** @defgroup DBGMCU_Exported_Functions 95 | * @{ 96 | */ 97 | 98 | uint32_t DBGMCU_GetREVID(void); 99 | uint32_t DBGMCU_GetDEVID(void); 100 | void DBGMCU_Config(uint32_t DBGMCU_Periph, FunctionalState NewState); 101 | 102 | #ifdef __cplusplus 103 | } 104 | #endif 105 | 106 | #endif /* __STM32F10x_DBGMCU_H */ 107 | /** 108 | * @} 109 | */ 110 | 111 | /** 112 | * @} 113 | */ 114 | 115 | /** 116 | * @} 117 | */ 118 | 119 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 120 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_exti.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_exti.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the EXTI firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_EXTI_H 25 | #define __STM32F10x_EXTI_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup EXTI 39 | * @{ 40 | */ 41 | 42 | /** @defgroup EXTI_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @brief EXTI mode enumeration 48 | */ 49 | 50 | typedef enum 51 | { 52 | EXTI_Mode_Interrupt = 0x00, 53 | EXTI_Mode_Event = 0x04 54 | }EXTIMode_TypeDef; 55 | 56 | #define IS_EXTI_MODE(MODE) (((MODE) == EXTI_Mode_Interrupt) || ((MODE) == EXTI_Mode_Event)) 57 | 58 | /** 59 | * @brief EXTI Trigger enumeration 60 | */ 61 | 62 | typedef enum 63 | { 64 | EXTI_Trigger_Rising = 0x08, 65 | EXTI_Trigger_Falling = 0x0C, 66 | EXTI_Trigger_Rising_Falling = 0x10 67 | }EXTITrigger_TypeDef; 68 | 69 | #define IS_EXTI_TRIGGER(TRIGGER) (((TRIGGER) == EXTI_Trigger_Rising) || \ 70 | ((TRIGGER) == EXTI_Trigger_Falling) || \ 71 | ((TRIGGER) == EXTI_Trigger_Rising_Falling)) 72 | /** 73 | * @brief EXTI Init Structure definition 74 | */ 75 | 76 | typedef struct 77 | { 78 | uint32_t EXTI_Line; /*!< Specifies the EXTI lines to be enabled or disabled. 79 | This parameter can be any combination of @ref EXTI_Lines */ 80 | 81 | EXTIMode_TypeDef EXTI_Mode; /*!< Specifies the mode for the EXTI lines. 82 | This parameter can be a value of @ref EXTIMode_TypeDef */ 83 | 84 | EXTITrigger_TypeDef EXTI_Trigger; /*!< Specifies the trigger signal active edge for the EXTI lines. 85 | This parameter can be a value of @ref EXTIMode_TypeDef */ 86 | 87 | FunctionalState EXTI_LineCmd; /*!< Specifies the new state of the selected EXTI lines. 88 | This parameter can be set either to ENABLE or DISABLE */ 89 | }EXTI_InitTypeDef; 90 | 91 | /** 92 | * @} 93 | */ 94 | 95 | /** @defgroup EXTI_Exported_Constants 96 | * @{ 97 | */ 98 | 99 | /** @defgroup EXTI_Lines 100 | * @{ 101 | */ 102 | 103 | #define EXTI_Line0 ((uint32_t)0x00001) /*!< External interrupt line 0 */ 104 | #define EXTI_Line1 ((uint32_t)0x00002) /*!< External interrupt line 1 */ 105 | #define EXTI_Line2 ((uint32_t)0x00004) /*!< External interrupt line 2 */ 106 | #define EXTI_Line3 ((uint32_t)0x00008) /*!< External interrupt line 3 */ 107 | #define EXTI_Line4 ((uint32_t)0x00010) /*!< External interrupt line 4 */ 108 | #define EXTI_Line5 ((uint32_t)0x00020) /*!< External interrupt line 5 */ 109 | #define EXTI_Line6 ((uint32_t)0x00040) /*!< External interrupt line 6 */ 110 | #define EXTI_Line7 ((uint32_t)0x00080) /*!< External interrupt line 7 */ 111 | #define EXTI_Line8 ((uint32_t)0x00100) /*!< External interrupt line 8 */ 112 | #define EXTI_Line9 ((uint32_t)0x00200) /*!< External interrupt line 9 */ 113 | #define EXTI_Line10 ((uint32_t)0x00400) /*!< External interrupt line 10 */ 114 | #define EXTI_Line11 ((uint32_t)0x00800) /*!< External interrupt line 11 */ 115 | #define EXTI_Line12 ((uint32_t)0x01000) /*!< External interrupt line 12 */ 116 | #define EXTI_Line13 ((uint32_t)0x02000) /*!< External interrupt line 13 */ 117 | #define EXTI_Line14 ((uint32_t)0x04000) /*!< External interrupt line 14 */ 118 | #define EXTI_Line15 ((uint32_t)0x08000) /*!< External interrupt line 15 */ 119 | #define EXTI_Line16 ((uint32_t)0x10000) /*!< External interrupt line 16 Connected to the PVD Output */ 120 | #define EXTI_Line17 ((uint32_t)0x20000) /*!< External interrupt line 17 Connected to the RTC Alarm event */ 121 | #define EXTI_Line18 ((uint32_t)0x40000) /*!< External interrupt line 18 Connected to the USB Device/USB OTG FS 122 | Wakeup from suspend event */ 123 | #define EXTI_Line19 ((uint32_t)0x80000) /*!< External interrupt line 19 Connected to the Ethernet Wakeup event */ 124 | 125 | #define IS_EXTI_LINE(LINE) ((((LINE) & (uint32_t)0xFFF00000) == 0x00) && ((LINE) != (uint16_t)0x00)) 126 | #define IS_GET_EXTI_LINE(LINE) (((LINE) == EXTI_Line0) || ((LINE) == EXTI_Line1) || \ 127 | ((LINE) == EXTI_Line2) || ((LINE) == EXTI_Line3) || \ 128 | ((LINE) == EXTI_Line4) || ((LINE) == EXTI_Line5) || \ 129 | ((LINE) == EXTI_Line6) || ((LINE) == EXTI_Line7) || \ 130 | ((LINE) == EXTI_Line8) || ((LINE) == EXTI_Line9) || \ 131 | ((LINE) == EXTI_Line10) || ((LINE) == EXTI_Line11) || \ 132 | ((LINE) == EXTI_Line12) || ((LINE) == EXTI_Line13) || \ 133 | ((LINE) == EXTI_Line14) || ((LINE) == EXTI_Line15) || \ 134 | ((LINE) == EXTI_Line16) || ((LINE) == EXTI_Line17) || \ 135 | ((LINE) == EXTI_Line18) || ((LINE) == EXTI_Line19)) 136 | 137 | 138 | /** 139 | * @} 140 | */ 141 | 142 | /** 143 | * @} 144 | */ 145 | 146 | /** @defgroup EXTI_Exported_Macros 147 | * @{ 148 | */ 149 | 150 | /** 151 | * @} 152 | */ 153 | 154 | /** @defgroup EXTI_Exported_Functions 155 | * @{ 156 | */ 157 | 158 | void EXTI_DeInit(void); 159 | void EXTI_Init(EXTI_InitTypeDef* EXTI_InitStruct); 160 | void EXTI_StructInit(EXTI_InitTypeDef* EXTI_InitStruct); 161 | void EXTI_GenerateSWInterrupt(uint32_t EXTI_Line); 162 | FlagStatus EXTI_GetFlagStatus(uint32_t EXTI_Line); 163 | void EXTI_ClearFlag(uint32_t EXTI_Line); 164 | ITStatus EXTI_GetITStatus(uint32_t EXTI_Line); 165 | void EXTI_ClearITPendingBit(uint32_t EXTI_Line); 166 | 167 | #ifdef __cplusplus 168 | } 169 | #endif 170 | 171 | #endif /* __STM32F10x_EXTI_H */ 172 | /** 173 | * @} 174 | */ 175 | 176 | /** 177 | * @} 178 | */ 179 | 180 | /** 181 | * @} 182 | */ 183 | 184 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 185 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_iwdg.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_iwdg.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the IWDG 8 | * firmware library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_IWDG_H 25 | #define __STM32F10x_IWDG_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup IWDG 39 | * @{ 40 | */ 41 | 42 | /** @defgroup IWDG_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup IWDG_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup IWDG_WriteAccess 55 | * @{ 56 | */ 57 | 58 | #define IWDG_WriteAccess_Enable ((uint16_t)0x5555) 59 | #define IWDG_WriteAccess_Disable ((uint16_t)0x0000) 60 | #define IS_IWDG_WRITE_ACCESS(ACCESS) (((ACCESS) == IWDG_WriteAccess_Enable) || \ 61 | ((ACCESS) == IWDG_WriteAccess_Disable)) 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup IWDG_prescaler 67 | * @{ 68 | */ 69 | 70 | #define IWDG_Prescaler_4 ((uint8_t)0x00) 71 | #define IWDG_Prescaler_8 ((uint8_t)0x01) 72 | #define IWDG_Prescaler_16 ((uint8_t)0x02) 73 | #define IWDG_Prescaler_32 ((uint8_t)0x03) 74 | #define IWDG_Prescaler_64 ((uint8_t)0x04) 75 | #define IWDG_Prescaler_128 ((uint8_t)0x05) 76 | #define IWDG_Prescaler_256 ((uint8_t)0x06) 77 | #define IS_IWDG_PRESCALER(PRESCALER) (((PRESCALER) == IWDG_Prescaler_4) || \ 78 | ((PRESCALER) == IWDG_Prescaler_8) || \ 79 | ((PRESCALER) == IWDG_Prescaler_16) || \ 80 | ((PRESCALER) == IWDG_Prescaler_32) || \ 81 | ((PRESCALER) == IWDG_Prescaler_64) || \ 82 | ((PRESCALER) == IWDG_Prescaler_128)|| \ 83 | ((PRESCALER) == IWDG_Prescaler_256)) 84 | /** 85 | * @} 86 | */ 87 | 88 | /** @defgroup IWDG_Flag 89 | * @{ 90 | */ 91 | 92 | #define IWDG_FLAG_PVU ((uint16_t)0x0001) 93 | #define IWDG_FLAG_RVU ((uint16_t)0x0002) 94 | #define IS_IWDG_FLAG(FLAG) (((FLAG) == IWDG_FLAG_PVU) || ((FLAG) == IWDG_FLAG_RVU)) 95 | #define IS_IWDG_RELOAD(RELOAD) ((RELOAD) <= 0xFFF) 96 | /** 97 | * @} 98 | */ 99 | 100 | /** 101 | * @} 102 | */ 103 | 104 | /** @defgroup IWDG_Exported_Macros 105 | * @{ 106 | */ 107 | 108 | /** 109 | * @} 110 | */ 111 | 112 | /** @defgroup IWDG_Exported_Functions 113 | * @{ 114 | */ 115 | 116 | void IWDG_WriteAccessCmd(uint16_t IWDG_WriteAccess); 117 | void IWDG_SetPrescaler(uint8_t IWDG_Prescaler); 118 | void IWDG_SetReload(uint16_t Reload); 119 | void IWDG_ReloadCounter(void); 120 | void IWDG_Enable(void); 121 | FlagStatus IWDG_GetFlagStatus(uint16_t IWDG_FLAG); 122 | 123 | #ifdef __cplusplus 124 | } 125 | #endif 126 | 127 | #endif /* __STM32F10x_IWDG_H */ 128 | /** 129 | * @} 130 | */ 131 | 132 | /** 133 | * @} 134 | */ 135 | 136 | /** 137 | * @} 138 | */ 139 | 140 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 141 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_pwr.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_pwr.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the PWR firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_PWR_H 25 | #define __STM32F10x_PWR_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup PWR 39 | * @{ 40 | */ 41 | 42 | /** @defgroup PWR_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup PWR_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup PVD_detection_level 55 | * @{ 56 | */ 57 | 58 | #define PWR_PVDLevel_2V2 ((uint32_t)0x00000000) 59 | #define PWR_PVDLevel_2V3 ((uint32_t)0x00000020) 60 | #define PWR_PVDLevel_2V4 ((uint32_t)0x00000040) 61 | #define PWR_PVDLevel_2V5 ((uint32_t)0x00000060) 62 | #define PWR_PVDLevel_2V6 ((uint32_t)0x00000080) 63 | #define PWR_PVDLevel_2V7 ((uint32_t)0x000000A0) 64 | #define PWR_PVDLevel_2V8 ((uint32_t)0x000000C0) 65 | #define PWR_PVDLevel_2V9 ((uint32_t)0x000000E0) 66 | #define IS_PWR_PVD_LEVEL(LEVEL) (((LEVEL) == PWR_PVDLevel_2V2) || ((LEVEL) == PWR_PVDLevel_2V3)|| \ 67 | ((LEVEL) == PWR_PVDLevel_2V4) || ((LEVEL) == PWR_PVDLevel_2V5)|| \ 68 | ((LEVEL) == PWR_PVDLevel_2V6) || ((LEVEL) == PWR_PVDLevel_2V7)|| \ 69 | ((LEVEL) == PWR_PVDLevel_2V8) || ((LEVEL) == PWR_PVDLevel_2V9)) 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @defgroup Regulator_state_is_STOP_mode 75 | * @{ 76 | */ 77 | 78 | #define PWR_Regulator_ON ((uint32_t)0x00000000) 79 | #define PWR_Regulator_LowPower ((uint32_t)0x00000001) 80 | #define IS_PWR_REGULATOR(REGULATOR) (((REGULATOR) == PWR_Regulator_ON) || \ 81 | ((REGULATOR) == PWR_Regulator_LowPower)) 82 | /** 83 | * @} 84 | */ 85 | 86 | /** @defgroup STOP_mode_entry 87 | * @{ 88 | */ 89 | 90 | #define PWR_STOPEntry_WFI ((uint8_t)0x01) 91 | #define PWR_STOPEntry_WFE ((uint8_t)0x02) 92 | #define IS_PWR_STOP_ENTRY(ENTRY) (((ENTRY) == PWR_STOPEntry_WFI) || ((ENTRY) == PWR_STOPEntry_WFE)) 93 | 94 | /** 95 | * @} 96 | */ 97 | 98 | /** @defgroup PWR_Flag 99 | * @{ 100 | */ 101 | 102 | #define PWR_FLAG_WU ((uint32_t)0x00000001) 103 | #define PWR_FLAG_SB ((uint32_t)0x00000002) 104 | #define PWR_FLAG_PVDO ((uint32_t)0x00000004) 105 | #define IS_PWR_GET_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB) || \ 106 | ((FLAG) == PWR_FLAG_PVDO)) 107 | 108 | #define IS_PWR_CLEAR_FLAG(FLAG) (((FLAG) == PWR_FLAG_WU) || ((FLAG) == PWR_FLAG_SB)) 109 | /** 110 | * @} 111 | */ 112 | 113 | /** 114 | * @} 115 | */ 116 | 117 | /** @defgroup PWR_Exported_Macros 118 | * @{ 119 | */ 120 | 121 | /** 122 | * @} 123 | */ 124 | 125 | /** @defgroup PWR_Exported_Functions 126 | * @{ 127 | */ 128 | 129 | void PWR_DeInit(void); 130 | void PWR_BackupAccessCmd(FunctionalState NewState); 131 | void PWR_PVDCmd(FunctionalState NewState); 132 | void PWR_PVDLevelConfig(uint32_t PWR_PVDLevel); 133 | void PWR_WakeUpPinCmd(FunctionalState NewState); 134 | void PWR_EnterSTOPMode(uint32_t PWR_Regulator, uint8_t PWR_STOPEntry); 135 | void PWR_EnterSTANDBYMode(void); 136 | FlagStatus PWR_GetFlagStatus(uint32_t PWR_FLAG); 137 | void PWR_ClearFlag(uint32_t PWR_FLAG); 138 | 139 | #ifdef __cplusplus 140 | } 141 | #endif 142 | 143 | #endif /* __STM32F10x_PWR_H */ 144 | /** 145 | * @} 146 | */ 147 | 148 | /** 149 | * @} 150 | */ 151 | 152 | /** 153 | * @} 154 | */ 155 | 156 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 157 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_rtc.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_rtc.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the RTC firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_RTC_H 25 | #define __STM32F10x_RTC_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup RTC 39 | * @{ 40 | */ 41 | 42 | /** @defgroup RTC_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup RTC_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup RTC_interrupts_define 55 | * @{ 56 | */ 57 | 58 | #define RTC_IT_OW ((uint16_t)0x0004) /*!< Overflow interrupt */ 59 | #define RTC_IT_ALR ((uint16_t)0x0002) /*!< Alarm interrupt */ 60 | #define RTC_IT_SEC ((uint16_t)0x0001) /*!< Second interrupt */ 61 | #define IS_RTC_IT(IT) ((((IT) & (uint16_t)0xFFF8) == 0x00) && ((IT) != 0x00)) 62 | #define IS_RTC_GET_IT(IT) (((IT) == RTC_IT_OW) || ((IT) == RTC_IT_ALR) || \ 63 | ((IT) == RTC_IT_SEC)) 64 | /** 65 | * @} 66 | */ 67 | 68 | /** @defgroup RTC_interrupts_flags 69 | * @{ 70 | */ 71 | 72 | #define RTC_FLAG_RTOFF ((uint16_t)0x0020) /*!< RTC Operation OFF flag */ 73 | #define RTC_FLAG_RSF ((uint16_t)0x0008) /*!< Registers Synchronized flag */ 74 | #define RTC_FLAG_OW ((uint16_t)0x0004) /*!< Overflow flag */ 75 | #define RTC_FLAG_ALR ((uint16_t)0x0002) /*!< Alarm flag */ 76 | #define RTC_FLAG_SEC ((uint16_t)0x0001) /*!< Second flag */ 77 | #define IS_RTC_CLEAR_FLAG(FLAG) ((((FLAG) & (uint16_t)0xFFF0) == 0x00) && ((FLAG) != 0x00)) 78 | #define IS_RTC_GET_FLAG(FLAG) (((FLAG) == RTC_FLAG_RTOFF) || ((FLAG) == RTC_FLAG_RSF) || \ 79 | ((FLAG) == RTC_FLAG_OW) || ((FLAG) == RTC_FLAG_ALR) || \ 80 | ((FLAG) == RTC_FLAG_SEC)) 81 | #define IS_RTC_PRESCALER(PRESCALER) ((PRESCALER) <= 0xFFFFF) 82 | 83 | /** 84 | * @} 85 | */ 86 | 87 | /** 88 | * @} 89 | */ 90 | 91 | /** @defgroup RTC_Exported_Macros 92 | * @{ 93 | */ 94 | 95 | /** 96 | * @} 97 | */ 98 | 99 | /** @defgroup RTC_Exported_Functions 100 | * @{ 101 | */ 102 | 103 | void RTC_ITConfig(uint16_t RTC_IT, FunctionalState NewState); 104 | void RTC_EnterConfigMode(void); 105 | void RTC_ExitConfigMode(void); 106 | uint32_t RTC_GetCounter(void); 107 | void RTC_SetCounter(uint32_t CounterValue); 108 | void RTC_SetPrescaler(uint32_t PrescalerValue); 109 | void RTC_SetAlarm(uint32_t AlarmValue); 110 | uint32_t RTC_GetDivider(void); 111 | void RTC_WaitForLastTask(void); 112 | void RTC_WaitForSynchro(void); 113 | FlagStatus RTC_GetFlagStatus(uint16_t RTC_FLAG); 114 | void RTC_ClearFlag(uint16_t RTC_FLAG); 115 | ITStatus RTC_GetITStatus(uint16_t RTC_IT); 116 | void RTC_ClearITPendingBit(uint16_t RTC_IT); 117 | 118 | #ifdef __cplusplus 119 | } 120 | #endif 121 | 122 | #endif /* __STM32F10x_RTC_H */ 123 | /** 124 | * @} 125 | */ 126 | 127 | /** 128 | * @} 129 | */ 130 | 131 | /** 132 | * @} 133 | */ 134 | 135 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 136 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/inc/stm32f10x_wwdg.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_wwdg.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file contains all the functions prototypes for the WWDG firmware 8 | * library. 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Define to prevent recursive inclusion -------------------------------------*/ 24 | #ifndef __STM32F10x_WWDG_H 25 | #define __STM32F10x_WWDG_H 26 | 27 | #ifdef __cplusplus 28 | extern "C" { 29 | #endif 30 | 31 | /* Includes ------------------------------------------------------------------*/ 32 | #include "stm32f10x.h" 33 | 34 | /** @addtogroup STM32F10x_StdPeriph_Driver 35 | * @{ 36 | */ 37 | 38 | /** @addtogroup WWDG 39 | * @{ 40 | */ 41 | 42 | /** @defgroup WWDG_Exported_Types 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup WWDG_Exported_Constants 51 | * @{ 52 | */ 53 | 54 | /** @defgroup WWDG_Prescaler 55 | * @{ 56 | */ 57 | 58 | #define WWDG_Prescaler_1 ((uint32_t)0x00000000) 59 | #define WWDG_Prescaler_2 ((uint32_t)0x00000080) 60 | #define WWDG_Prescaler_4 ((uint32_t)0x00000100) 61 | #define WWDG_Prescaler_8 ((uint32_t)0x00000180) 62 | #define IS_WWDG_PRESCALER(PRESCALER) (((PRESCALER) == WWDG_Prescaler_1) || \ 63 | ((PRESCALER) == WWDG_Prescaler_2) || \ 64 | ((PRESCALER) == WWDG_Prescaler_4) || \ 65 | ((PRESCALER) == WWDG_Prescaler_8)) 66 | #define IS_WWDG_WINDOW_VALUE(VALUE) ((VALUE) <= 0x7F) 67 | #define IS_WWDG_COUNTER(COUNTER) (((COUNTER) >= 0x40) && ((COUNTER) <= 0x7F)) 68 | 69 | /** 70 | * @} 71 | */ 72 | 73 | /** 74 | * @} 75 | */ 76 | 77 | /** @defgroup WWDG_Exported_Macros 78 | * @{ 79 | */ 80 | /** 81 | * @} 82 | */ 83 | 84 | /** @defgroup WWDG_Exported_Functions 85 | * @{ 86 | */ 87 | 88 | void WWDG_DeInit(void); 89 | void WWDG_SetPrescaler(uint32_t WWDG_Prescaler); 90 | void WWDG_SetWindowValue(uint8_t WindowValue); 91 | void WWDG_EnableIT(void); 92 | void WWDG_SetCounter(uint8_t Counter); 93 | void WWDG_Enable(uint8_t Counter); 94 | FlagStatus WWDG_GetFlagStatus(void); 95 | void WWDG_ClearFlag(void); 96 | 97 | #ifdef __cplusplus 98 | } 99 | #endif 100 | 101 | #endif /* __STM32F10x_WWDG_H */ 102 | 103 | /** 104 | * @} 105 | */ 106 | 107 | /** 108 | * @} 109 | */ 110 | 111 | /** 112 | * @} 113 | */ 114 | 115 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 116 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/misc.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file misc.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the miscellaneous firmware functions (add-on 8 | * to CMSIS functions). 9 | ****************************************************************************** 10 | * @attention 11 | * 12 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 13 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 14 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 15 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 16 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 17 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 18 | * 19 | *

© COPYRIGHT 2011 STMicroelectronics

20 | ****************************************************************************** 21 | */ 22 | 23 | /* Includes ------------------------------------------------------------------*/ 24 | #include "misc.h" 25 | 26 | /** @addtogroup STM32F10x_StdPeriph_Driver 27 | * @{ 28 | */ 29 | 30 | /** @defgroup MISC 31 | * @brief MISC driver modules 32 | * @{ 33 | */ 34 | 35 | /** @defgroup MISC_Private_TypesDefinitions 36 | * @{ 37 | */ 38 | 39 | /** 40 | * @} 41 | */ 42 | 43 | /** @defgroup MISC_Private_Defines 44 | * @{ 45 | */ 46 | 47 | #define AIRCR_VECTKEY_MASK ((uint32_t)0x05FA0000) 48 | /** 49 | * @} 50 | */ 51 | 52 | /** @defgroup MISC_Private_Macros 53 | * @{ 54 | */ 55 | 56 | /** 57 | * @} 58 | */ 59 | 60 | /** @defgroup MISC_Private_Variables 61 | * @{ 62 | */ 63 | 64 | /** 65 | * @} 66 | */ 67 | 68 | /** @defgroup MISC_Private_FunctionPrototypes 69 | * @{ 70 | */ 71 | 72 | /** 73 | * @} 74 | */ 75 | 76 | /** @defgroup MISC_Private_Functions 77 | * @{ 78 | */ 79 | 80 | /** 81 | * @brief Configures the priority grouping: pre-emption priority and subpriority. 82 | * @param NVIC_PriorityGroup: specifies the priority grouping bits length. 83 | * This parameter can be one of the following values: 84 | * @arg NVIC_PriorityGroup_0: 0 bits for pre-emption priority 85 | * 4 bits for subpriority 86 | * @arg NVIC_PriorityGroup_1: 1 bits for pre-emption priority 87 | * 3 bits for subpriority 88 | * @arg NVIC_PriorityGroup_2: 2 bits for pre-emption priority 89 | * 2 bits for subpriority 90 | * @arg NVIC_PriorityGroup_3: 3 bits for pre-emption priority 91 | * 1 bits for subpriority 92 | * @arg NVIC_PriorityGroup_4: 4 bits for pre-emption priority 93 | * 0 bits for subpriority 94 | * @retval None 95 | */ 96 | void NVIC_PriorityGroupConfig(uint32_t NVIC_PriorityGroup) 97 | { 98 | /* Check the parameters */ 99 | assert_param(IS_NVIC_PRIORITY_GROUP(NVIC_PriorityGroup)); 100 | 101 | /* Set the PRIGROUP[10:8] bits according to NVIC_PriorityGroup value */ 102 | SCB->AIRCR = AIRCR_VECTKEY_MASK | NVIC_PriorityGroup; 103 | } 104 | 105 | /** 106 | * @brief Initializes the NVIC peripheral according to the specified 107 | * parameters in the NVIC_InitStruct. 108 | * @param NVIC_InitStruct: pointer to a NVIC_InitTypeDef structure that contains 109 | * the configuration information for the specified NVIC peripheral. 110 | * @retval None 111 | */ 112 | void NVIC_Init(NVIC_InitTypeDef* NVIC_InitStruct) 113 | { 114 | uint32_t tmppriority = 0x00, tmppre = 0x00, tmpsub = 0x0F; 115 | 116 | /* Check the parameters */ 117 | assert_param(IS_FUNCTIONAL_STATE(NVIC_InitStruct->NVIC_IRQChannelCmd)); 118 | assert_param(IS_NVIC_PREEMPTION_PRIORITY(NVIC_InitStruct->NVIC_IRQChannelPreemptionPriority)); 119 | assert_param(IS_NVIC_SUB_PRIORITY(NVIC_InitStruct->NVIC_IRQChannelSubPriority)); 120 | 121 | if (NVIC_InitStruct->NVIC_IRQChannelCmd != DISABLE) 122 | { 123 | /* Compute the Corresponding IRQ Priority --------------------------------*/ 124 | tmppriority = (0x700 - ((SCB->AIRCR) & (uint32_t)0x700))>> 0x08; 125 | tmppre = (0x4 - tmppriority); 126 | tmpsub = tmpsub >> tmppriority; 127 | 128 | tmppriority = (uint32_t)NVIC_InitStruct->NVIC_IRQChannelPreemptionPriority << tmppre; 129 | tmppriority |= NVIC_InitStruct->NVIC_IRQChannelSubPriority & tmpsub; 130 | tmppriority = tmppriority << 0x04; 131 | 132 | NVIC->IP[NVIC_InitStruct->NVIC_IRQChannel] = tmppriority; 133 | 134 | /* Enable the Selected IRQ Channels --------------------------------------*/ 135 | NVIC->ISER[NVIC_InitStruct->NVIC_IRQChannel >> 0x05] = 136 | (uint32_t)0x01 << (NVIC_InitStruct->NVIC_IRQChannel & (uint8_t)0x1F); 137 | } 138 | else 139 | { 140 | /* Disable the Selected IRQ Channels -------------------------------------*/ 141 | NVIC->ICER[NVIC_InitStruct->NVIC_IRQChannel >> 0x05] = 142 | (uint32_t)0x01 << (NVIC_InitStruct->NVIC_IRQChannel & (uint8_t)0x1F); 143 | } 144 | } 145 | 146 | /** 147 | * @brief Sets the vector table location and Offset. 148 | * @param NVIC_VectTab: specifies if the vector table is in RAM or FLASH memory. 149 | * This parameter can be one of the following values: 150 | * @arg NVIC_VectTab_RAM 151 | * @arg NVIC_VectTab_FLASH 152 | * @param Offset: Vector Table base offset field. This value must be a multiple 153 | * of 0x200. 154 | * @retval None 155 | */ 156 | void NVIC_SetVectorTable(uint32_t NVIC_VectTab, uint32_t Offset) 157 | { 158 | /* Check the parameters */ 159 | assert_param(IS_NVIC_VECTTAB(NVIC_VectTab)); 160 | assert_param(IS_NVIC_OFFSET(Offset)); 161 | 162 | SCB->VTOR = NVIC_VectTab | (Offset & (uint32_t)0x1FFFFF80); 163 | } 164 | 165 | /** 166 | * @brief Selects the condition for the system to enter low power mode. 167 | * @param LowPowerMode: Specifies the new mode for the system to enter low power mode. 168 | * This parameter can be one of the following values: 169 | * @arg NVIC_LP_SEVONPEND 170 | * @arg NVIC_LP_SLEEPDEEP 171 | * @arg NVIC_LP_SLEEPONEXIT 172 | * @param NewState: new state of LP condition. This parameter can be: ENABLE or DISABLE. 173 | * @retval None 174 | */ 175 | void NVIC_SystemLPConfig(uint8_t LowPowerMode, FunctionalState NewState) 176 | { 177 | /* Check the parameters */ 178 | assert_param(IS_NVIC_LP(LowPowerMode)); 179 | assert_param(IS_FUNCTIONAL_STATE(NewState)); 180 | 181 | if (NewState != DISABLE) 182 | { 183 | SCB->SCR |= LowPowerMode; 184 | } 185 | else 186 | { 187 | SCB->SCR &= (uint32_t)(~(uint32_t)LowPowerMode); 188 | } 189 | } 190 | 191 | /** 192 | * @brief Configures the SysTick clock source. 193 | * @param SysTick_CLKSource: specifies the SysTick clock source. 194 | * This parameter can be one of the following values: 195 | * @arg SysTick_CLKSource_HCLK_Div8: AHB clock divided by 8 selected as SysTick clock source. 196 | * @arg SysTick_CLKSource_HCLK: AHB clock selected as SysTick clock source. 197 | * @retval None 198 | */ 199 | void SysTick_CLKSourceConfig(uint32_t SysTick_CLKSource) 200 | { 201 | /* Check the parameters */ 202 | assert_param(IS_SYSTICK_CLK_SOURCE(SysTick_CLKSource)); 203 | if (SysTick_CLKSource == SysTick_CLKSource_HCLK) 204 | { 205 | SysTick->CTRL |= SysTick_CLKSource_HCLK; 206 | } 207 | else 208 | { 209 | SysTick->CTRL &= SysTick_CLKSource_HCLK_Div8; 210 | } 211 | } 212 | 213 | /** 214 | * @} 215 | */ 216 | 217 | /** 218 | * @} 219 | */ 220 | 221 | /** 222 | * @} 223 | */ 224 | 225 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 226 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_crc.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_crc.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the CRC firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_crc.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup CRC 30 | * @brief CRC driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup CRC_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup CRC_Private_Defines 43 | * @{ 44 | */ 45 | 46 | /** 47 | * @} 48 | */ 49 | 50 | /** @defgroup CRC_Private_Macros 51 | * @{ 52 | */ 53 | 54 | /** 55 | * @} 56 | */ 57 | 58 | /** @defgroup CRC_Private_Variables 59 | * @{ 60 | */ 61 | 62 | /** 63 | * @} 64 | */ 65 | 66 | /** @defgroup CRC_Private_FunctionPrototypes 67 | * @{ 68 | */ 69 | 70 | /** 71 | * @} 72 | */ 73 | 74 | /** @defgroup CRC_Private_Functions 75 | * @{ 76 | */ 77 | 78 | /** 79 | * @brief Resets the CRC Data register (DR). 80 | * @param None 81 | * @retval None 82 | */ 83 | void CRC_ResetDR(void) 84 | { 85 | /* Reset CRC generator */ 86 | CRC->CR = CRC_CR_RESET; 87 | } 88 | 89 | /** 90 | * @brief Computes the 32-bit CRC of a given data word(32-bit). 91 | * @param Data: data word(32-bit) to compute its CRC 92 | * @retval 32-bit CRC 93 | */ 94 | uint32_t CRC_CalcCRC(uint32_t Data) 95 | { 96 | CRC->DR = Data; 97 | 98 | return (CRC->DR); 99 | } 100 | 101 | /** 102 | * @brief Computes the 32-bit CRC of a given buffer of data word(32-bit). 103 | * @param pBuffer: pointer to the buffer containing the data to be computed 104 | * @param BufferLength: length of the buffer to be computed 105 | * @retval 32-bit CRC 106 | */ 107 | uint32_t CRC_CalcBlockCRC(uint32_t pBuffer[], uint32_t BufferLength) 108 | { 109 | uint32_t index = 0; 110 | 111 | for(index = 0; index < BufferLength; index++) 112 | { 113 | CRC->DR = pBuffer[index]; 114 | } 115 | return (CRC->DR); 116 | } 117 | 118 | /** 119 | * @brief Returns the current CRC value. 120 | * @param None 121 | * @retval 32-bit CRC 122 | */ 123 | uint32_t CRC_GetCRC(void) 124 | { 125 | return (CRC->DR); 126 | } 127 | 128 | /** 129 | * @brief Stores a 8-bit data in the Independent Data(ID) register. 130 | * @param IDValue: 8-bit value to be stored in the ID register 131 | * @retval None 132 | */ 133 | void CRC_SetIDRegister(uint8_t IDValue) 134 | { 135 | CRC->IDR = IDValue; 136 | } 137 | 138 | /** 139 | * @brief Returns the 8-bit data stored in the Independent Data(ID) register 140 | * @param None 141 | * @retval 8-bit value of the ID register 142 | */ 143 | uint8_t CRC_GetIDRegister(void) 144 | { 145 | return (CRC->IDR); 146 | } 147 | 148 | /** 149 | * @} 150 | */ 151 | 152 | /** 153 | * @} 154 | */ 155 | 156 | /** 157 | * @} 158 | */ 159 | 160 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 161 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_dbgmcu.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_dbgmcu.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the DBGMCU firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_dbgmcu.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup DBGMCU 30 | * @brief DBGMCU driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup DBGMCU_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup DBGMCU_Private_Defines 43 | * @{ 44 | */ 45 | 46 | #define IDCODE_DEVID_MASK ((uint32_t)0x00000FFF) 47 | /** 48 | * @} 49 | */ 50 | 51 | /** @defgroup DBGMCU_Private_Macros 52 | * @{ 53 | */ 54 | 55 | /** 56 | * @} 57 | */ 58 | 59 | /** @defgroup DBGMCU_Private_Variables 60 | * @{ 61 | */ 62 | 63 | /** 64 | * @} 65 | */ 66 | 67 | /** @defgroup DBGMCU_Private_FunctionPrototypes 68 | * @{ 69 | */ 70 | 71 | /** 72 | * @} 73 | */ 74 | 75 | /** @defgroup DBGMCU_Private_Functions 76 | * @{ 77 | */ 78 | 79 | /** 80 | * @brief Returns the device revision identifier. 81 | * @param None 82 | * @retval Device revision identifier 83 | */ 84 | uint32_t DBGMCU_GetREVID(void) 85 | { 86 | return(DBGMCU->IDCODE >> 16); 87 | } 88 | 89 | /** 90 | * @brief Returns the device identifier. 91 | * @param None 92 | * @retval Device identifier 93 | */ 94 | uint32_t DBGMCU_GetDEVID(void) 95 | { 96 | return(DBGMCU->IDCODE & IDCODE_DEVID_MASK); 97 | } 98 | 99 | /** 100 | * @brief Configures the specified peripheral and low power mode behavior 101 | * when the MCU under Debug mode. 102 | * @param DBGMCU_Periph: specifies the peripheral and low power mode. 103 | * This parameter can be any combination of the following values: 104 | * @arg DBGMCU_SLEEP: Keep debugger connection during SLEEP mode 105 | * @arg DBGMCU_STOP: Keep debugger connection during STOP mode 106 | * @arg DBGMCU_STANDBY: Keep debugger connection during STANDBY mode 107 | * @arg DBGMCU_IWDG_STOP: Debug IWDG stopped when Core is halted 108 | * @arg DBGMCU_WWDG_STOP: Debug WWDG stopped when Core is halted 109 | * @arg DBGMCU_TIM1_STOP: TIM1 counter stopped when Core is halted 110 | * @arg DBGMCU_TIM2_STOP: TIM2 counter stopped when Core is halted 111 | * @arg DBGMCU_TIM3_STOP: TIM3 counter stopped when Core is halted 112 | * @arg DBGMCU_TIM4_STOP: TIM4 counter stopped when Core is halted 113 | * @arg DBGMCU_CAN1_STOP: Debug CAN2 stopped when Core is halted 114 | * @arg DBGMCU_I2C1_SMBUS_TIMEOUT: I2C1 SMBUS timeout mode stopped when Core is halted 115 | * @arg DBGMCU_I2C2_SMBUS_TIMEOUT: I2C2 SMBUS timeout mode stopped when Core is halted 116 | * @arg DBGMCU_TIM5_STOP: TIM5 counter stopped when Core is halted 117 | * @arg DBGMCU_TIM6_STOP: TIM6 counter stopped when Core is halted 118 | * @arg DBGMCU_TIM7_STOP: TIM7 counter stopped when Core is halted 119 | * @arg DBGMCU_TIM8_STOP: TIM8 counter stopped when Core is halted 120 | * @arg DBGMCU_CAN2_STOP: Debug CAN2 stopped when Core is halted 121 | * @arg DBGMCU_TIM15_STOP: TIM15 counter stopped when Core is halted 122 | * @arg DBGMCU_TIM16_STOP: TIM16 counter stopped when Core is halted 123 | * @arg DBGMCU_TIM17_STOP: TIM17 counter stopped when Core is halted 124 | * @arg DBGMCU_TIM9_STOP: TIM9 counter stopped when Core is halted 125 | * @arg DBGMCU_TIM10_STOP: TIM10 counter stopped when Core is halted 126 | * @arg DBGMCU_TIM11_STOP: TIM11 counter stopped when Core is halted 127 | * @arg DBGMCU_TIM12_STOP: TIM12 counter stopped when Core is halted 128 | * @arg DBGMCU_TIM13_STOP: TIM13 counter stopped when Core is halted 129 | * @arg DBGMCU_TIM14_STOP: TIM14 counter stopped when Core is halted 130 | * @param NewState: new state of the specified peripheral in Debug mode. 131 | * This parameter can be: ENABLE or DISABLE. 132 | * @retval None 133 | */ 134 | void DBGMCU_Config(uint32_t DBGMCU_Periph, FunctionalState NewState) 135 | { 136 | /* Check the parameters */ 137 | assert_param(IS_DBGMCU_PERIPH(DBGMCU_Periph)); 138 | assert_param(IS_FUNCTIONAL_STATE(NewState)); 139 | 140 | if (NewState != DISABLE) 141 | { 142 | DBGMCU->CR |= DBGMCU_Periph; 143 | } 144 | else 145 | { 146 | DBGMCU->CR &= ~DBGMCU_Periph; 147 | } 148 | } 149 | 150 | /** 151 | * @} 152 | */ 153 | 154 | /** 155 | * @} 156 | */ 157 | 158 | /** 159 | * @} 160 | */ 161 | 162 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 163 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_exti.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_exti.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the EXTI firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_exti.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup EXTI 30 | * @brief EXTI driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup EXTI_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup EXTI_Private_Defines 43 | * @{ 44 | */ 45 | 46 | #define EXTI_LINENONE ((uint32_t)0x00000) /* No interrupt selected */ 47 | 48 | /** 49 | * @} 50 | */ 51 | 52 | /** @defgroup EXTI_Private_Macros 53 | * @{ 54 | */ 55 | 56 | /** 57 | * @} 58 | */ 59 | 60 | /** @defgroup EXTI_Private_Variables 61 | * @{ 62 | */ 63 | 64 | /** 65 | * @} 66 | */ 67 | 68 | /** @defgroup EXTI_Private_FunctionPrototypes 69 | * @{ 70 | */ 71 | 72 | /** 73 | * @} 74 | */ 75 | 76 | /** @defgroup EXTI_Private_Functions 77 | * @{ 78 | */ 79 | 80 | /** 81 | * @brief Deinitializes the EXTI peripheral registers to their default reset values. 82 | * @param None 83 | * @retval None 84 | */ 85 | void EXTI_DeInit(void) 86 | { 87 | EXTI->IMR = 0x00000000; 88 | EXTI->EMR = 0x00000000; 89 | EXTI->RTSR = 0x00000000; 90 | EXTI->FTSR = 0x00000000; 91 | EXTI->PR = 0x000FFFFF; 92 | } 93 | 94 | /** 95 | * @brief Initializes the EXTI peripheral according to the specified 96 | * parameters in the EXTI_InitStruct. 97 | * @param EXTI_InitStruct: pointer to a EXTI_InitTypeDef structure 98 | * that contains the configuration information for the EXTI peripheral. 99 | * @retval None 100 | */ 101 | void EXTI_Init(EXTI_InitTypeDef* EXTI_InitStruct) 102 | { 103 | uint32_t tmp = 0; 104 | 105 | /* Check the parameters */ 106 | assert_param(IS_EXTI_MODE(EXTI_InitStruct->EXTI_Mode)); 107 | assert_param(IS_EXTI_TRIGGER(EXTI_InitStruct->EXTI_Trigger)); 108 | assert_param(IS_EXTI_LINE(EXTI_InitStruct->EXTI_Line)); 109 | assert_param(IS_FUNCTIONAL_STATE(EXTI_InitStruct->EXTI_LineCmd)); 110 | 111 | tmp = (uint32_t)EXTI_BASE; 112 | 113 | if (EXTI_InitStruct->EXTI_LineCmd != DISABLE) 114 | { 115 | /* Clear EXTI line configuration */ 116 | EXTI->IMR &= ~EXTI_InitStruct->EXTI_Line; 117 | EXTI->EMR &= ~EXTI_InitStruct->EXTI_Line; 118 | 119 | tmp += EXTI_InitStruct->EXTI_Mode; 120 | 121 | *(__IO uint32_t *) tmp |= EXTI_InitStruct->EXTI_Line; 122 | 123 | /* Clear Rising Falling edge configuration */ 124 | EXTI->RTSR &= ~EXTI_InitStruct->EXTI_Line; 125 | EXTI->FTSR &= ~EXTI_InitStruct->EXTI_Line; 126 | 127 | /* Select the trigger for the selected external interrupts */ 128 | if (EXTI_InitStruct->EXTI_Trigger == EXTI_Trigger_Rising_Falling) 129 | { 130 | /* Rising Falling edge */ 131 | EXTI->RTSR |= EXTI_InitStruct->EXTI_Line; 132 | EXTI->FTSR |= EXTI_InitStruct->EXTI_Line; 133 | } 134 | else 135 | { 136 | tmp = (uint32_t)EXTI_BASE; 137 | tmp += EXTI_InitStruct->EXTI_Trigger; 138 | 139 | *(__IO uint32_t *) tmp |= EXTI_InitStruct->EXTI_Line; 140 | } 141 | } 142 | else 143 | { 144 | tmp += EXTI_InitStruct->EXTI_Mode; 145 | 146 | /* Disable the selected external lines */ 147 | *(__IO uint32_t *) tmp &= ~EXTI_InitStruct->EXTI_Line; 148 | } 149 | } 150 | 151 | /** 152 | * @brief Fills each EXTI_InitStruct member with its reset value. 153 | * @param EXTI_InitStruct: pointer to a EXTI_InitTypeDef structure which will 154 | * be initialized. 155 | * @retval None 156 | */ 157 | void EXTI_StructInit(EXTI_InitTypeDef* EXTI_InitStruct) 158 | { 159 | EXTI_InitStruct->EXTI_Line = EXTI_LINENONE; 160 | EXTI_InitStruct->EXTI_Mode = EXTI_Mode_Interrupt; 161 | EXTI_InitStruct->EXTI_Trigger = EXTI_Trigger_Falling; 162 | EXTI_InitStruct->EXTI_LineCmd = DISABLE; 163 | } 164 | 165 | /** 166 | * @brief Generates a Software interrupt. 167 | * @param EXTI_Line: specifies the EXTI lines to be enabled or disabled. 168 | * This parameter can be any combination of EXTI_Linex where x can be (0..19). 169 | * @retval None 170 | */ 171 | void EXTI_GenerateSWInterrupt(uint32_t EXTI_Line) 172 | { 173 | /* Check the parameters */ 174 | assert_param(IS_EXTI_LINE(EXTI_Line)); 175 | 176 | EXTI->SWIER |= EXTI_Line; 177 | } 178 | 179 | /** 180 | * @brief Checks whether the specified EXTI line flag is set or not. 181 | * @param EXTI_Line: specifies the EXTI line flag to check. 182 | * This parameter can be: 183 | * @arg EXTI_Linex: External interrupt line x where x(0..19) 184 | * @retval The new state of EXTI_Line (SET or RESET). 185 | */ 186 | FlagStatus EXTI_GetFlagStatus(uint32_t EXTI_Line) 187 | { 188 | FlagStatus bitstatus = RESET; 189 | /* Check the parameters */ 190 | assert_param(IS_GET_EXTI_LINE(EXTI_Line)); 191 | 192 | if ((EXTI->PR & EXTI_Line) != (uint32_t)RESET) 193 | { 194 | bitstatus = SET; 195 | } 196 | else 197 | { 198 | bitstatus = RESET; 199 | } 200 | return bitstatus; 201 | } 202 | 203 | /** 204 | * @brief Clears the EXTI's line pending flags. 205 | * @param EXTI_Line: specifies the EXTI lines flags to clear. 206 | * This parameter can be any combination of EXTI_Linex where x can be (0..19). 207 | * @retval None 208 | */ 209 | void EXTI_ClearFlag(uint32_t EXTI_Line) 210 | { 211 | /* Check the parameters */ 212 | assert_param(IS_EXTI_LINE(EXTI_Line)); 213 | 214 | EXTI->PR = EXTI_Line; 215 | } 216 | 217 | /** 218 | * @brief Checks whether the specified EXTI line is asserted or not. 219 | * @param EXTI_Line: specifies the EXTI line to check. 220 | * This parameter can be: 221 | * @arg EXTI_Linex: External interrupt line x where x(0..19) 222 | * @retval The new state of EXTI_Line (SET or RESET). 223 | */ 224 | ITStatus EXTI_GetITStatus(uint32_t EXTI_Line) 225 | { 226 | ITStatus bitstatus = RESET; 227 | uint32_t enablestatus = 0; 228 | /* Check the parameters */ 229 | assert_param(IS_GET_EXTI_LINE(EXTI_Line)); 230 | 231 | enablestatus = EXTI->IMR & EXTI_Line; 232 | if (((EXTI->PR & EXTI_Line) != (uint32_t)RESET) && (enablestatus != (uint32_t)RESET)) 233 | { 234 | bitstatus = SET; 235 | } 236 | else 237 | { 238 | bitstatus = RESET; 239 | } 240 | return bitstatus; 241 | } 242 | 243 | /** 244 | * @brief Clears the EXTI's line pending bits. 245 | * @param EXTI_Line: specifies the EXTI lines to clear. 246 | * This parameter can be any combination of EXTI_Linex where x can be (0..19). 247 | * @retval None 248 | */ 249 | void EXTI_ClearITPendingBit(uint32_t EXTI_Line) 250 | { 251 | /* Check the parameters */ 252 | assert_param(IS_EXTI_LINE(EXTI_Line)); 253 | 254 | EXTI->PR = EXTI_Line; 255 | } 256 | 257 | /** 258 | * @} 259 | */ 260 | 261 | /** 262 | * @} 263 | */ 264 | 265 | /** 266 | * @} 267 | */ 268 | 269 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 270 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/STM32F10x_FWLib/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/STM32F10x_FWLib/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_iwdg.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_iwdg.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the IWDG firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_iwdg.h" 24 | 25 | /** @addtogroup STM32F10x_StdPeriph_Driver 26 | * @{ 27 | */ 28 | 29 | /** @defgroup IWDG 30 | * @brief IWDG driver modules 31 | * @{ 32 | */ 33 | 34 | /** @defgroup IWDG_Private_TypesDefinitions 35 | * @{ 36 | */ 37 | 38 | /** 39 | * @} 40 | */ 41 | 42 | /** @defgroup IWDG_Private_Defines 43 | * @{ 44 | */ 45 | 46 | /* ---------------------- IWDG registers bit mask ----------------------------*/ 47 | 48 | /* KR register bit mask */ 49 | #define KR_KEY_Reload ((uint16_t)0xAAAA) 50 | #define KR_KEY_Enable ((uint16_t)0xCCCC) 51 | 52 | /** 53 | * @} 54 | */ 55 | 56 | /** @defgroup IWDG_Private_Macros 57 | * @{ 58 | */ 59 | 60 | /** 61 | * @} 62 | */ 63 | 64 | /** @defgroup IWDG_Private_Variables 65 | * @{ 66 | */ 67 | 68 | /** 69 | * @} 70 | */ 71 | 72 | /** @defgroup IWDG_Private_FunctionPrototypes 73 | * @{ 74 | */ 75 | 76 | /** 77 | * @} 78 | */ 79 | 80 | /** @defgroup IWDG_Private_Functions 81 | * @{ 82 | */ 83 | 84 | /** 85 | * @brief Enables or disables write access to IWDG_PR and IWDG_RLR registers. 86 | * @param IWDG_WriteAccess: new state of write access to IWDG_PR and IWDG_RLR registers. 87 | * This parameter can be one of the following values: 88 | * @arg IWDG_WriteAccess_Enable: Enable write access to IWDG_PR and IWDG_RLR registers 89 | * @arg IWDG_WriteAccess_Disable: Disable write access to IWDG_PR and IWDG_RLR registers 90 | * @retval None 91 | */ 92 | void IWDG_WriteAccessCmd(uint16_t IWDG_WriteAccess) 93 | { 94 | /* Check the parameters */ 95 | assert_param(IS_IWDG_WRITE_ACCESS(IWDG_WriteAccess)); 96 | IWDG->KR = IWDG_WriteAccess; 97 | } 98 | 99 | /** 100 | * @brief Sets IWDG Prescaler value. 101 | * @param IWDG_Prescaler: specifies the IWDG Prescaler value. 102 | * This parameter can be one of the following values: 103 | * @arg IWDG_Prescaler_4: IWDG prescaler set to 4 104 | * @arg IWDG_Prescaler_8: IWDG prescaler set to 8 105 | * @arg IWDG_Prescaler_16: IWDG prescaler set to 16 106 | * @arg IWDG_Prescaler_32: IWDG prescaler set to 32 107 | * @arg IWDG_Prescaler_64: IWDG prescaler set to 64 108 | * @arg IWDG_Prescaler_128: IWDG prescaler set to 128 109 | * @arg IWDG_Prescaler_256: IWDG prescaler set to 256 110 | * @retval None 111 | */ 112 | void IWDG_SetPrescaler(uint8_t IWDG_Prescaler) 113 | { 114 | /* Check the parameters */ 115 | assert_param(IS_IWDG_PRESCALER(IWDG_Prescaler)); 116 | IWDG->PR = IWDG_Prescaler; 117 | } 118 | 119 | /** 120 | * @brief Sets IWDG Reload value. 121 | * @param Reload: specifies the IWDG Reload value. 122 | * This parameter must be a number between 0 and 0x0FFF. 123 | * @retval None 124 | */ 125 | void IWDG_SetReload(uint16_t Reload) 126 | { 127 | /* Check the parameters */ 128 | assert_param(IS_IWDG_RELOAD(Reload)); 129 | IWDG->RLR = Reload; 130 | } 131 | 132 | /** 133 | * @brief Reloads IWDG counter with value defined in the reload register 134 | * (write access to IWDG_PR and IWDG_RLR registers disabled). 135 | * @param None 136 | * @retval None 137 | */ 138 | void IWDG_ReloadCounter(void) 139 | { 140 | IWDG->KR = KR_KEY_Reload; 141 | } 142 | 143 | /** 144 | * @brief Enables IWDG (write access to IWDG_PR and IWDG_RLR registers disabled). 145 | * @param None 146 | * @retval None 147 | */ 148 | void IWDG_Enable(void) 149 | { 150 | IWDG->KR = KR_KEY_Enable; 151 | } 152 | 153 | /** 154 | * @brief Checks whether the specified IWDG flag is set or not. 155 | * @param IWDG_FLAG: specifies the flag to check. 156 | * This parameter can be one of the following values: 157 | * @arg IWDG_FLAG_PVU: Prescaler Value Update on going 158 | * @arg IWDG_FLAG_RVU: Reload Value Update on going 159 | * @retval The new state of IWDG_FLAG (SET or RESET). 160 | */ 161 | FlagStatus IWDG_GetFlagStatus(uint16_t IWDG_FLAG) 162 | { 163 | FlagStatus bitstatus = RESET; 164 | /* Check the parameters */ 165 | assert_param(IS_IWDG_FLAG(IWDG_FLAG)); 166 | if ((IWDG->SR & IWDG_FLAG) != (uint32_t)RESET) 167 | { 168 | bitstatus = SET; 169 | } 170 | else 171 | { 172 | bitstatus = RESET; 173 | } 174 | /* Return the flag status */ 175 | return bitstatus; 176 | } 177 | 178 | /** 179 | * @} 180 | */ 181 | 182 | /** 183 | * @} 184 | */ 185 | 186 | /** 187 | * @} 188 | */ 189 | 190 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 191 | -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/STM32F10x_FWLib/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /STM32F10x_FWLib/src/stm32f10x_wwdg.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file stm32f10x_wwdg.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief This file provides all the WWDG firmware functions. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Includes ------------------------------------------------------------------*/ 23 | #include "stm32f10x_wwdg.h" 24 | #include "stm32f10x_rcc.h" 25 | 26 | /** @addtogroup STM32F10x_StdPeriph_Driver 27 | * @{ 28 | */ 29 | 30 | /** @defgroup WWDG 31 | * @brief WWDG driver modules 32 | * @{ 33 | */ 34 | 35 | /** @defgroup WWDG_Private_TypesDefinitions 36 | * @{ 37 | */ 38 | 39 | /** 40 | * @} 41 | */ 42 | 43 | /** @defgroup WWDG_Private_Defines 44 | * @{ 45 | */ 46 | 47 | /* ----------- WWDG registers bit address in the alias region ----------- */ 48 | #define WWDG_OFFSET (WWDG_BASE - PERIPH_BASE) 49 | 50 | /* Alias word address of EWI bit */ 51 | #define CFR_OFFSET (WWDG_OFFSET + 0x04) 52 | #define EWI_BitNumber 0x09 53 | #define CFR_EWI_BB (PERIPH_BB_BASE + (CFR_OFFSET * 32) + (EWI_BitNumber * 4)) 54 | 55 | /* --------------------- WWDG registers bit mask ------------------------ */ 56 | 57 | /* CR register bit mask */ 58 | #define CR_WDGA_Set ((uint32_t)0x00000080) 59 | 60 | /* CFR register bit mask */ 61 | #define CFR_WDGTB_Mask ((uint32_t)0xFFFFFE7F) 62 | #define CFR_W_Mask ((uint32_t)0xFFFFFF80) 63 | #define BIT_Mask ((uint8_t)0x7F) 64 | 65 | /** 66 | * @} 67 | */ 68 | 69 | /** @defgroup WWDG_Private_Macros 70 | * @{ 71 | */ 72 | 73 | /** 74 | * @} 75 | */ 76 | 77 | /** @defgroup WWDG_Private_Variables 78 | * @{ 79 | */ 80 | 81 | /** 82 | * @} 83 | */ 84 | 85 | /** @defgroup WWDG_Private_FunctionPrototypes 86 | * @{ 87 | */ 88 | 89 | /** 90 | * @} 91 | */ 92 | 93 | /** @defgroup WWDG_Private_Functions 94 | * @{ 95 | */ 96 | 97 | /** 98 | * @brief Deinitializes the WWDG peripheral registers to their default reset values. 99 | * @param None 100 | * @retval None 101 | */ 102 | void WWDG_DeInit(void) 103 | { 104 | RCC_APB1PeriphResetCmd(RCC_APB1Periph_WWDG, ENABLE); 105 | RCC_APB1PeriphResetCmd(RCC_APB1Periph_WWDG, DISABLE); 106 | } 107 | 108 | /** 109 | * @brief Sets the WWDG Prescaler. 110 | * @param WWDG_Prescaler: specifies the WWDG Prescaler. 111 | * This parameter can be one of the following values: 112 | * @arg WWDG_Prescaler_1: WWDG counter clock = (PCLK1/4096)/1 113 | * @arg WWDG_Prescaler_2: WWDG counter clock = (PCLK1/4096)/2 114 | * @arg WWDG_Prescaler_4: WWDG counter clock = (PCLK1/4096)/4 115 | * @arg WWDG_Prescaler_8: WWDG counter clock = (PCLK1/4096)/8 116 | * @retval None 117 | */ 118 | void WWDG_SetPrescaler(uint32_t WWDG_Prescaler) 119 | { 120 | uint32_t tmpreg = 0; 121 | /* Check the parameters */ 122 | assert_param(IS_WWDG_PRESCALER(WWDG_Prescaler)); 123 | /* Clear WDGTB[1:0] bits */ 124 | tmpreg = WWDG->CFR & CFR_WDGTB_Mask; 125 | /* Set WDGTB[1:0] bits according to WWDG_Prescaler value */ 126 | tmpreg |= WWDG_Prescaler; 127 | /* Store the new value */ 128 | WWDG->CFR = tmpreg; 129 | } 130 | 131 | /** 132 | * @brief Sets the WWDG window value. 133 | * @param WindowValue: specifies the window value to be compared to the downcounter. 134 | * This parameter value must be lower than 0x80. 135 | * @retval None 136 | */ 137 | void WWDG_SetWindowValue(uint8_t WindowValue) 138 | { 139 | __IO uint32_t tmpreg = 0; 140 | 141 | /* Check the parameters */ 142 | assert_param(IS_WWDG_WINDOW_VALUE(WindowValue)); 143 | /* Clear W[6:0] bits */ 144 | 145 | tmpreg = WWDG->CFR & CFR_W_Mask; 146 | 147 | /* Set W[6:0] bits according to WindowValue value */ 148 | tmpreg |= WindowValue & (uint32_t) BIT_Mask; 149 | 150 | /* Store the new value */ 151 | WWDG->CFR = tmpreg; 152 | } 153 | 154 | /** 155 | * @brief Enables the WWDG Early Wakeup interrupt(EWI). 156 | * @param None 157 | * @retval None 158 | */ 159 | void WWDG_EnableIT(void) 160 | { 161 | *(__IO uint32_t *) CFR_EWI_BB = (uint32_t)ENABLE; 162 | } 163 | 164 | /** 165 | * @brief Sets the WWDG counter value. 166 | * @param Counter: specifies the watchdog counter value. 167 | * This parameter must be a number between 0x40 and 0x7F. 168 | * @retval None 169 | */ 170 | void WWDG_SetCounter(uint8_t Counter) 171 | { 172 | /* Check the parameters */ 173 | assert_param(IS_WWDG_COUNTER(Counter)); 174 | /* Write to T[6:0] bits to configure the counter value, no need to do 175 | a read-modify-write; writing a 0 to WDGA bit does nothing */ 176 | WWDG->CR = Counter & BIT_Mask; 177 | } 178 | 179 | /** 180 | * @brief Enables WWDG and load the counter value. 181 | * @param Counter: specifies the watchdog counter value. 182 | * This parameter must be a number between 0x40 and 0x7F. 183 | * @retval None 184 | */ 185 | void WWDG_Enable(uint8_t Counter) 186 | { 187 | /* Check the parameters */ 188 | assert_param(IS_WWDG_COUNTER(Counter)); 189 | WWDG->CR = CR_WDGA_Set | Counter; 190 | } 191 | 192 | /** 193 | * @brief Checks whether the Early Wakeup interrupt flag is set or not. 194 | * @param None 195 | * @retval The new state of the Early Wakeup interrupt flag (SET or RESET) 196 | */ 197 | FlagStatus WWDG_GetFlagStatus(void) 198 | { 199 | return (FlagStatus)(WWDG->SR); 200 | } 201 | 202 | /** 203 | * @brief Clears Early Wakeup interrupt flag. 204 | * @param None 205 | * @retval None 206 | */ 207 | void WWDG_ClearFlag(void) 208 | { 209 | WWDG->SR = (uint32_t)RESET; 210 | } 211 | 212 | /** 213 | * @} 214 | */ 215 | 216 | /** 217 | * @} 218 | */ 219 | 220 | /** 221 | * @} 222 | */ 223 | 224 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 225 | -------------------------------------------------------------------------------- /SYSTEM/delay/delay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/SYSTEM/delay/delay.c -------------------------------------------------------------------------------- /SYSTEM/delay/delay.h: -------------------------------------------------------------------------------- 1 | #ifndef __DELAY_H 2 | #define __DELAY_H 3 | #include "sys.h" 4 | 5 | void delay_init(void); 6 | void delay_ms(u16 nms); 7 | void delay_us(u32 nus); 8 | 9 | #endif 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /SYSTEM/sys/sys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/SYSTEM/sys/sys.c -------------------------------------------------------------------------------- /SYSTEM/sys/sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/SYSTEM/sys/sys.h -------------------------------------------------------------------------------- /SYSTEM/usart/usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/SYSTEM/usart/usart.c -------------------------------------------------------------------------------- /SYSTEM/usart/usart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/SYSTEM/usart/usart.h -------------------------------------------------------------------------------- /USER/DebugConfig/Healthy_STM32F103ZE_1.0.0.dbgconf: -------------------------------------------------------------------------------- 1 | // File: STM32F101_102_103_105_107.dbgconf 2 | // Version: 1.0.0 3 | // Note: refer to STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx Reference manual (RM0008) 4 | // STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx datasheets 5 | 6 | // <<< Use Configuration Wizard in Context Menu >>> 7 | 8 | // Debug MCU configuration register (DBGMCU_CR) 9 | // Reserved bits must be kept at reset value 10 | // DBG_TIM11_STOP TIM11 counter stopped when core is halted 11 | // DBG_TIM10_STOP TIM10 counter stopped when core is halted 12 | // DBG_TIM9_STOP TIM9 counter stopped when core is halted 13 | // DBG_TIM14_STOP TIM14 counter stopped when core is halted 14 | // DBG_TIM13_STOP TIM13 counter stopped when core is halted 15 | // DBG_TIM12_STOP TIM12 counter stopped when core is halted 16 | // DBG_CAN2_STOP Debug CAN2 stopped when core is halted 17 | // DBG_TIM7_STOP TIM7 counter stopped when core is halted 18 | // DBG_TIM6_STOP TIM6 counter stopped when core is halted 19 | // DBG_TIM5_STOP TIM5 counter stopped when core is halted 20 | // DBG_TIM8_STOP TIM8 counter stopped when core is halted 21 | // DBG_I2C2_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted 22 | // DBG_I2C1_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted 23 | // DBG_CAN1_STOP Debug CAN1 stopped when Core is halted 24 | // DBG_TIM4_STOP TIM4 counter stopped when core is halted 25 | // DBG_TIM3_STOP TIM3 counter stopped when core is halted 26 | // DBG_TIM2_STOP TIM2 counter stopped when core is halted 27 | // DBG_TIM1_STOP TIM1 counter stopped when core is halted 28 | // DBG_WWDG_STOP Debug window watchdog stopped when core is halted 29 | // DBG_IWDG_STOP Debug independent watchdog stopped when core is halted 30 | // DBG_STANDBY Debug standby mode 31 | // DBG_STOP Debug stop mode 32 | // DBG_SLEEP Debug sleep mode 33 | // 34 | DbgMCU_CR = 0x00000007; 35 | 36 | // <<< end of configuration section >>> 37 | -------------------------------------------------------------------------------- /USER/DebugConfig/MPU6050_STM32F103ZE_1.0.0.dbgconf: -------------------------------------------------------------------------------- 1 | // File: STM32F101_102_103_105_107.dbgconf 2 | // Version: 1.0.0 3 | // Note: refer to STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx Reference manual (RM0008) 4 | // STM32F101xx STM32F102xx STM32F103xx STM32F105xx STM32F107xx datasheets 5 | 6 | // <<< Use Configuration Wizard in Context Menu >>> 7 | 8 | // Debug MCU configuration register (DBGMCU_CR) 9 | // Reserved bits must be kept at reset value 10 | // DBG_TIM11_STOP TIM11 counter stopped when core is halted 11 | // DBG_TIM10_STOP TIM10 counter stopped when core is halted 12 | // DBG_TIM9_STOP TIM9 counter stopped when core is halted 13 | // DBG_TIM14_STOP TIM14 counter stopped when core is halted 14 | // DBG_TIM13_STOP TIM13 counter stopped when core is halted 15 | // DBG_TIM12_STOP TIM12 counter stopped when core is halted 16 | // DBG_CAN2_STOP Debug CAN2 stopped when core is halted 17 | // DBG_TIM7_STOP TIM7 counter stopped when core is halted 18 | // DBG_TIM6_STOP TIM6 counter stopped when core is halted 19 | // DBG_TIM5_STOP TIM5 counter stopped when core is halted 20 | // DBG_TIM8_STOP TIM8 counter stopped when core is halted 21 | // DBG_I2C2_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted 22 | // DBG_I2C1_SMBUS_TIMEOUT SMBUS timeout mode stopped when core is halted 23 | // DBG_CAN1_STOP Debug CAN1 stopped when Core is halted 24 | // DBG_TIM4_STOP TIM4 counter stopped when core is halted 25 | // DBG_TIM3_STOP TIM3 counter stopped when core is halted 26 | // DBG_TIM2_STOP TIM2 counter stopped when core is halted 27 | // DBG_TIM1_STOP TIM1 counter stopped when core is halted 28 | // DBG_WWDG_STOP Debug window watchdog stopped when core is halted 29 | // DBG_IWDG_STOP Debug independent watchdog stopped when core is halted 30 | // DBG_STANDBY Debug standby mode 31 | // DBG_STOP Debug stop mode 32 | // DBG_SLEEP Debug sleep mode 33 | // 34 | DbgMCU_CR = 0x00000007; 35 | 36 | // <<< end of configuration section >>> 37 | -------------------------------------------------------------------------------- /USER/JLinkSettings.ini: -------------------------------------------------------------------------------- 1 | [BREAKPOINTS] 2 | ForceImpTypeAny = 0 3 | ShowInfoWin = 1 4 | EnableFlashBP = 2 5 | BPDuringExecution = 0 6 | [CFI] 7 | CFISize = 0x00 8 | CFIAddr = 0x00 9 | [CPU] 10 | OverrideMemMap = 0 11 | AllowSimulation = 1 12 | ScriptFile="" 13 | [FLASH] 14 | CacheExcludeSize = 0x00 15 | CacheExcludeAddr = 0x00 16 | MinNumBytesFlashDL = 0 17 | SkipProgOnCRCMatch = 1 18 | VerifyDownload = 1 19 | AllowCaching = 1 20 | EnableFlashDL = 2 21 | Override = 0 22 | Device="UNSPECIFIED" 23 | [GENERAL] 24 | WorkRAMSize = 0x00 25 | WorkRAMAddr = 0x00 26 | RAMUsageLimit = 0x00 27 | [SWO] 28 | SWOLogFile="" 29 | [MEM] 30 | RdOverrideOrMask = 0x00 31 | RdOverrideAndMask = 0xFFFFFFFF 32 | RdOverrideAddr = 0xFFFFFFFF 33 | WrOverrideOrMask = 0x00 34 | WrOverrideAndMask = 0xFFFFFFFF 35 | WrOverrideAddr = 0xFFFFFFFF 36 | -------------------------------------------------------------------------------- /USER/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/USER/main.c -------------------------------------------------------------------------------- /USER/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/USER/stm32f10x.h -------------------------------------------------------------------------------- /USER/stm32f10x_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f10x_conf.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief Library configuration file. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F10x_CONF_H 24 | #define __STM32F10x_CONF_H 25 | 26 | /* Includes ------------------------------------------------------------------*/ 27 | /* Uncomment/Comment the line below to enable/disable peripheral header file inclusion */ 28 | #include "stm32f10x_adc.h" 29 | #include "stm32f10x_bkp.h" 30 | #include "stm32f10x_can.h" 31 | #include "stm32f10x_cec.h" 32 | #include "stm32f10x_crc.h" 33 | #include "stm32f10x_dac.h" 34 | #include "stm32f10x_dbgmcu.h" 35 | #include "stm32f10x_dma.h" 36 | #include "stm32f10x_exti.h" 37 | #include "stm32f10x_flash.h" 38 | #include "stm32f10x_fsmc.h" 39 | #include "stm32f10x_gpio.h" 40 | #include "stm32f10x_i2c.h" 41 | #include "stm32f10x_iwdg.h" 42 | #include "stm32f10x_pwr.h" 43 | #include "stm32f10x_rcc.h" 44 | #include "stm32f10x_rtc.h" 45 | #include "stm32f10x_sdio.h" 46 | #include "stm32f10x_spi.h" 47 | #include "stm32f10x_tim.h" 48 | #include "stm32f10x_usart.h" 49 | #include "stm32f10x_wwdg.h" 50 | #include "misc.h" /* High level functions for NVIC and SysTick (add-on to CMSIS functions) */ 51 | 52 | /* Exported types ------------------------------------------------------------*/ 53 | /* Exported constants --------------------------------------------------------*/ 54 | /* Uncomment the line below to expanse the "assert_param" macro in the 55 | Standard Peripheral Library drivers code */ 56 | /* #define USE_FULL_ASSERT 1 */ 57 | 58 | /* Exported macro ------------------------------------------------------------*/ 59 | #ifdef USE_FULL_ASSERT 60 | 61 | /** 62 | * @brief The assert_param macro is used for function's parameters check. 63 | * @param expr: If expr is false, it calls assert_failed function which reports 64 | * the name of the source file and the source line number of the call 65 | * that failed. If expr is true, it returns no value. 66 | * @retval None 67 | */ 68 | #define assert_param(expr) ((expr) ? (void)0 : assert_failed((uint8_t *)__FILE__, __LINE__)) 69 | /* Exported functions ------------------------------------------------------- */ 70 | void assert_failed(uint8_t* file, uint32_t line); 71 | #else 72 | #define assert_param(expr) ((void)0) 73 | #endif /* USE_FULL_ASSERT */ 74 | 75 | #endif /* __STM32F10x_CONF_H */ 76 | 77 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 78 | -------------------------------------------------------------------------------- /USER/stm32f10x_it.c: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f10x_it.c 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief Main Interrupt Service Routines. 8 | * This file provides template for all exceptions handler and peripherals 9 | * interrupt service routine. 10 | ****************************************************************************** 11 | * @attention 12 | * 13 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 14 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 15 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 16 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 17 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 18 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 19 | * 20 | *

© COPYRIGHT 2011 STMicroelectronics

21 | ****************************************************************************** 22 | */ 23 | 24 | /* Includes ------------------------------------------------------------------*/ 25 | #include "stm32f10x_it.h" 26 | 27 | 28 | 29 | void NMI_Handler(void) 30 | { 31 | } 32 | 33 | void HardFault_Handler(void) 34 | { 35 | /* Go to infinite loop when Hard Fault exception occurs */ 36 | while (1) 37 | { 38 | } 39 | } 40 | 41 | void MemManage_Handler(void) 42 | { 43 | /* Go to infinite loop when Memory Manage exception occurs */ 44 | while (1) 45 | { 46 | } 47 | } 48 | 49 | 50 | void BusFault_Handler(void) 51 | { 52 | /* Go to infinite loop when Bus Fault exception occurs */ 53 | while (1) 54 | { 55 | } 56 | } 57 | 58 | void UsageFault_Handler(void) 59 | { 60 | /* Go to infinite loop when Usage Fault exception occurs */ 61 | while (1) 62 | { 63 | } 64 | } 65 | 66 | void SVC_Handler(void) 67 | { 68 | } 69 | 70 | void DebugMon_Handler(void) 71 | { 72 | } 73 | 74 | void PendSV_Handler(void) 75 | { 76 | } 77 | 78 | void SysTick_Handler(void) 79 | { 80 | } 81 | 82 | /******************************************************************************/ 83 | /* STM32F10x Peripherals Interrupt Handlers */ 84 | /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */ 85 | /* available peripheral interrupt handler's name please refer to the startup */ 86 | /* file (startup_stm32f10x_xx.s). */ 87 | /******************************************************************************/ 88 | -------------------------------------------------------------------------------- /USER/stm32f10x_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file GPIO/IOToggle/stm32f10x_it.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 08-April-2011 7 | * @brief This file contains the headers of the interrupt handlers. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /* Define to prevent recursive inclusion -------------------------------------*/ 23 | #ifndef __STM32F10x_IT_H 24 | #define __STM32F10x_IT_H 25 | 26 | /* Includes ------------------------------------------------------------------*/ 27 | #include "stm32f10x.h" 28 | 29 | /* Exported types ------------------------------------------------------------*/ 30 | /* Exported constants --------------------------------------------------------*/ 31 | /* Exported macro ------------------------------------------------------------*/ 32 | /* Exported functions ------------------------------------------------------- */ 33 | 34 | void NMI_Handler(void); 35 | void HardFault_Handler(void); 36 | void MemManage_Handler(void); 37 | void BusFault_Handler(void); 38 | void UsageFault_Handler(void); 39 | void SVC_Handler(void); 40 | void DebugMon_Handler(void); 41 | void PendSV_Handler(void); 42 | void SysTick_Handler(void); 43 | 44 | #endif /* __STM32F10x_IT_H */ 45 | 46 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 47 | -------------------------------------------------------------------------------- /USER/system_stm32f10x.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file system_stm32f10x.h 4 | * @author MCD Application Team 5 | * @version V3.5.0 6 | * @date 11-March-2011 7 | * @brief CMSIS Cortex-M3 Device Peripheral Access Layer System Header File. 8 | ****************************************************************************** 9 | * @attention 10 | * 11 | * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS 12 | * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE 13 | * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY 14 | * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING 15 | * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE 16 | * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS. 17 | * 18 | *

© COPYRIGHT 2011 STMicroelectronics

19 | ****************************************************************************** 20 | */ 21 | 22 | /** @addtogroup CMSIS 23 | * @{ 24 | */ 25 | 26 | /** @addtogroup stm32f10x_system 27 | * @{ 28 | */ 29 | 30 | /** 31 | * @brief Define to prevent recursive inclusion 32 | */ 33 | #ifndef __SYSTEM_STM32F10X_H 34 | #define __SYSTEM_STM32F10X_H 35 | 36 | #ifdef __cplusplus 37 | extern "C" { 38 | #endif 39 | 40 | /** @addtogroup STM32F10x_System_Includes 41 | * @{ 42 | */ 43 | 44 | /** 45 | * @} 46 | */ 47 | 48 | 49 | /** @addtogroup STM32F10x_System_Exported_types 50 | * @{ 51 | */ 52 | 53 | extern uint32_t SystemCoreClock; /*!< System Clock Frequency (Core Clock) */ 54 | 55 | /** 56 | * @} 57 | */ 58 | 59 | /** @addtogroup STM32F10x_System_Exported_Constants 60 | * @{ 61 | */ 62 | 63 | /** 64 | * @} 65 | */ 66 | 67 | /** @addtogroup STM32F10x_System_Exported_Macros 68 | * @{ 69 | */ 70 | 71 | /** 72 | * @} 73 | */ 74 | 75 | /** @addtogroup STM32F10x_System_Exported_Functions 76 | * @{ 77 | */ 78 | 79 | extern void SystemInit(void); 80 | extern void SystemCoreClockUpdate(void); 81 | /** 82 | * @} 83 | */ 84 | 85 | #ifdef __cplusplus 86 | } 87 | #endif 88 | 89 | #endif /*__SYSTEM_STM32F10X_H */ 90 | 91 | /** 92 | * @} 93 | */ 94 | 95 | /** 96 | * @} 97 | */ 98 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 99 | -------------------------------------------------------------------------------- /USMART/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/USMART/readme.txt -------------------------------------------------------------------------------- /USMART/usmart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/USMART/usmart.c -------------------------------------------------------------------------------- /USMART/usmart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/USMART/usmart.h -------------------------------------------------------------------------------- /USMART/usmart_config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/USMART/usmart_config.c -------------------------------------------------------------------------------- /USMART/usmart_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/USMART/usmart_str.c -------------------------------------------------------------------------------- /USMART/usmart_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/USMART/usmart_str.h -------------------------------------------------------------------------------- /keilkilll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/keilkilll.bat -------------------------------------------------------------------------------- /人体健康监测系统IMG20200411170007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/人体健康监测系统IMG20200411170007.jpg -------------------------------------------------------------------------------- /人体健康监测系统IMG20200411170037.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/人体健康监测系统IMG20200411170037.jpg -------------------------------------------------------------------------------- /人体健康监测系统IMG20200411170057.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/人体健康监测系统IMG20200411170057.jpg -------------------------------------------------------------------------------- /人体健康监测系统IMG20200411170137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/人体健康监测系统IMG20200411170137.jpg -------------------------------------------------------------------------------- /人体健康监测系统IMG_20200408_081813.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/人体健康监测系统IMG_20200408_081813.jpg -------------------------------------------------------------------------------- /人体健康监测系统IMG_20200408_111808.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/人体健康监测系统IMG_20200408_111808.jpg -------------------------------------------------------------------------------- /人体健康监测系统IMG_20200411_165824.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hunbfgg/Human-health-monitoring-device/bec8f9e029d05e062a2b59e65675705029bfcb6f/人体健康监测系统IMG_20200411_165824.jpg -------------------------------------------------------------------------------- /硬件接线说明.txt: -------------------------------------------------------------------------------- 1 | 所用硬件模块及其对应引脚: 2 | 温度传感器 DS18B20 3 | DQ->PG11 紫色 4 | 5 | VCC->5V 褐色 6 | 7 | GND->GND 棕色 8 | 心率传感器 pulse sensor 9 | S->PA0 灰色 10 | 11 | VCC->3.3V 黑色 12 | 13 | GND->GND 褐色 14 | 加速度传感器 mpu6050 15 | SCL->PB10 蓝色 16 | 17 | SDA->PB11 白色 18 | 19 | VCC->5V 橘色 20 | 21 | GND->GND 蓝色 22 | 短信收发模块 sim900a 23 | 5VR->PA2 灰色 24 | 25 | 5VT->PA3 黄色 26 | 27 | GND->GND 蓝色 28 | 29 | VCC_mcu->5V(可不接) 30 | 另外还需要5V 2A电源供电 31 | 32单片机 stm32f103zet6 32 | 33 | 5V 1A 供电 --------------------------------------------------------------------------------