├── README.md ├── 参考代码 ├── App │ ├── DHT11.c │ ├── DHT11.h │ ├── OLED_Font_Bmp.h │ ├── delay.c │ ├── delay.h │ ├── oled.c │ └── oled.h ├── CMSIS │ ├── core_cm3.c │ ├── core_cm3.h │ ├── stm32f10x.h │ ├── system_stm32f10x.c │ └── system_stm32f10x.h ├── Library │ ├── 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 ├── Project │ ├── DebugConfig │ │ ├── Target_1_STM32F103ZE_1.0.0.dbgconf │ │ └── _________STM32F103ZE_1.0.0.dbgconf │ ├── EventRecorderStub.scvd │ ├── Listings │ │ ├── startup_stm32f10x_hd.lst │ │ └── 工程模板.map │ ├── Objects │ │ ├── ExtDll.iex │ │ ├── adc.crf │ │ ├── adc.d │ │ ├── adc.o │ │ ├── as608.crf │ │ ├── as608.d │ │ ├── as608.o │ │ ├── beep.crf │ │ ├── beep.d │ │ ├── beep.o │ │ ├── core_cm3.crf │ │ ├── core_cm3.d │ │ ├── core_cm3.o │ │ ├── delay.crf │ │ ├── delay.d │ │ ├── delay.o │ │ ├── dht.crf │ │ ├── dht.d │ │ ├── dht.o │ │ ├── dht11.crf │ │ ├── dht11.d │ │ ├── dht11.o │ │ ├── ds1302.d │ │ ├── fpm383c.crf │ │ ├── fpm383c.d │ │ ├── fpm383c.o │ │ ├── hc.crf │ │ ├── hc.d │ │ ├── hc.o │ │ ├── hx711.crf │ │ ├── hx711.d │ │ ├── hx711.o │ │ ├── iwdg.crf │ │ ├── iwdg.d │ │ ├── iwdg.o │ │ ├── keyboard.crf │ │ ├── keyboard.d │ │ ├── keyboard.o │ │ ├── l298n.crf │ │ ├── l298n.d │ │ ├── l298n.o │ │ ├── lcd12864.crf │ │ ├── lcd12864.d │ │ ├── lcd12864.o │ │ ├── led.crf │ │ ├── led.d │ │ ├── led.o │ │ ├── lm35.crf │ │ ├── lm35.d │ │ ├── lm35.o │ │ ├── main.crf │ │ ├── main.d │ │ ├── main.o │ │ ├── misc.crf │ │ ├── misc.d │ │ ├── misc.o │ │ ├── motor.crf │ │ ├── motor.d │ │ ├── motor.o │ │ ├── nvic.crf │ │ ├── nvic.d │ │ ├── nvic.o │ │ ├── oled.crf │ │ ├── oled.d │ │ ├── oled.o │ │ ├── pwm.crf │ │ ├── pwm.d │ │ ├── pwm.o │ │ ├── remote.d │ │ ├── rfid.crf │ │ ├── rfid.d │ │ ├── rfid.o │ │ ├── seg.crf │ │ ├── seg.d │ │ ├── sg90.crf │ │ ├── sg90.d │ │ ├── sg90.o │ │ ├── startup_stm32f10x_hd.d │ │ ├── startup_stm32f10x_hd.o │ │ ├── stm32f10x_adc.crf │ │ ├── stm32f10x_adc.d │ │ ├── stm32f10x_adc.o │ │ ├── stm32f10x_bkp.crf │ │ ├── stm32f10x_bkp.d │ │ ├── stm32f10x_bkp.o │ │ ├── stm32f10x_can.crf │ │ ├── stm32f10x_can.d │ │ ├── stm32f10x_can.o │ │ ├── stm32f10x_cec.crf │ │ ├── stm32f10x_cec.d │ │ ├── stm32f10x_cec.o │ │ ├── stm32f10x_crc.crf │ │ ├── stm32f10x_crc.d │ │ ├── stm32f10x_crc.o │ │ ├── stm32f10x_dac.crf │ │ ├── stm32f10x_dac.d │ │ ├── stm32f10x_dac.o │ │ ├── stm32f10x_dbgmcu.crf │ │ ├── stm32f10x_dbgmcu.d │ │ ├── stm32f10x_dbgmcu.o │ │ ├── stm32f10x_dma.crf │ │ ├── stm32f10x_dma.d │ │ ├── stm32f10x_dma.o │ │ ├── stm32f10x_exti.crf │ │ ├── stm32f10x_exti.d │ │ ├── stm32f10x_exti.o │ │ ├── stm32f10x_flash.crf │ │ ├── stm32f10x_flash.d │ │ ├── stm32f10x_flash.o │ │ ├── stm32f10x_fsmc.crf │ │ ├── stm32f10x_fsmc.d │ │ ├── stm32f10x_fsmc.o │ │ ├── stm32f10x_gpio.crf │ │ ├── stm32f10x_gpio.d │ │ ├── stm32f10x_gpio.o │ │ ├── stm32f10x_i2c.crf │ │ ├── stm32f10x_i2c.d │ │ ├── stm32f10x_i2c.o │ │ ├── stm32f10x_it.crf │ │ ├── stm32f10x_it.d │ │ ├── stm32f10x_it.o │ │ ├── stm32f10x_iwdg.crf │ │ ├── stm32f10x_iwdg.d │ │ ├── stm32f10x_iwdg.o │ │ ├── stm32f10x_pwr.crf │ │ ├── stm32f10x_pwr.d │ │ ├── stm32f10x_pwr.o │ │ ├── stm32f10x_rcc.crf │ │ ├── stm32f10x_rcc.d │ │ ├── stm32f10x_rcc.o │ │ ├── stm32f10x_rtc.crf │ │ ├── stm32f10x_rtc.d │ │ ├── stm32f10x_rtc.o │ │ ├── stm32f10x_sdio.crf │ │ ├── stm32f10x_sdio.d │ │ ├── stm32f10x_sdio.o │ │ ├── stm32f10x_spi.crf │ │ ├── stm32f10x_spi.d │ │ ├── stm32f10x_spi.o │ │ ├── stm32f10x_tim.crf │ │ ├── stm32f10x_tim.d │ │ ├── stm32f10x_tim.o │ │ ├── stm32f10x_usart.crf │ │ ├── stm32f10x_usart.d │ │ ├── stm32f10x_usart.o │ │ ├── stm32f10x_wwdg.crf │ │ ├── stm32f10x_wwdg.d │ │ ├── stm32f10x_wwdg.o │ │ ├── syn6288.crf │ │ ├── syn6288.d │ │ ├── syn6288.o │ │ ├── system_stm32f10x.crf │ │ ├── system_stm32f10x.d │ │ ├── system_stm32f10x.o │ │ ├── tim.crf │ │ ├── tim.d │ │ ├── tim.o │ │ ├── uart.crf │ │ ├── uart.d │ │ ├── uart.o │ │ ├── uart3.crf │ │ ├── uart3.d │ │ ├── uart3.o │ │ ├── 工程模板.axf │ │ ├── 工程模板.build_log.htm │ │ ├── 工程模板.hex │ │ ├── 工程模板.htm │ │ ├── 工程模板.lnp │ │ ├── 工程模板.sct │ │ └── 工程模板_工程模板.dep │ ├── 工程模板.uvguix.XTAY │ ├── 工程模板.uvoptx │ └── 工程模板.uvprojx ├── Startup │ └── startup_stm32f10x_hd.s └── User │ ├── main.c │ ├── main.h │ ├── stm32f10x_conf.h │ ├── stm32f10x_it.c │ └── stm32f10x_it.h └── 数据手册 └── ASAIR-DHT11.pdf /README.md: -------------------------------------------------------------------------------- 1 | # 使用方法 2 | - 工程采用Keil MDK 5编写,基于STM32标准库 3 | - 工程项目文件在 `Project` 文件夹内的 `工程模板.uvprojx`,双击即可打开。 4 | - 可以复制 `App`文件夹下的 `DHT11.c` 和 `DHT11.h`文件到自己的项目中使用。 5 | 6 | - 程序运行时不需要初始化外设,具体的初始化过程在以下函数内部调用了,我们只需要关注下面函数的用法即可。 7 | 8 | # 函数说明 9 | - `uint8_t DHT_Get_Temp_Humi_Data(uint8_t buffer[])` 10 | - 使用此函数需要传入一个8位的的数组。分别用来存储 `湿度整数部分`、`湿度小数部分`、`温度整数部分`、`温度小数部分`、`校验和`,注意!湿度小数部分接收到的值始终为`0`。 11 | - 函数有一个返回值,接收到正确数据返回`1`,错误返回`0`,建议在调用时先判断一下该返回值再进行其他操作。 12 | 13 | - 只需要在自己的函数中重复调用即可,示例中是将该函数在while函数中每两秒重复调用,然后打印在OLED显示屏上。 14 | 15 | # 其它 16 | - 工程文件中包含了常见的0.96"、1.3"的OLED显示屏的驱动,驱动芯片为SSD1306,通过SPI方式连接到STM32,具体的引脚连接翻看oled.h文件中的宏定义 17 | -------------------------------------------------------------------------------- /参考代码/App/DHT11.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/App/DHT11.c -------------------------------------------------------------------------------- /参考代码/App/DHT11.h: -------------------------------------------------------------------------------- 1 | #ifndef __DHT11_H 2 | #define __DHT11_H 3 | 4 | #include "main.h" 5 | 6 | #define DHT_GPIO_PORT GPIOA 7 | #define DHT_GPIO_PIN GPIO_Pin_4 8 | #define DHT_RCC_PORT RCC_APB2Periph_GPIOA 9 | 10 | uint8_t DHT_Get_Temp_Humi_Data(uint8_t buffer[]); 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /参考代码/App/OLED_Font_Bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/App/OLED_Font_Bmp.h -------------------------------------------------------------------------------- /参考代码/App/delay.c: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | 3 | void delay_ms(uint32_t ms) 4 | { 5 | SysTick_Config(SystemCoreClock/1000); 6 | for(int i = 0; i < ms; i++) 7 | { 8 | while(!((SysTick->CTRL) & (1<<16))); 9 | } 10 | SysTick->CTRL &= ~SysTick_CTRL_ENABLE_Msk; 11 | } 12 | 13 | void delay_us(uint32_t us) 14 | { 15 | SysTick_Config(SystemCoreClock/1000000); 16 | for(int i = 0; i < us; i++) 17 | { 18 | while(!((SysTick->CTRL) & (1<<16))); 19 | } 20 | SysTick->CTRL &= ~SysTick_CTRL_ENABLE_Msk; 21 | } 22 | -------------------------------------------------------------------------------- /参考代码/App/delay.h: -------------------------------------------------------------------------------- 1 | #ifndef __DELAY_H 2 | #define __DELAY_H 3 | 4 | #include "main.h" 5 | 6 | void delay_ms(uint32_t ms); 7 | void delay_us(uint32_t us); 8 | 9 | #endif 10 | -------------------------------------------------------------------------------- /参考代码/App/oled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/App/oled.c -------------------------------------------------------------------------------- /参考代码/App/oled.h: -------------------------------------------------------------------------------- 1 | #ifndef __OLED_H 2 | #define __OLED_H 3 | 4 | #include "stm32f10x.h" 5 | #include "stdlib.h" 6 | 7 | #define SIZE 16 8 | #define XLevelL 0x00 9 | #define XLevelH 0x10 10 | #define Max_Column 128 11 | #define Max_Row 64 12 | #define Brightness 0xFF 13 | #define X_WIDTH 128 14 | #define Y_WIDTH 64 15 | 16 | #define RCC_APB2Periph_GPIO RCC_APB2Periph_GPIOE 17 | #define GPIO_POINT GPIOE 18 | #define OLED_CS_GPIO GPIOE 19 | #define OLED_CS_GPIO_PIN GPIO_Pin_9 20 | #define OLED_DC_GPIO GPIOE 21 | #define OLED_DC_GPIO_PIN GPIO_Pin_11 22 | #define OLED_SCLK_GPIO GPIOE 23 | #define OLED_SCLK_GPIO_PIN GPIO_Pin_15 24 | #define OLED_SDIN_GPIO GPIOE 25 | #define OLED_SDIN_GPIO_PIN GPIO_Pin_13 26 | 27 | #define OLED_CS_Clr() GPIO_ResetBits(OLED_CS_GPIO,OLED_CS_GPIO_PIN) 28 | #define OLED_CS_Set() GPIO_SetBits(OLED_CS_GPIO,OLED_CS_GPIO_PIN) 29 | 30 | #define OLED_RST_Clr() 31 | #define OLED_RST_Set() 32 | 33 | #define OLED_DC_Clr() GPIO_ResetBits(OLED_DC_GPIO,OLED_DC_GPIO_PIN) 34 | #define OLED_DC_Set() GPIO_SetBits(OLED_DC_GPIO,OLED_DC_GPIO_PIN) 35 | 36 | #define OLED_SCLK_Clr() GPIO_ResetBits(OLED_SCLK_GPIO,OLED_SCLK_GPIO_PIN) 37 | #define OLED_SCLK_Set() GPIO_SetBits(OLED_SCLK_GPIO,OLED_SCLK_GPIO_PIN) 38 | 39 | #define OLED_SDIN_Clr() GPIO_ResetBits(OLED_SDIN_GPIO,OLED_SDIN_GPIO_PIN) 40 | #define OLED_SDIN_Set() GPIO_SetBits(OLED_SDIN_GPIO,OLED_SDIN_GPIO_PIN) 41 | 42 | #define OLED_CMD 0 43 | #define OLED_DATA 1 44 | 45 | void OLED_WR_Byte(uint8_t dat,uint8_t cmd); 46 | void OLED_Display_On(void); 47 | void OLED_Display_Off(void); 48 | void OLED_Init(void); 49 | void OLED_Clear(void); 50 | void OLED_ShowChar(uint8_t x,uint8_t y,uint8_t chr); 51 | void OLED_ShowString(uint8_t x,uint8_t y,uint8_t *chr); 52 | void OLED_Set_Pos(uint8_t x,uint8_t y); 53 | void OLED_ShowChinese(uint8_t x,uint8_t y,uint8_t no); 54 | void OLED_ShowNum(unsigned char x,unsigned char y,unsigned long num,unsigned char len,unsigned char size); 55 | void OLED_DrawBMP(unsigned char x0, unsigned char y0,unsigned char x1, unsigned char y1,unsigned char BMP[]); 56 | 57 | #endif 58 | -------------------------------------------------------------------------------- /参考代码/CMSIS/stm32f10x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/CMSIS/stm32f10x.h -------------------------------------------------------------------------------- /参考代码/CMSIS/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/src/stm32f10x_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Library/src/stm32f10x_flash.c -------------------------------------------------------------------------------- /参考代码/Library/src/stm32f10x_i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Library/src/stm32f10x_i2c.c -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Library/src/stm32f10x_usart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Library/src/stm32f10x_usart.c -------------------------------------------------------------------------------- /参考代码/Library/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 | -------------------------------------------------------------------------------- /参考代码/Project/DebugConfig/Target_1_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 | -------------------------------------------------------------------------------- /参考代码/Project/DebugConfig/_________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 | -------------------------------------------------------------------------------- /参考代码/Project/EventRecorderStub.scvd: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/ExtDll.iex: -------------------------------------------------------------------------------- 1 | [EXTDLL] 2 | Count=0 3 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/adc.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/adc.d: -------------------------------------------------------------------------------- 1 | .\objects\adc.o: ..\App\ADC.c 2 | .\objects\adc.o: ..\App\main.h 3 | .\objects\adc.o: ..\CMSIS\stm32f10x.h 4 | .\objects\adc.o: ..\CMSIS\core_cm3.h 5 | .\objects\adc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\adc.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\adc.o: ..\User\stm32f10x_conf.h 8 | .\objects\adc.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\adc.o: ..\CMSIS\stm32f10x.h 10 | .\objects\adc.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\adc.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\adc.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\adc.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\adc.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\adc.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\adc.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\adc.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\adc.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\adc.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\adc.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\adc.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\adc.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\adc.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\adc.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\adc.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\adc.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\adc.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\adc.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\adc.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\adc.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\adc.o: ..\Library\inc\misc.h 32 | .\objects\adc.o: ..\App\lcd12864.h 33 | .\objects\adc.o: ..\App\delay.h 34 | .\objects\adc.o: ..\App\TIM.h 35 | .\objects\adc.o: ..\App\ADC.h 36 | .\objects\adc.o: ..\App\DHT.h 37 | .\objects\adc.o: ..\App\main.h 38 | .\objects\adc.o: ..\App\LED.h 39 | .\objects\adc.o: ..\App\PWM.h 40 | .\objects\adc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\adc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\adc.o: ..\App\uart.h 43 | .\objects\adc.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\adc.o: ..\App\SYN6288.h 45 | .\objects\adc.o: ..\App\hc.h 46 | .\objects\adc.o: ..\App\HX711.h 47 | .\objects\adc.o: ..\App\RFID.h 48 | .\objects\adc.o: ..\App\KeyBoard.h 49 | .\objects\adc.o: ..\App\FPM383C.h 50 | .\objects\adc.o: ..\App\Beep.h 51 | .\objects\adc.o: ..\App\IWDG.h 52 | .\objects\adc.o: ..\App\oled.h 53 | .\objects\adc.o: ..\App\LM35.h 54 | .\objects\adc.o: ..\App\UART3.h 55 | .\objects\adc.o: ..\App\L298N.h 56 | .\objects\adc.o: ..\App\SG90.h 57 | .\objects\adc.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/adc.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/as608.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/as608.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/as608.d: -------------------------------------------------------------------------------- 1 | .\objects\as608.o: ..\App\AS608.c 2 | .\objects\as608.o: ..\App\main.h 3 | .\objects\as608.o: ..\CMSIS\stm32f10x.h 4 | .\objects\as608.o: ..\CMSIS\core_cm3.h 5 | .\objects\as608.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\as608.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\as608.o: ..\User\stm32f10x_conf.h 8 | .\objects\as608.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\as608.o: ..\CMSIS\stm32f10x.h 10 | .\objects\as608.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\as608.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\as608.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\as608.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\as608.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\as608.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\as608.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\as608.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\as608.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\as608.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\as608.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\as608.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\as608.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\as608.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\as608.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\as608.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\as608.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\as608.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\as608.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\as608.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\as608.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\as608.o: ..\Library\inc\misc.h 32 | .\objects\as608.o: ..\App\lcd12864.h 33 | .\objects\as608.o: ..\App\delay.h 34 | .\objects\as608.o: ..\App\TIM.h 35 | .\objects\as608.o: ..\App\ADC.h 36 | .\objects\as608.o: ..\App\DHT.h 37 | .\objects\as608.o: ..\App\LED.h 38 | .\objects\as608.o: ..\App\PWM.h 39 | .\objects\as608.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 40 | .\objects\as608.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 41 | .\objects\as608.o: ..\App\uart.h 42 | .\objects\as608.o: ..\App\main.h 43 | .\objects\as608.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\as608.o: ..\App\SYN6288.h 45 | .\objects\as608.o: ..\App\hc.h 46 | .\objects\as608.o: ..\App\HX711.h 47 | .\objects\as608.o: ..\App\RFID.h 48 | .\objects\as608.o: ..\App\KeyBoard.h 49 | .\objects\as608.o: ..\App\OLED.h 50 | .\objects\as608.o: ..\App\AS608.h 51 | .\objects\as608.o: ..\App\Beep.h 52 | .\objects\as608.o: ..\App\IWDG.h 53 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/as608.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/as608.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/beep.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/beep.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/beep.d: -------------------------------------------------------------------------------- 1 | .\objects\beep.o: ..\App\Beep.c 2 | .\objects\beep.o: ..\App\main.h 3 | .\objects\beep.o: ..\CMSIS\stm32f10x.h 4 | .\objects\beep.o: ..\CMSIS\core_cm3.h 5 | .\objects\beep.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\beep.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\beep.o: ..\User\stm32f10x_conf.h 8 | .\objects\beep.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\beep.o: ..\CMSIS\stm32f10x.h 10 | .\objects\beep.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\beep.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\beep.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\beep.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\beep.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\beep.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\beep.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\beep.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\beep.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\beep.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\beep.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\beep.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\beep.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\beep.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\beep.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\beep.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\beep.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\beep.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\beep.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\beep.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\beep.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\beep.o: ..\Library\inc\misc.h 32 | .\objects\beep.o: ..\App\lcd12864.h 33 | .\objects\beep.o: ..\App\delay.h 34 | .\objects\beep.o: ..\App\TIM.h 35 | .\objects\beep.o: ..\App\ADC.h 36 | .\objects\beep.o: ..\App\DHT.h 37 | .\objects\beep.o: ..\App\main.h 38 | .\objects\beep.o: ..\App\LED.h 39 | .\objects\beep.o: ..\App\PWM.h 40 | .\objects\beep.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\beep.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\beep.o: ..\App\uart.h 43 | .\objects\beep.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\beep.o: ..\App\SYN6288.h 45 | .\objects\beep.o: ..\App\hc.h 46 | .\objects\beep.o: ..\App\HX711.h 47 | .\objects\beep.o: ..\App\RFID.h 48 | .\objects\beep.o: ..\App\KeyBoard.h 49 | .\objects\beep.o: ..\App\FPM383C.h 50 | .\objects\beep.o: ..\App\Beep.h 51 | .\objects\beep.o: ..\App\IWDG.h 52 | .\objects\beep.o: ..\App\oled.h 53 | .\objects\beep.o: ..\App\LM35.h 54 | .\objects\beep.o: ..\App\UART3.h 55 | .\objects\beep.o: ..\App\L298N.h 56 | .\objects\beep.o: ..\App\SG90.h 57 | .\objects\beep.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/beep.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/beep.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/core_cm3.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/core_cm3.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/core_cm3.d: -------------------------------------------------------------------------------- 1 | .\objects\core_cm3.o: ..\CMSIS\core_cm3.c 2 | .\objects\core_cm3.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 3 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/core_cm3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/core_cm3.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/delay.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/delay.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/delay.d: -------------------------------------------------------------------------------- 1 | .\objects\delay.o: ..\App\delay.c 2 | .\objects\delay.o: ..\User\main.h 3 | .\objects\delay.o: ..\CMSIS\stm32f10x.h 4 | .\objects\delay.o: ..\CMSIS\core_cm3.h 5 | .\objects\delay.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\delay.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\delay.o: ..\User\stm32f10x_conf.h 8 | .\objects\delay.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\delay.o: ..\CMSIS\stm32f10x.h 10 | .\objects\delay.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\delay.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\delay.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\delay.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\delay.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\delay.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\delay.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\delay.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\delay.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\delay.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\delay.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\delay.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\delay.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\delay.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\delay.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\delay.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\delay.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\delay.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\delay.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\delay.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\delay.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\delay.o: ..\Library\inc\misc.h 32 | .\objects\delay.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 33 | .\objects\delay.o: ..\App\delay.h 34 | .\objects\delay.o: ..\User\main.h 35 | .\objects\delay.o: ..\App\DHT11.h 36 | .\objects\delay.o: ..\App\oled.h 37 | .\objects\delay.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 38 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/delay.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/delay.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/dht.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/dht.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/dht.d: -------------------------------------------------------------------------------- 1 | .\objects\dht.o: ..\App\DHT.c 2 | .\objects\dht.o: ..\App\main.h 3 | .\objects\dht.o: ..\CMSIS\stm32f10x.h 4 | .\objects\dht.o: ..\CMSIS\core_cm3.h 5 | .\objects\dht.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\dht.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\dht.o: ..\User\stm32f10x_conf.h 8 | .\objects\dht.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\dht.o: ..\CMSIS\stm32f10x.h 10 | .\objects\dht.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\dht.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\dht.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\dht.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\dht.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\dht.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\dht.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\dht.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\dht.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\dht.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\dht.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\dht.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\dht.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\dht.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\dht.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\dht.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\dht.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\dht.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\dht.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\dht.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\dht.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\dht.o: ..\Library\inc\misc.h 32 | .\objects\dht.o: ..\App\lcd12864.h 33 | .\objects\dht.o: ..\App\delay.h 34 | .\objects\dht.o: ..\App\TIM.h 35 | .\objects\dht.o: ..\App\ADC.h 36 | .\objects\dht.o: ..\App\DHT.h 37 | .\objects\dht.o: ..\App\main.h 38 | .\objects\dht.o: ..\App\LED.h 39 | .\objects\dht.o: ..\App\PWM.h 40 | .\objects\dht.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\dht.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\dht.o: ..\App\uart.h 43 | .\objects\dht.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\dht.o: ..\App\SYN6288.h 45 | .\objects\dht.o: ..\App\hc.h 46 | .\objects\dht.o: ..\App\HX711.h 47 | .\objects\dht.o: ..\App\RFID.h 48 | .\objects\dht.o: ..\App\KeyBoard.h 49 | .\objects\dht.o: ..\App\FPM383C.h 50 | .\objects\dht.o: ..\App\Beep.h 51 | .\objects\dht.o: ..\App\IWDG.h 52 | .\objects\dht.o: ..\App\oled.h 53 | .\objects\dht.o: ..\App\LM35.h 54 | .\objects\dht.o: ..\App\UART3.h 55 | .\objects\dht.o: ..\App\L298N.h 56 | .\objects\dht.o: ..\App\SG90.h 57 | .\objects\dht.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/dht.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/dht.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/dht11.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/dht11.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/dht11.d: -------------------------------------------------------------------------------- 1 | .\objects\dht11.o: ..\App\DHT11.c 2 | .\objects\dht11.o: ..\User\main.h 3 | .\objects\dht11.o: ..\CMSIS\stm32f10x.h 4 | .\objects\dht11.o: ..\CMSIS\core_cm3.h 5 | .\objects\dht11.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\dht11.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\dht11.o: ..\User\stm32f10x_conf.h 8 | .\objects\dht11.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\dht11.o: ..\CMSIS\stm32f10x.h 10 | .\objects\dht11.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\dht11.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\dht11.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\dht11.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\dht11.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\dht11.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\dht11.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\dht11.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\dht11.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\dht11.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\dht11.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\dht11.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\dht11.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\dht11.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\dht11.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\dht11.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\dht11.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\dht11.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\dht11.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\dht11.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\dht11.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\dht11.o: ..\Library\inc\misc.h 32 | .\objects\dht11.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 33 | .\objects\dht11.o: ..\App\delay.h 34 | .\objects\dht11.o: ..\User\main.h 35 | .\objects\dht11.o: ..\App\DHT11.h 36 | .\objects\dht11.o: ..\App\oled.h 37 | .\objects\dht11.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 38 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/dht11.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/dht11.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/ds1302.d: -------------------------------------------------------------------------------- 1 | .\objects\ds1302.o: ..\App\ds1302.c 2 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/fpm383c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/fpm383c.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/fpm383c.d: -------------------------------------------------------------------------------- 1 | .\objects\fpm383c.o: ..\App\FPM383C.c 2 | .\objects\fpm383c.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 3 | .\objects\fpm383c.o: ..\CMSIS\stm32f10x.h 4 | .\objects\fpm383c.o: ..\CMSIS\core_cm3.h 5 | .\objects\fpm383c.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\fpm383c.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\fpm383c.o: ..\User\stm32f10x_conf.h 8 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\fpm383c.o: ..\CMSIS\stm32f10x.h 10 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\fpm383c.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\fpm383c.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/fpm383c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/fpm383c.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/hc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/hc.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/hc.d: -------------------------------------------------------------------------------- 1 | .\objects\hc.o: ..\App\hc.c 2 | .\objects\hc.o: ..\App\main.h 3 | .\objects\hc.o: ..\CMSIS\stm32f10x.h 4 | .\objects\hc.o: ..\CMSIS\core_cm3.h 5 | .\objects\hc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\hc.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\hc.o: ..\User\stm32f10x_conf.h 8 | .\objects\hc.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\hc.o: ..\CMSIS\stm32f10x.h 10 | .\objects\hc.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\hc.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\hc.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\hc.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\hc.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\hc.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\hc.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\hc.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\hc.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\hc.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\hc.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\hc.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\hc.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\hc.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\hc.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\hc.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\hc.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\hc.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\hc.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\hc.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\hc.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\hc.o: ..\Library\inc\misc.h 32 | .\objects\hc.o: ..\App\lcd12864.h 33 | .\objects\hc.o: ..\App\delay.h 34 | .\objects\hc.o: ..\App\TIM.h 35 | .\objects\hc.o: ..\App\ADC.h 36 | .\objects\hc.o: ..\App\DHT.h 37 | .\objects\hc.o: ..\App\main.h 38 | .\objects\hc.o: ..\App\LED.h 39 | .\objects\hc.o: ..\App\PWM.h 40 | .\objects\hc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\hc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\hc.o: ..\App\uart.h 43 | .\objects\hc.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\hc.o: ..\App\SYN6288.h 45 | .\objects\hc.o: ..\App\hc.h 46 | .\objects\hc.o: ..\App\HX711.h 47 | .\objects\hc.o: ..\App\RFID.h 48 | .\objects\hc.o: ..\App\KeyBoard.h 49 | .\objects\hc.o: ..\App\FPM383C.h 50 | .\objects\hc.o: ..\App\Beep.h 51 | .\objects\hc.o: ..\App\IWDG.h 52 | .\objects\hc.o: ..\App\oled.h 53 | .\objects\hc.o: ..\App\LM35.h 54 | .\objects\hc.o: ..\App\UART3.h 55 | .\objects\hc.o: ..\App\L298N.h 56 | .\objects\hc.o: ..\App\SG90.h 57 | .\objects\hc.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/hc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/hc.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/hx711.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/hx711.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/hx711.d: -------------------------------------------------------------------------------- 1 | .\objects\hx711.o: ..\App\HX711.c 2 | .\objects\hx711.o: ..\App\main.h 3 | .\objects\hx711.o: ..\CMSIS\stm32f10x.h 4 | .\objects\hx711.o: ..\CMSIS\core_cm3.h 5 | .\objects\hx711.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\hx711.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\hx711.o: ..\User\stm32f10x_conf.h 8 | .\objects\hx711.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\hx711.o: ..\CMSIS\stm32f10x.h 10 | .\objects\hx711.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\hx711.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\hx711.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\hx711.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\hx711.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\hx711.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\hx711.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\hx711.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\hx711.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\hx711.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\hx711.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\hx711.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\hx711.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\hx711.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\hx711.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\hx711.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\hx711.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\hx711.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\hx711.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\hx711.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\hx711.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\hx711.o: ..\Library\inc\misc.h 32 | .\objects\hx711.o: ..\App\lcd12864.h 33 | .\objects\hx711.o: ..\App\delay.h 34 | .\objects\hx711.o: ..\App\TIM.h 35 | .\objects\hx711.o: ..\App\ADC.h 36 | .\objects\hx711.o: ..\App\DHT.h 37 | .\objects\hx711.o: ..\App\main.h 38 | .\objects\hx711.o: ..\App\LED.h 39 | .\objects\hx711.o: ..\App\PWM.h 40 | .\objects\hx711.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\hx711.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\hx711.o: ..\App\uart.h 43 | .\objects\hx711.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\hx711.o: ..\App\SYN6288.h 45 | .\objects\hx711.o: ..\App\hc.h 46 | .\objects\hx711.o: ..\App\HX711.h 47 | .\objects\hx711.o: ..\App\RFID.h 48 | .\objects\hx711.o: ..\App\KeyBoard.h 49 | .\objects\hx711.o: ..\App\FPM383C.h 50 | .\objects\hx711.o: ..\App\Beep.h 51 | .\objects\hx711.o: ..\App\IWDG.h 52 | .\objects\hx711.o: ..\App\oled.h 53 | .\objects\hx711.o: ..\App\LM35.h 54 | .\objects\hx711.o: ..\App\UART3.h 55 | .\objects\hx711.o: ..\App\L298N.h 56 | .\objects\hx711.o: ..\App\SG90.h 57 | .\objects\hx711.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/hx711.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/hx711.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/iwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/iwdg.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/iwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\iwdg.o: ..\App\IWDG.c 2 | .\objects\iwdg.o: ..\App\main.h 3 | .\objects\iwdg.o: ..\CMSIS\stm32f10x.h 4 | .\objects\iwdg.o: ..\CMSIS\core_cm3.h 5 | .\objects\iwdg.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\iwdg.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\iwdg.o: ..\User\stm32f10x_conf.h 8 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\iwdg.o: ..\CMSIS\stm32f10x.h 10 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\iwdg.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\iwdg.o: ..\Library\inc\misc.h 32 | .\objects\iwdg.o: ..\App\lcd12864.h 33 | .\objects\iwdg.o: ..\App\delay.h 34 | .\objects\iwdg.o: ..\App\TIM.h 35 | .\objects\iwdg.o: ..\App\ADC.h 36 | .\objects\iwdg.o: ..\App\DHT.h 37 | .\objects\iwdg.o: ..\App\main.h 38 | .\objects\iwdg.o: ..\App\LED.h 39 | .\objects\iwdg.o: ..\App\PWM.h 40 | .\objects\iwdg.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\iwdg.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\iwdg.o: ..\App\uart.h 43 | .\objects\iwdg.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\iwdg.o: ..\App\SYN6288.h 45 | .\objects\iwdg.o: ..\App\hc.h 46 | .\objects\iwdg.o: ..\App\HX711.h 47 | .\objects\iwdg.o: ..\App\RFID.h 48 | .\objects\iwdg.o: ..\App\KeyBoard.h 49 | .\objects\iwdg.o: ..\App\FPM383C.h 50 | .\objects\iwdg.o: ..\App\Beep.h 51 | .\objects\iwdg.o: ..\App\IWDG.h 52 | .\objects\iwdg.o: ..\App\oled.h 53 | .\objects\iwdg.o: ..\App\LM35.h 54 | .\objects\iwdg.o: ..\App\UART3.h 55 | .\objects\iwdg.o: ..\App\L298N.h 56 | .\objects\iwdg.o: ..\App\SG90.h 57 | .\objects\iwdg.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/iwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/iwdg.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/keyboard.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/keyboard.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/keyboard.d: -------------------------------------------------------------------------------- 1 | .\objects\keyboard.o: ..\App\KeyBoard.c 2 | .\objects\keyboard.o: ..\App\main.h 3 | .\objects\keyboard.o: ..\CMSIS\stm32f10x.h 4 | .\objects\keyboard.o: ..\CMSIS\core_cm3.h 5 | .\objects\keyboard.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\keyboard.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\keyboard.o: ..\User\stm32f10x_conf.h 8 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\keyboard.o: ..\CMSIS\stm32f10x.h 10 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\keyboard.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\keyboard.o: ..\Library\inc\misc.h 32 | .\objects\keyboard.o: ..\App\lcd12864.h 33 | .\objects\keyboard.o: ..\App\delay.h 34 | .\objects\keyboard.o: ..\App\TIM.h 35 | .\objects\keyboard.o: ..\App\ADC.h 36 | .\objects\keyboard.o: ..\App\DHT.h 37 | .\objects\keyboard.o: ..\App\main.h 38 | .\objects\keyboard.o: ..\App\LED.h 39 | .\objects\keyboard.o: ..\App\PWM.h 40 | .\objects\keyboard.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\keyboard.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\keyboard.o: ..\App\uart.h 43 | .\objects\keyboard.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\keyboard.o: ..\App\SYN6288.h 45 | .\objects\keyboard.o: ..\App\hc.h 46 | .\objects\keyboard.o: ..\App\HX711.h 47 | .\objects\keyboard.o: ..\App\RFID.h 48 | .\objects\keyboard.o: ..\App\KeyBoard.h 49 | .\objects\keyboard.o: ..\App\FPM383C.h 50 | .\objects\keyboard.o: ..\App\Beep.h 51 | .\objects\keyboard.o: ..\App\IWDG.h 52 | .\objects\keyboard.o: ..\App\oled.h 53 | .\objects\keyboard.o: ..\App\LM35.h 54 | .\objects\keyboard.o: ..\App\UART3.h 55 | .\objects\keyboard.o: ..\App\L298N.h 56 | .\objects\keyboard.o: ..\App\SG90.h 57 | .\objects\keyboard.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/keyboard.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/keyboard.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/l298n.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/l298n.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/l298n.d: -------------------------------------------------------------------------------- 1 | .\objects\l298n.o: ..\App\L298N.c 2 | .\objects\l298n.o: ..\App\main.h 3 | .\objects\l298n.o: ..\CMSIS\stm32f10x.h 4 | .\objects\l298n.o: ..\CMSIS\core_cm3.h 5 | .\objects\l298n.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\l298n.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\l298n.o: ..\User\stm32f10x_conf.h 8 | .\objects\l298n.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\l298n.o: ..\CMSIS\stm32f10x.h 10 | .\objects\l298n.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\l298n.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\l298n.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\l298n.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\l298n.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\l298n.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\l298n.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\l298n.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\l298n.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\l298n.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\l298n.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\l298n.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\l298n.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\l298n.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\l298n.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\l298n.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\l298n.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\l298n.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\l298n.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\l298n.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\l298n.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\l298n.o: ..\Library\inc\misc.h 32 | .\objects\l298n.o: ..\App\lcd12864.h 33 | .\objects\l298n.o: ..\App\delay.h 34 | .\objects\l298n.o: ..\App\TIM.h 35 | .\objects\l298n.o: ..\App\ADC.h 36 | .\objects\l298n.o: ..\App\DHT.h 37 | .\objects\l298n.o: ..\App\main.h 38 | .\objects\l298n.o: ..\App\LED.h 39 | .\objects\l298n.o: ..\App\PWM.h 40 | .\objects\l298n.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\l298n.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\l298n.o: ..\App\uart.h 43 | .\objects\l298n.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\l298n.o: ..\App\SYN6288.h 45 | .\objects\l298n.o: ..\App\hc.h 46 | .\objects\l298n.o: ..\App\HX711.h 47 | .\objects\l298n.o: ..\App\RFID.h 48 | .\objects\l298n.o: ..\App\KeyBoard.h 49 | .\objects\l298n.o: ..\App\FPM383C.h 50 | .\objects\l298n.o: ..\App\Beep.h 51 | .\objects\l298n.o: ..\App\IWDG.h 52 | .\objects\l298n.o: ..\App\oled.h 53 | .\objects\l298n.o: ..\App\LM35.h 54 | .\objects\l298n.o: ..\App\UART3.h 55 | .\objects\l298n.o: ..\App\L298N.h 56 | .\objects\l298n.o: ..\App\SG90.h 57 | .\objects\l298n.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/l298n.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/l298n.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/lcd12864.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/lcd12864.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/lcd12864.d: -------------------------------------------------------------------------------- 1 | .\objects\lcd12864.o: ..\App\lcd12864.c 2 | .\objects\lcd12864.o: ..\App\lcd12864.h 3 | .\objects\lcd12864.o: ..\CMSIS\stm32f10x.h 4 | .\objects\lcd12864.o: ..\CMSIS\core_cm3.h 5 | .\objects\lcd12864.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\lcd12864.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\lcd12864.o: ..\User\stm32f10x_conf.h 8 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\lcd12864.o: ..\CMSIS\stm32f10x.h 10 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\lcd12864.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\lcd12864.o: ..\Library\inc\misc.h 32 | .\objects\lcd12864.o: ..\App\delay.h 33 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/lcd12864.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/lcd12864.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/led.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/led.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/led.d: -------------------------------------------------------------------------------- 1 | .\objects\led.o: ..\App\LED.c 2 | .\objects\led.o: ..\App\main.h 3 | .\objects\led.o: ..\CMSIS\stm32f10x.h 4 | .\objects\led.o: ..\CMSIS\core_cm3.h 5 | .\objects\led.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\led.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\led.o: ..\User\stm32f10x_conf.h 8 | .\objects\led.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\led.o: ..\CMSIS\stm32f10x.h 10 | .\objects\led.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\led.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\led.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\led.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\led.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\led.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\led.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\led.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\led.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\led.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\led.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\led.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\led.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\led.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\led.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\led.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\led.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\led.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\led.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\led.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\led.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\led.o: ..\Library\inc\misc.h 32 | .\objects\led.o: ..\App\lcd12864.h 33 | .\objects\led.o: ..\App\delay.h 34 | .\objects\led.o: ..\App\TIM.h 35 | .\objects\led.o: ..\App\ADC.h 36 | .\objects\led.o: ..\App\DHT.h 37 | .\objects\led.o: ..\App\main.h 38 | .\objects\led.o: ..\App\LED.h 39 | .\objects\led.o: ..\App\PWM.h 40 | .\objects\led.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\led.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\led.o: ..\App\uart.h 43 | .\objects\led.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\led.o: ..\App\SYN6288.h 45 | .\objects\led.o: ..\App\hc.h 46 | .\objects\led.o: ..\App\HX711.h 47 | .\objects\led.o: ..\App\RFID.h 48 | .\objects\led.o: ..\App\KeyBoard.h 49 | .\objects\led.o: ..\App\FPM383C.h 50 | .\objects\led.o: ..\App\Beep.h 51 | .\objects\led.o: ..\App\IWDG.h 52 | .\objects\led.o: ..\App\oled.h 53 | .\objects\led.o: ..\App\LM35.h 54 | .\objects\led.o: ..\App\UART3.h 55 | .\objects\led.o: ..\App\L298N.h 56 | .\objects\led.o: ..\App\SG90.h 57 | .\objects\led.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/led.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/led.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/lm35.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/lm35.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/lm35.d: -------------------------------------------------------------------------------- 1 | .\objects\lm35.o: ..\App\LM35.c 2 | .\objects\lm35.o: ..\App\main.h 3 | .\objects\lm35.o: ..\CMSIS\stm32f10x.h 4 | .\objects\lm35.o: ..\CMSIS\core_cm3.h 5 | .\objects\lm35.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\lm35.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\lm35.o: ..\User\stm32f10x_conf.h 8 | .\objects\lm35.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\lm35.o: ..\CMSIS\stm32f10x.h 10 | .\objects\lm35.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\lm35.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\lm35.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\lm35.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\lm35.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\lm35.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\lm35.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\lm35.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\lm35.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\lm35.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\lm35.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\lm35.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\lm35.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\lm35.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\lm35.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\lm35.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\lm35.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\lm35.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\lm35.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\lm35.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\lm35.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\lm35.o: ..\Library\inc\misc.h 32 | .\objects\lm35.o: ..\App\lcd12864.h 33 | .\objects\lm35.o: ..\App\delay.h 34 | .\objects\lm35.o: ..\App\TIM.h 35 | .\objects\lm35.o: ..\App\ADC.h 36 | .\objects\lm35.o: ..\App\DHT.h 37 | .\objects\lm35.o: ..\App\main.h 38 | .\objects\lm35.o: ..\App\LED.h 39 | .\objects\lm35.o: ..\App\PWM.h 40 | .\objects\lm35.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\lm35.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\lm35.o: ..\App\uart.h 43 | .\objects\lm35.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\lm35.o: ..\App\SYN6288.h 45 | .\objects\lm35.o: ..\App\hc.h 46 | .\objects\lm35.o: ..\App\HX711.h 47 | .\objects\lm35.o: ..\App\RFID.h 48 | .\objects\lm35.o: ..\App\KeyBoard.h 49 | .\objects\lm35.o: ..\App\FPM383C.h 50 | .\objects\lm35.o: ..\App\Beep.h 51 | .\objects\lm35.o: ..\App\IWDG.h 52 | .\objects\lm35.o: ..\App\oled.h 53 | .\objects\lm35.o: ..\App\LM35.h 54 | .\objects\lm35.o: ..\App\UART3.h 55 | .\objects\lm35.o: ..\App\L298N.h 56 | .\objects\lm35.o: ..\App\SG90.h 57 | .\objects\lm35.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/lm35.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/lm35.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/main.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/main.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/main.d: -------------------------------------------------------------------------------- 1 | .\objects\main.o: ..\User\main.c 2 | .\objects\main.o: ..\User\main.h 3 | .\objects\main.o: ..\CMSIS\stm32f10x.h 4 | .\objects\main.o: ..\CMSIS\core_cm3.h 5 | .\objects\main.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\main.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\main.o: ..\User\stm32f10x_conf.h 8 | .\objects\main.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\main.o: ..\CMSIS\stm32f10x.h 10 | .\objects\main.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\main.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\main.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\main.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\main.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\main.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\main.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\main.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\main.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\main.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\main.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\main.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\main.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\main.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\main.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\main.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\main.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\main.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\main.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\main.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\main.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\main.o: ..\Library\inc\misc.h 32 | .\objects\main.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 33 | .\objects\main.o: ..\App\delay.h 34 | .\objects\main.o: ..\User\main.h 35 | .\objects\main.o: ..\App\DHT11.h 36 | .\objects\main.o: ..\App\oled.h 37 | .\objects\main.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 38 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/main.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/misc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/misc.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/misc.d: -------------------------------------------------------------------------------- 1 | .\objects\misc.o: ..\Library\src\misc.c 2 | .\objects\misc.o: ..\Library\inc\misc.h 3 | .\objects\misc.o: ..\CMSIS\stm32f10x.h 4 | .\objects\misc.o: ..\CMSIS\core_cm3.h 5 | .\objects\misc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\misc.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\misc.o: ..\User\stm32f10x_conf.h 8 | .\objects\misc.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\misc.o: ..\CMSIS\stm32f10x.h 10 | .\objects\misc.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\misc.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\misc.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\misc.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\misc.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\misc.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\misc.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\misc.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\misc.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\misc.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\misc.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\misc.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\misc.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\misc.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\misc.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\misc.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\misc.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\misc.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\misc.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\misc.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\misc.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\misc.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/misc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/misc.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/motor.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/motor.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/motor.d: -------------------------------------------------------------------------------- 1 | .\objects\motor.o: ..\App\Motor.c 2 | .\objects\motor.o: ..\App\main.h 3 | .\objects\motor.o: ..\CMSIS\stm32f10x.h 4 | .\objects\motor.o: ..\CMSIS\core_cm3.h 5 | .\objects\motor.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\motor.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\motor.o: ..\User\stm32f10x_conf.h 8 | .\objects\motor.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\motor.o: ..\CMSIS\stm32f10x.h 10 | .\objects\motor.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\motor.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\motor.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\motor.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\motor.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\motor.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\motor.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\motor.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\motor.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\motor.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\motor.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\motor.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\motor.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\motor.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\motor.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\motor.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\motor.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\motor.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\motor.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\motor.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\motor.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\motor.o: ..\Library\inc\misc.h 32 | .\objects\motor.o: ..\App\lcd12864.h 33 | .\objects\motor.o: ..\App\delay.h 34 | .\objects\motor.o: ..\App\TIM.h 35 | .\objects\motor.o: ..\App\ADC.h 36 | .\objects\motor.o: ..\App\DHT.h 37 | .\objects\motor.o: ..\App\main.h 38 | .\objects\motor.o: ..\App\LED.h 39 | .\objects\motor.o: ..\App\PWM.h 40 | .\objects\motor.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\motor.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\motor.o: ..\App\uart.h 43 | .\objects\motor.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\motor.o: ..\App\SYN6288.h 45 | .\objects\motor.o: ..\App\hc.h 46 | .\objects\motor.o: ..\App\HX711.h 47 | .\objects\motor.o: ..\App\RFID.h 48 | .\objects\motor.o: ..\App\KeyBoard.h 49 | .\objects\motor.o: ..\App\FPM383C.h 50 | .\objects\motor.o: ..\App\Beep.h 51 | .\objects\motor.o: ..\App\IWDG.h 52 | .\objects\motor.o: ..\App\oled.h 53 | .\objects\motor.o: ..\App\LM35.h 54 | .\objects\motor.o: ..\App\UART3.h 55 | .\objects\motor.o: ..\App\L298N.h 56 | .\objects\motor.o: ..\App\SG90.h 57 | .\objects\motor.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/motor.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/motor.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/nvic.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/nvic.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/nvic.d: -------------------------------------------------------------------------------- 1 | .\objects\nvic.o: ..\App\NVIC.c 2 | .\objects\nvic.o: ..\App\main.h 3 | .\objects\nvic.o: ..\CMSIS\stm32f10x.h 4 | .\objects\nvic.o: ..\CMSIS\core_cm3.h 5 | .\objects\nvic.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\nvic.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\nvic.o: ..\User\stm32f10x_conf.h 8 | .\objects\nvic.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\nvic.o: ..\CMSIS\stm32f10x.h 10 | .\objects\nvic.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\nvic.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\nvic.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\nvic.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\nvic.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\nvic.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\nvic.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\nvic.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\nvic.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\nvic.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\nvic.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\nvic.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\nvic.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\nvic.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\nvic.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\nvic.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\nvic.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\nvic.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\nvic.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\nvic.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\nvic.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\nvic.o: ..\Library\inc\misc.h 32 | .\objects\nvic.o: ..\App\lcd12864.h 33 | .\objects\nvic.o: ..\App\delay.h 34 | .\objects\nvic.o: ..\App\TIM.h 35 | .\objects\nvic.o: ..\App\ADC.h 36 | .\objects\nvic.o: ..\App\DHT.h 37 | .\objects\nvic.o: ..\App\main.h 38 | .\objects\nvic.o: ..\App\LED.h 39 | .\objects\nvic.o: ..\App\PWM.h 40 | .\objects\nvic.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\nvic.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\nvic.o: ..\App\uart.h 43 | .\objects\nvic.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\nvic.o: ..\App\SYN6288.h 45 | .\objects\nvic.o: ..\App\hc.h 46 | .\objects\nvic.o: ..\App\HX711.h 47 | .\objects\nvic.o: ..\App\RFID.h 48 | .\objects\nvic.o: ..\App\KeyBoard.h 49 | .\objects\nvic.o: ..\App\FPM383C.h 50 | .\objects\nvic.o: ..\App\Beep.h 51 | .\objects\nvic.o: ..\App\IWDG.h 52 | .\objects\nvic.o: ..\App\oled.h 53 | .\objects\nvic.o: ..\App\LM35.h 54 | .\objects\nvic.o: ..\App\UART3.h 55 | .\objects\nvic.o: ..\App\L298N.h 56 | .\objects\nvic.o: ..\App\SG90.h 57 | .\objects\nvic.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/nvic.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/nvic.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/oled.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/oled.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/oled.d: -------------------------------------------------------------------------------- 1 | .\objects\oled.o: ..\App\oled.c 2 | .\objects\oled.o: ..\App\oled.h 3 | .\objects\oled.o: ..\CMSIS\stm32f10x.h 4 | .\objects\oled.o: ..\CMSIS\core_cm3.h 5 | .\objects\oled.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\oled.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\oled.o: ..\User\stm32f10x_conf.h 8 | .\objects\oled.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\oled.o: ..\CMSIS\stm32f10x.h 10 | .\objects\oled.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\oled.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\oled.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\oled.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\oled.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\oled.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\oled.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\oled.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\oled.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\oled.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\oled.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\oled.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\oled.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\oled.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\oled.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\oled.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\oled.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\oled.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\oled.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\oled.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\oled.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\oled.o: ..\Library\inc\misc.h 32 | .\objects\oled.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 33 | .\objects\oled.o: ..\App\OLED_Font_Bmp.h 34 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/oled.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/oled.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/pwm.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/pwm.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/pwm.d: -------------------------------------------------------------------------------- 1 | .\objects\pwm.o: ..\App\PWM.c 2 | .\objects\pwm.o: ..\App\main.h 3 | .\objects\pwm.o: ..\CMSIS\stm32f10x.h 4 | .\objects\pwm.o: ..\CMSIS\core_cm3.h 5 | .\objects\pwm.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\pwm.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\pwm.o: ..\User\stm32f10x_conf.h 8 | .\objects\pwm.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\pwm.o: ..\CMSIS\stm32f10x.h 10 | .\objects\pwm.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\pwm.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\pwm.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\pwm.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\pwm.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\pwm.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\pwm.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\pwm.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\pwm.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\pwm.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\pwm.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\pwm.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\pwm.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\pwm.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\pwm.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\pwm.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\pwm.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\pwm.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\pwm.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\pwm.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\pwm.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\pwm.o: ..\Library\inc\misc.h 32 | .\objects\pwm.o: ..\App\lcd12864.h 33 | .\objects\pwm.o: ..\App\delay.h 34 | .\objects\pwm.o: ..\App\TIM.h 35 | .\objects\pwm.o: ..\App\ADC.h 36 | .\objects\pwm.o: ..\App\DHT.h 37 | .\objects\pwm.o: ..\App\main.h 38 | .\objects\pwm.o: ..\App\LED.h 39 | .\objects\pwm.o: ..\App\PWM.h 40 | .\objects\pwm.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\pwm.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\pwm.o: ..\App\uart.h 43 | .\objects\pwm.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\pwm.o: ..\App\SYN6288.h 45 | .\objects\pwm.o: ..\App\hc.h 46 | .\objects\pwm.o: ..\App\HX711.h 47 | .\objects\pwm.o: ..\App\RFID.h 48 | .\objects\pwm.o: ..\App\KeyBoard.h 49 | .\objects\pwm.o: ..\App\FPM383C.h 50 | .\objects\pwm.o: ..\App\Beep.h 51 | .\objects\pwm.o: ..\App\IWDG.h 52 | .\objects\pwm.o: ..\App\oled.h 53 | .\objects\pwm.o: ..\App\LM35.h 54 | .\objects\pwm.o: ..\App\UART3.h 55 | .\objects\pwm.o: ..\App\L298N.h 56 | .\objects\pwm.o: ..\App\SG90.h 57 | .\objects\pwm.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/pwm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/pwm.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/remote.d: -------------------------------------------------------------------------------- 1 | .\objects\remote.o: ..\App\Remote.c 2 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/rfid.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/rfid.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/rfid.d: -------------------------------------------------------------------------------- 1 | .\objects\rfid.o: ..\App\RFID.c 2 | .\objects\rfid.o: ..\App\main.h 3 | .\objects\rfid.o: ..\CMSIS\stm32f10x.h 4 | .\objects\rfid.o: ..\CMSIS\core_cm3.h 5 | .\objects\rfid.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\rfid.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\rfid.o: ..\User\stm32f10x_conf.h 8 | .\objects\rfid.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\rfid.o: ..\CMSIS\stm32f10x.h 10 | .\objects\rfid.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\rfid.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\rfid.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\rfid.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\rfid.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\rfid.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\rfid.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\rfid.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\rfid.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\rfid.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\rfid.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\rfid.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\rfid.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\rfid.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\rfid.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\rfid.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\rfid.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\rfid.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\rfid.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\rfid.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\rfid.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\rfid.o: ..\Library\inc\misc.h 32 | .\objects\rfid.o: ..\App\lcd12864.h 33 | .\objects\rfid.o: ..\App\delay.h 34 | .\objects\rfid.o: ..\App\TIM.h 35 | .\objects\rfid.o: ..\App\ADC.h 36 | .\objects\rfid.o: ..\App\DHT.h 37 | .\objects\rfid.o: ..\App\main.h 38 | .\objects\rfid.o: ..\App\LED.h 39 | .\objects\rfid.o: ..\App\PWM.h 40 | .\objects\rfid.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\rfid.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\rfid.o: ..\App\uart.h 43 | .\objects\rfid.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\rfid.o: ..\App\SYN6288.h 45 | .\objects\rfid.o: ..\App\hc.h 46 | .\objects\rfid.o: ..\App\HX711.h 47 | .\objects\rfid.o: ..\App\RFID.h 48 | .\objects\rfid.o: ..\App\KeyBoard.h 49 | .\objects\rfid.o: ..\App\FPM383C.h 50 | .\objects\rfid.o: ..\App\Beep.h 51 | .\objects\rfid.o: ..\App\IWDG.h 52 | .\objects\rfid.o: ..\App\oled.h 53 | .\objects\rfid.o: ..\App\LM35.h 54 | .\objects\rfid.o: ..\App\UART3.h 55 | .\objects\rfid.o: ..\App\L298N.h 56 | .\objects\rfid.o: ..\App\SG90.h 57 | .\objects\rfid.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/rfid.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/rfid.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/seg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/seg.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/seg.d: -------------------------------------------------------------------------------- 1 | .\objects\seg.o: ..\App\SEG.c 2 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/sg90.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/sg90.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/sg90.d: -------------------------------------------------------------------------------- 1 | .\objects\sg90.o: ..\App\SG90.c 2 | .\objects\sg90.o: ..\App\main.h 3 | .\objects\sg90.o: ..\CMSIS\stm32f10x.h 4 | .\objects\sg90.o: ..\CMSIS\core_cm3.h 5 | .\objects\sg90.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\sg90.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\sg90.o: ..\User\stm32f10x_conf.h 8 | .\objects\sg90.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\sg90.o: ..\CMSIS\stm32f10x.h 10 | .\objects\sg90.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\sg90.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\sg90.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\sg90.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\sg90.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\sg90.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\sg90.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\sg90.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\sg90.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\sg90.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\sg90.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\sg90.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\sg90.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\sg90.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\sg90.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\sg90.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\sg90.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\sg90.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\sg90.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\sg90.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\sg90.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\sg90.o: ..\Library\inc\misc.h 32 | .\objects\sg90.o: ..\App\lcd12864.h 33 | .\objects\sg90.o: ..\App\delay.h 34 | .\objects\sg90.o: ..\App\TIM.h 35 | .\objects\sg90.o: ..\App\ADC.h 36 | .\objects\sg90.o: ..\App\DHT.h 37 | .\objects\sg90.o: ..\App\main.h 38 | .\objects\sg90.o: ..\App\LED.h 39 | .\objects\sg90.o: ..\App\PWM.h 40 | .\objects\sg90.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\sg90.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\sg90.o: ..\App\uart.h 43 | .\objects\sg90.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\sg90.o: ..\App\SYN6288.h 45 | .\objects\sg90.o: ..\App\hc.h 46 | .\objects\sg90.o: ..\App\HX711.h 47 | .\objects\sg90.o: ..\App\RFID.h 48 | .\objects\sg90.o: ..\App\KeyBoard.h 49 | .\objects\sg90.o: ..\App\FPM383C.h 50 | .\objects\sg90.o: ..\App\Beep.h 51 | .\objects\sg90.o: ..\App\IWDG.h 52 | .\objects\sg90.o: ..\App\oled.h 53 | .\objects\sg90.o: ..\App\LM35.h 54 | .\objects\sg90.o: ..\App\UART3.h 55 | .\objects\sg90.o: ..\App\L298N.h 56 | .\objects\sg90.o: ..\App\SG90.h 57 | .\objects\sg90.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/sg90.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/sg90.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/startup_stm32f10x_hd.d: -------------------------------------------------------------------------------- 1 | .\objects\startup_stm32f10x_hd.o: ..\Startup\startup_stm32f10x_hd.s 2 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/startup_stm32f10x_hd.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/startup_stm32f10x_hd.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_adc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_adc.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_adc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_adc.o: ..\Library\src\stm32f10x_adc.c 2 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_adc.h 3 | .\objects\stm32f10x_adc.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_adc.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_adc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_adc.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_adc.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_bkp.h 10 | .\objects\stm32f10x_adc.o: ..\CMSIS\stm32f10x.h 11 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_adc.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_adc.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_adc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_adc.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_bkp.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_bkp.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_bkp.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_bkp.o: ..\Library\src\stm32f10x_bkp.c 2 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_bkp.h 3 | .\objects\stm32f10x_bkp.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_bkp.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_bkp.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_bkp.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_bkp.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_bkp.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_bkp.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_bkp.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_bkp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_bkp.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_can.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_can.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_can.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_can.o: ..\Library\src\stm32f10x_can.c 2 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_can.h 3 | .\objects\stm32f10x_can.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_can.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_can.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_can.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_can.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_can.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_can.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_can.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_can.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_can.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_cec.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_cec.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_cec.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_cec.o: ..\Library\src\stm32f10x_cec.c 2 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_cec.h 3 | .\objects\stm32f10x_cec.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_cec.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_cec.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_cec.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_cec.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_cec.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_cec.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_cec.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_cec.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_cec.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_crc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_crc.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_crc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_crc.o: ..\Library\src\stm32f10x_crc.c 2 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_crc.h 3 | .\objects\stm32f10x_crc.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_crc.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_crc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_crc.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_crc.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_crc.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_crc.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_crc.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_crc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_crc.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dac.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_dac.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dac.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_dac.o: ..\Library\src\stm32f10x_dac.c 2 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_dac.h 3 | .\objects\stm32f10x_dac.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_dac.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_dac.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_dac.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_dac.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_dac.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_dac.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_dac.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_dac.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dbgmcu.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_dbgmcu.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dbgmcu.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_dbgmcu.o: ..\Library\src\stm32f10x_dbgmcu.c 2 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_dbgmcu.h 3 | .\objects\stm32f10x_dbgmcu.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_dbgmcu.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_dbgmcu.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_dbgmcu.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_dbgmcu.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_dbgmcu.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_dbgmcu.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dbgmcu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_dbgmcu.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dma.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_dma.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dma.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_dma.o: ..\Library\src\stm32f10x_dma.c 2 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_dma.h 3 | .\objects\stm32f10x_dma.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_dma.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_dma.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_dma.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_dma.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_dma.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_dma.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_dma.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_dma.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_dma.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_exti.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_exti.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_exti.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_exti.o: ..\Library\src\stm32f10x_exti.c 2 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_exti.h 3 | .\objects\stm32f10x_exti.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_exti.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_exti.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_exti.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_exti.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_exti.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_exti.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_exti.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_exti.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_exti.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_flash.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_flash.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_flash.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_flash.o: ..\Library\src\stm32f10x_flash.c 2 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_flash.h 3 | .\objects\stm32f10x_flash.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_flash.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_flash.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_flash.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_flash.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_flash.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_flash.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_flash.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_flash.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_flash.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_fsmc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_fsmc.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_fsmc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_fsmc.o: ..\Library\src\stm32f10x_fsmc.c 2 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_fsmc.h 3 | .\objects\stm32f10x_fsmc.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_fsmc.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_fsmc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_fsmc.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_fsmc.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_fsmc.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_fsmc.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_fsmc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_fsmc.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_gpio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_gpio.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_gpio.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_gpio.o: ..\Library\src\stm32f10x_gpio.c 2 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_gpio.h 3 | .\objects\stm32f10x_gpio.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_gpio.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_gpio.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_gpio.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_gpio.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_gpio.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_gpio.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_gpio.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_gpio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_gpio.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_i2c.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_i2c.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_i2c.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_i2c.o: ..\Library\src\stm32f10x_i2c.c 2 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_i2c.h 3 | .\objects\stm32f10x_i2c.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_i2c.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_i2c.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_i2c.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_i2c.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_i2c.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_i2c.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_i2c.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_i2c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_i2c.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_it.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_it.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_it.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_it.o: ..\User\stm32f10x_it.c 2 | .\objects\stm32f10x_it.o: ..\User\stm32f10x_it.h 3 | .\objects\stm32f10x_it.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_it.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_it.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_it.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_it.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_it.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_it.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_it.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_it.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_it.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_iwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_iwdg.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_iwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_iwdg.o: ..\Library\src\stm32f10x_iwdg.c 2 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_iwdg.h 3 | .\objects\stm32f10x_iwdg.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_iwdg.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_iwdg.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_iwdg.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_iwdg.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_iwdg.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_iwdg.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_iwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_iwdg.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_pwr.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_pwr.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_pwr.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_pwr.o: ..\Library\src\stm32f10x_pwr.c 2 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_pwr.h 3 | .\objects\stm32f10x_pwr.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_pwr.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_pwr.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_pwr.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_pwr.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_pwr.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_pwr.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_pwr.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_pwr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_pwr.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_rcc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_rcc.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_rcc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_rcc.o: ..\Library\src\stm32f10x_rcc.c 2 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_rcc.h 3 | .\objects\stm32f10x_rcc.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_rcc.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_rcc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_rcc.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_rcc.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_rcc.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_rcc.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_rcc.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_rcc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_rcc.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_rtc.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_rtc.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_rtc.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_rtc.o: ..\Library\src\stm32f10x_rtc.c 2 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_rtc.h 3 | .\objects\stm32f10x_rtc.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_rtc.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_rtc.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_rtc.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_rtc.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_rtc.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_rtc.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_rtc.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_rtc.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_rtc.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_sdio.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_sdio.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_sdio.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_sdio.o: ..\Library\src\stm32f10x_sdio.c 2 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_sdio.h 3 | .\objects\stm32f10x_sdio.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_sdio.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_sdio.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_sdio.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_sdio.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_sdio.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_sdio.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_sdio.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_sdio.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_sdio.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_spi.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_spi.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_spi.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_spi.o: ..\Library\src\stm32f10x_spi.c 2 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_spi.h 3 | .\objects\stm32f10x_spi.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_spi.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_spi.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_spi.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_spi.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_spi.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_spi.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_spi.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_spi.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_spi.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_tim.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_tim.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_tim.o: ..\Library\src\stm32f10x_tim.c 2 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_tim.h 3 | .\objects\stm32f10x_tim.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_tim.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_tim.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_tim.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_tim.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_tim.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_tim.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_tim.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_tim.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_usart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_usart.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_usart.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_usart.o: ..\Library\src\stm32f10x_usart.c 2 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_usart.h 3 | .\objects\stm32f10x_usart.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_usart.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_usart.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_usart.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_usart.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_usart.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_usart.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_usart.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_usart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_usart.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_wwdg.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_wwdg.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_wwdg.d: -------------------------------------------------------------------------------- 1 | .\objects\stm32f10x_wwdg.o: ..\Library\src\stm32f10x_wwdg.c 2 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_wwdg.h 3 | .\objects\stm32f10x_wwdg.o: ..\CMSIS\stm32f10x.h 4 | .\objects\stm32f10x_wwdg.o: ..\CMSIS\core_cm3.h 5 | .\objects\stm32f10x_wwdg.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\stm32f10x_wwdg.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\stm32f10x_wwdg.o: ..\User\stm32f10x_conf.h 8 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\stm32f10x_wwdg.o: ..\CMSIS\stm32f10x.h 10 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\stm32f10x_wwdg.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/stm32f10x_wwdg.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/stm32f10x_wwdg.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/syn6288.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/syn6288.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/syn6288.d: -------------------------------------------------------------------------------- 1 | .\objects\syn6288.o: ..\App\SYN6288.c 2 | .\objects\syn6288.o: ..\App\main.h 3 | .\objects\syn6288.o: ..\CMSIS\stm32f10x.h 4 | .\objects\syn6288.o: ..\CMSIS\core_cm3.h 5 | .\objects\syn6288.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\syn6288.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\syn6288.o: ..\User\stm32f10x_conf.h 8 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\syn6288.o: ..\CMSIS\stm32f10x.h 10 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\syn6288.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\syn6288.o: ..\Library\inc\misc.h 32 | .\objects\syn6288.o: ..\App\lcd12864.h 33 | .\objects\syn6288.o: ..\App\delay.h 34 | .\objects\syn6288.o: ..\App\TIM.h 35 | .\objects\syn6288.o: ..\App\ADC.h 36 | .\objects\syn6288.o: ..\App\DHT.h 37 | .\objects\syn6288.o: ..\App\main.h 38 | .\objects\syn6288.o: ..\App\LED.h 39 | .\objects\syn6288.o: ..\App\PWM.h 40 | .\objects\syn6288.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\syn6288.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\syn6288.o: ..\App\uart.h 43 | .\objects\syn6288.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\syn6288.o: ..\App\SYN6288.h 45 | .\objects\syn6288.o: ..\App\hc.h 46 | .\objects\syn6288.o: ..\App\HX711.h 47 | .\objects\syn6288.o: ..\App\RFID.h 48 | .\objects\syn6288.o: ..\App\KeyBoard.h 49 | .\objects\syn6288.o: ..\App\FPM383C.h 50 | .\objects\syn6288.o: ..\App\Beep.h 51 | .\objects\syn6288.o: ..\App\IWDG.h 52 | .\objects\syn6288.o: ..\App\oled.h 53 | .\objects\syn6288.o: ..\App\LM35.h 54 | .\objects\syn6288.o: ..\App\UART3.h 55 | .\objects\syn6288.o: ..\App\L298N.h 56 | .\objects\syn6288.o: ..\App\SG90.h 57 | .\objects\syn6288.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/syn6288.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/syn6288.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/system_stm32f10x.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/system_stm32f10x.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/system_stm32f10x.d: -------------------------------------------------------------------------------- 1 | .\objects\system_stm32f10x.o: ..\CMSIS\system_stm32f10x.c 2 | .\objects\system_stm32f10x.o: ..\CMSIS\stm32f10x.h 3 | .\objects\system_stm32f10x.o: ..\CMSIS\core_cm3.h 4 | .\objects\system_stm32f10x.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 5 | .\objects\system_stm32f10x.o: ..\CMSIS\system_stm32f10x.h 6 | .\objects\system_stm32f10x.o: ..\User\stm32f10x_conf.h 7 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_adc.h 8 | .\objects\system_stm32f10x.o: ..\CMSIS\stm32f10x.h 9 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_bkp.h 10 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_can.h 11 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_cec.h 12 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_crc.h 13 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_dac.h 14 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_dbgmcu.h 15 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_dma.h 16 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_exti.h 17 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_flash.h 18 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_fsmc.h 19 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_gpio.h 20 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_i2c.h 21 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_iwdg.h 22 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_pwr.h 23 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_rcc.h 24 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_rtc.h 25 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_sdio.h 26 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_spi.h 27 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_tim.h 28 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_usart.h 29 | .\objects\system_stm32f10x.o: ..\Library\inc\stm32f10x_wwdg.h 30 | .\objects\system_stm32f10x.o: ..\Library\inc\misc.h 31 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/system_stm32f10x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/system_stm32f10x.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/tim.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/tim.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/tim.d: -------------------------------------------------------------------------------- 1 | .\objects\tim.o: ..\App\TIM.c 2 | .\objects\tim.o: ..\App\TIM.h 3 | .\objects\tim.o: ..\CMSIS\stm32f10x.h 4 | .\objects\tim.o: ..\CMSIS\core_cm3.h 5 | .\objects\tim.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\tim.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\tim.o: ..\User\stm32f10x_conf.h 8 | .\objects\tim.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\tim.o: ..\CMSIS\stm32f10x.h 10 | .\objects\tim.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\tim.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\tim.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\tim.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\tim.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\tim.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\tim.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\tim.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\tim.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\tim.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\tim.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\tim.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\tim.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\tim.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\tim.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\tim.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\tim.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\tim.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\tim.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\tim.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\tim.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\tim.o: ..\Library\inc\misc.h 32 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/tim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/tim.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/uart.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/uart.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/uart.d: -------------------------------------------------------------------------------- 1 | .\objects\uart.o: ..\App\uart.c 2 | .\objects\uart.o: ..\App\main.h 3 | .\objects\uart.o: ..\CMSIS\stm32f10x.h 4 | .\objects\uart.o: ..\CMSIS\core_cm3.h 5 | .\objects\uart.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\uart.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\uart.o: ..\User\stm32f10x_conf.h 8 | .\objects\uart.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\uart.o: ..\CMSIS\stm32f10x.h 10 | .\objects\uart.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\uart.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\uart.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\uart.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\uart.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\uart.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\uart.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\uart.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\uart.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\uart.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\uart.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\uart.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\uart.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\uart.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\uart.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\uart.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\uart.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\uart.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\uart.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\uart.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\uart.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\uart.o: ..\Library\inc\misc.h 32 | .\objects\uart.o: ..\App\lcd12864.h 33 | .\objects\uart.o: ..\App\delay.h 34 | .\objects\uart.o: ..\App\TIM.h 35 | .\objects\uart.o: ..\App\ADC.h 36 | .\objects\uart.o: ..\App\DHT.h 37 | .\objects\uart.o: ..\App\main.h 38 | .\objects\uart.o: ..\App\LED.h 39 | .\objects\uart.o: ..\App\PWM.h 40 | .\objects\uart.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\uart.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\uart.o: ..\App\uart.h 43 | .\objects\uart.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\uart.o: ..\App\SYN6288.h 45 | .\objects\uart.o: ..\App\hc.h 46 | .\objects\uart.o: ..\App\HX711.h 47 | .\objects\uart.o: ..\App\RFID.h 48 | .\objects\uart.o: ..\App\KeyBoard.h 49 | .\objects\uart.o: ..\App\FPM383C.h 50 | .\objects\uart.o: ..\App\Beep.h 51 | .\objects\uart.o: ..\App\IWDG.h 52 | .\objects\uart.o: ..\App\oled.h 53 | .\objects\uart.o: ..\App\LM35.h 54 | .\objects\uart.o: ..\App\UART3.h 55 | .\objects\uart.o: ..\App\L298N.h 56 | .\objects\uart.o: ..\App\SG90.h 57 | .\objects\uart.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/uart.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/uart.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/uart3.crf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/uart3.crf -------------------------------------------------------------------------------- /参考代码/Project/Objects/uart3.d: -------------------------------------------------------------------------------- 1 | .\objects\uart3.o: ..\App\UART3.c 2 | .\objects\uart3.o: ..\App\main.h 3 | .\objects\uart3.o: ..\CMSIS\stm32f10x.h 4 | .\objects\uart3.o: ..\CMSIS\core_cm3.h 5 | .\objects\uart3.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdint.h 6 | .\objects\uart3.o: ..\CMSIS\system_stm32f10x.h 7 | .\objects\uart3.o: ..\User\stm32f10x_conf.h 8 | .\objects\uart3.o: ..\Library\inc\stm32f10x_adc.h 9 | .\objects\uart3.o: ..\CMSIS\stm32f10x.h 10 | .\objects\uart3.o: ..\Library\inc\stm32f10x_bkp.h 11 | .\objects\uart3.o: ..\Library\inc\stm32f10x_can.h 12 | .\objects\uart3.o: ..\Library\inc\stm32f10x_cec.h 13 | .\objects\uart3.o: ..\Library\inc\stm32f10x_crc.h 14 | .\objects\uart3.o: ..\Library\inc\stm32f10x_dac.h 15 | .\objects\uart3.o: ..\Library\inc\stm32f10x_dbgmcu.h 16 | .\objects\uart3.o: ..\Library\inc\stm32f10x_dma.h 17 | .\objects\uart3.o: ..\Library\inc\stm32f10x_exti.h 18 | .\objects\uart3.o: ..\Library\inc\stm32f10x_flash.h 19 | .\objects\uart3.o: ..\Library\inc\stm32f10x_fsmc.h 20 | .\objects\uart3.o: ..\Library\inc\stm32f10x_gpio.h 21 | .\objects\uart3.o: ..\Library\inc\stm32f10x_i2c.h 22 | .\objects\uart3.o: ..\Library\inc\stm32f10x_iwdg.h 23 | .\objects\uart3.o: ..\Library\inc\stm32f10x_pwr.h 24 | .\objects\uart3.o: ..\Library\inc\stm32f10x_rcc.h 25 | .\objects\uart3.o: ..\Library\inc\stm32f10x_rtc.h 26 | .\objects\uart3.o: ..\Library\inc\stm32f10x_sdio.h 27 | .\objects\uart3.o: ..\Library\inc\stm32f10x_spi.h 28 | .\objects\uart3.o: ..\Library\inc\stm32f10x_tim.h 29 | .\objects\uart3.o: ..\Library\inc\stm32f10x_usart.h 30 | .\objects\uart3.o: ..\Library\inc\stm32f10x_wwdg.h 31 | .\objects\uart3.o: ..\Library\inc\misc.h 32 | .\objects\uart3.o: ..\App\lcd12864.h 33 | .\objects\uart3.o: ..\App\delay.h 34 | .\objects\uart3.o: ..\App\TIM.h 35 | .\objects\uart3.o: ..\App\ADC.h 36 | .\objects\uart3.o: ..\App\DHT.h 37 | .\objects\uart3.o: ..\App\main.h 38 | .\objects\uart3.o: ..\App\LED.h 39 | .\objects\uart3.o: ..\App\PWM.h 40 | .\objects\uart3.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdio.h 41 | .\objects\uart3.o: C:\Keil\ARM\ARMCC\Bin\..\include\stdlib.h 42 | .\objects\uart3.o: ..\App\uart.h 43 | .\objects\uart3.o: C:\Keil\ARM\ARMCC\Bin\..\include\string.h 44 | .\objects\uart3.o: ..\App\SYN6288.h 45 | .\objects\uart3.o: ..\App\hc.h 46 | .\objects\uart3.o: ..\App\HX711.h 47 | .\objects\uart3.o: ..\App\RFID.h 48 | .\objects\uart3.o: ..\App\KeyBoard.h 49 | .\objects\uart3.o: ..\App\FPM383C.h 50 | .\objects\uart3.o: ..\App\Beep.h 51 | .\objects\uart3.o: ..\App\IWDG.h 52 | .\objects\uart3.o: ..\App\oled.h 53 | .\objects\uart3.o: ..\App\LM35.h 54 | .\objects\uart3.o: ..\App\UART3.h 55 | .\objects\uart3.o: ..\App\L298N.h 56 | .\objects\uart3.o: ..\App\SG90.h 57 | .\objects\uart3.o: ..\App\NVIC.h 58 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/uart3.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/uart3.o -------------------------------------------------------------------------------- /参考代码/Project/Objects/工程模板.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/工程模板.axf -------------------------------------------------------------------------------- /参考代码/Project/Objects/工程模板.build_log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/工程模板.build_log.htm -------------------------------------------------------------------------------- /参考代码/Project/Objects/工程模板.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/工程模板.htm -------------------------------------------------------------------------------- /参考代码/Project/Objects/工程模板.lnp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/工程模板.lnp -------------------------------------------------------------------------------- /参考代码/Project/Objects/工程模板.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 | -------------------------------------------------------------------------------- /参考代码/Project/Objects/工程模板_工程模板.dep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/参考代码/Project/Objects/工程模板_工程模板.dep -------------------------------------------------------------------------------- /参考代码/User/main.c: -------------------------------------------------------------------------------- 1 | #include "main.h" 2 | 3 | char str[20]; 4 | 5 | uint8_t DHT_Buffer[5]; 6 | 7 | int main(void) 8 | { 9 | OLED_Init(); 10 | while(1) 11 | { 12 | if(DHT_Get_Temp_Humi_Data(DHT_Buffer)) 13 | { 14 | sprintf(str,"Temp:%d.%d",DHT_Buffer[2],DHT_Buffer[3]); 15 | OLED_ShowString(28,2,(uint8_t *)str); 16 | sprintf(str,"Humi:%d.%d",DHT_Buffer[0],DHT_Buffer[1]); 17 | OLED_ShowString(28,4,(uint8_t *)str); 18 | } 19 | delay_ms(2000); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /参考代码/User/main.h: -------------------------------------------------------------------------------- 1 | #ifndef __MAIN_H 2 | #define __MAIN_H 3 | 4 | #include "stm32f10x.h" 5 | #include "stdio.h" 6 | #include "delay.h" 7 | 8 | #include "DHT11.h" 9 | #include "oled.h" 10 | 11 | 12 | #endif 13 | -------------------------------------------------------------------------------- /参考代码/User/stm32f10x_conf.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file Project/STM32F10x_StdPeriph_Template/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 Project/STM32F10x_StdPeriph_Template/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 9 | * peripherals 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 | void USART_SendString (USART_TypeDef *pUSARTx,char *str); 29 | 30 | /** @addtogroup STM32F10x_StdPeriph_Template 31 | * @{ 32 | */ 33 | 34 | /* Private typedef -----------------------------------------------------------*/ 35 | /* Private define ------------------------------------------------------------*/ 36 | /* Private macro -------------------------------------------------------------*/ 37 | /* Private variables ---------------------------------------------------------*/ 38 | /* Private function prototypes -----------------------------------------------*/ 39 | /* Private functions ---------------------------------------------------------*/ 40 | 41 | /******************************************************************************/ 42 | /* Cortex-M3 Processor Exceptions Handlers */ 43 | /******************************************************************************/ 44 | 45 | /** 46 | * @brief This function handles NMI exception. 47 | * @param None 48 | * @retval None 49 | */ 50 | void NMI_Handler(void) 51 | { 52 | } 53 | 54 | /** 55 | * @brief This function handles Hard Fault exception. 56 | * @param None 57 | * @retval None 58 | */ 59 | void HardFault_Handler(void) 60 | { 61 | /* Go to infinite loop when Hard Fault exception occurs */ 62 | while (1) 63 | { 64 | } 65 | } 66 | 67 | /** 68 | * @brief This function handles Memory Manage exception. 69 | * @param None 70 | * @retval None 71 | */ 72 | void MemManage_Handler(void) 73 | { 74 | /* Go to infinite loop when Memory Manage exception occurs */ 75 | while (1) 76 | { 77 | } 78 | } 79 | 80 | /** 81 | * @brief This function handles Bus Fault exception. 82 | * @param None 83 | * @retval None 84 | */ 85 | void BusFault_Handler(void) 86 | { 87 | /* Go to infinite loop when Bus Fault exception occurs */ 88 | while (1) 89 | { 90 | } 91 | } 92 | 93 | /** 94 | * @brief This function handles Usage Fault exception. 95 | * @param None 96 | * @retval None 97 | */ 98 | void UsageFault_Handler(void) 99 | { 100 | /* Go to infinite loop when Usage Fault exception occurs */ 101 | while (1) 102 | { 103 | } 104 | } 105 | 106 | /** 107 | * @brief This function handles SVCall exception. 108 | * @param None 109 | * @retval None 110 | */ 111 | void SVC_Handler(void) 112 | { 113 | } 114 | 115 | /** 116 | * @brief This function handles Debug Monitor exception. 117 | * @param None 118 | * @retval None 119 | */ 120 | void DebugMon_Handler(void) 121 | { 122 | } 123 | 124 | /** 125 | * @brief This function handles PendSVC exception. 126 | * @param None 127 | * @retval None 128 | */ 129 | void PendSV_Handler(void) 130 | { 131 | } 132 | 133 | /** 134 | * @brief This function handles SysTick Handler. 135 | * @param None 136 | * @retval None 137 | */ 138 | void SysTick_Handler(void) 139 | { 140 | } 141 | 142 | 143 | /******************************************************************************/ 144 | /* STM32F10x Peripherals Interrupt Handlers */ 145 | /* Add here the Interrupt Handler for the used peripheral(s) (PPP), for the */ 146 | /* available peripheral interrupt handler's name please refer to the startup */ 147 | /* file (startup_stm32f10x_xx.s). */ 148 | /******************************************************************************/ 149 | 150 | /** 151 | * @brief This function handles PPP interrupt request. 152 | * @param None 153 | * @retval None 154 | */ 155 | 156 | /** 157 | * @} 158 | */ 159 | 160 | 161 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 162 | -------------------------------------------------------------------------------- /参考代码/User/stm32f10x_it.h: -------------------------------------------------------------------------------- 1 | /** 2 | ****************************************************************************** 3 | * @file Project/STM32F10x_StdPeriph_Template/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 | #ifdef __cplusplus 27 | extern "C" { 28 | #endif 29 | 30 | /* Includes ------------------------------------------------------------------*/ 31 | #include "stm32f10x.h" 32 | 33 | /* Exported types ------------------------------------------------------------*/ 34 | /* Exported constants --------------------------------------------------------*/ 35 | /* Exported macro ------------------------------------------------------------*/ 36 | /* Exported functions ------------------------------------------------------- */ 37 | 38 | void NMI_Handler(void); 39 | void HardFault_Handler(void); 40 | void MemManage_Handler(void); 41 | void BusFault_Handler(void); 42 | void UsageFault_Handler(void); 43 | void SVC_Handler(void); 44 | void DebugMon_Handler(void); 45 | void PendSV_Handler(void); 46 | void SysTick_Handler(void); 47 | 48 | #ifdef __cplusplus 49 | } 50 | #endif 51 | 52 | #endif /* __STM32F10x_IT_H */ 53 | 54 | /******************* (C) COPYRIGHT 2011 STMicroelectronics *****END OF FILE****/ 55 | -------------------------------------------------------------------------------- /数据手册/ASAIR-DHT11.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/l0086020/DHT11/c44962c7032de871e46916cac982b5662006a9ee/数据手册/ASAIR-DHT11.pdf --------------------------------------------------------------------------------