2021-10-24 20:14:55 索煒達(dá)電子 1032
項(xiàng)目編號(hào):E1733
文件大小:10M
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡(jiǎn)要概述:
基于模糊PID-可控硅調(diào)壓的溫度控制系統(tǒng)
目錄│文件列表:
└ TempControlSys
├ Temp_PID
│ └ Temp_PID
│ │ .mxproject
│ │ Temp_PID.ioc
│ ├ Drivers
│ │ ├ CMSIS
│ │ │ ├ Device
│ │ │ │ └ ST
│ │ │ │ └ STM32F1xx
│ │ │ │ ├ Include
│ │ │ │ │ │ stm32f103xb.h
│ │ │ │ │ │ stm32f1xx.h
│ │ │ │ │ └ system_stm32f1xx.h
│ │ │ └ Include
│ │ │ │ arm_common_tables.h
│ │ │ │ arm_const_structs.h
│ │ │ │ arm_math.h
│ │ │ │ cmsis_armcc.h
│ │ │ │ cmsis_armcc_V6.h
│ │ │ │ cmsis_gcc.h
│ │ │ │ core_cm0.h
│ │ │ │ core_cm0plus.h
│ │ │ │ core_cm3.h
│ │ │ │ core_cm4.h
│ │ │ │ core_cm7.h
│ │ │ │ core_cmFunc.h
│ │ │ │ core_cmInstr.h
│ │ │ │ core_cmSimd.h
│ │ │ │ core_sc000.h
│ │ │ └ core_sc300.h
│ │ └ STM32F1xx_HAL_Driver
│ │ ├ Inc
│ │ │ │ stm32f1xx_hal.h
│ │ │ │ stm32f1xx_hal_cortex.h
│ │ │ │ stm32f1xx_hal_def.h
│ │ │ │ stm32f1xx_hal_dma.h
│ │ │ │ stm32f1xx_hal_dma_ex.h
│ │ │ │ stm32f1xx_hal_flash.h
│ │ │ │ stm32f1xx_hal_flash_ex.h
│ │ │ │ stm32f1xx_hal_gpio.h
│ │ │ │ stm32f1xx_hal_gpio_ex.h
│ │ │ │ stm32f1xx_hal_pwr.h
│ │ │ │ stm32f1xx_hal_rcc.h
│ │ │ │ stm32f1xx_hal_rcc_ex.h
│ │ │ │ stm32f1xx_hal_tim.h
│ │ │ │ stm32f1xx_hal_tim_ex.h
│ │ │ │ stm32f1xx_hal_usart.h
│ │ │ └ Legacy
│ │ │ └ stm32_hal_legacy.h
│ │ └ Src
│ │ │ stm32f1xx_hal.c
│ │ │ stm32f1xx_hal_cortex.c
│ │ │ stm32f1xx_hal_dma.c
│ │ │ stm32f1xx_hal_flash.c
│ │ │ stm32f1xx_hal_flash_ex.c
│ │ │ stm32f1xx_hal_gpio.c
│ │ │ stm32f1xx_hal_gpio_ex.c
│ │ │ stm32f1xx_hal_pwr.c
│ │ │ stm32f1xx_hal_rcc.c
│ │ │ stm32f1xx_hal_rcc_ex.c
│ │ │ stm32f1xx_hal_tim.c
│ │ │ stm32f1xx_hal_tim_ex.c
│ │ └ stm32f1xx_hal_usart.c
│ ├ Inc
│ │ │ dma.h
│ │ │ DS18B20.h
│ │ │ FPID.h
│ │ │ FreeRTOSConfig.h
│ │ │ gpio.h
│ │ │ Key.h
│ │ │ LCD1602.h
│ │ │ main.h
│ │ │ stm32f1xx_hal_conf.h
│ │ │ stm32f1xx_it.h
│ │ │ Temp.h
│ │ │ tim.h
│ │ └ usart.h
│ ├ MDK-ARM
│ │ │ EventRecorderStub.scvd
│ │ │ startup_stm32f103xb.lst
│ │ │ startup_stm32f103xb.s
│ │ │ Temp_PID.uvguix.89335
│ │ │ Temp_PID.uvguix.Administrator
│ │ │ Temp_PID.uvguix.Cai'sComputer
│ │ │ Temp_PID.uvoptx
│ │ │ Temp_PID.uvprojx
│ │ ├ RTE
│ │ │ │ RTE_Components.h
│ │ │ └ _Temp_PID
│ │ │ └ RTE_Components.h
│ │ └ Temp_PID
│ │ │ cmsis_os.crf
│ │ │ cmsis_os.d
│ │ │ cmsis_os.o
│ │ │ croutine.crf
│ │ │ croutine.d
│ │ │ croutine.o
│ │ │ dma.crf
│ │ │ dma.d
│ │ │ dma.o
│ │ │ ds18b20.crf
│ │ │ ds18b20.d
│ │ │ ds18b20.o
│ │ │ event_groups.crf
│ │ │ event_groups.d
│ │ │ event_groups.o
│ │ │ ExtDll.iex
│ │ │ fpid.crf
│ │ │ fpid.d
│ │ │ fpid.o
│ │ │ freertos.crf
│ │ │ freertos.d
│ │ │ freertos.o
│ │ │ gpio.crf
│ │ │ gpio.d
│ │ │ gpio.o
│ │ │ heap_4.crf
│ │ │ heap_4.d
│ │ │ heap_4.o
│ │ │ key.crf
│ │ │ key.d
│ │ │ key.o
│ │ │ lcd1602.crf
│ │ │ lcd1602.d
│ │ │ lcd1602.o
│ │ │ list.crf
│ │ │ list.d
│ │ │ list.o
│ │ │ main.crf
│ │ │ main.d
│ │ │ main.o
│ │ │ port.crf
│ │ │ port.d
│ │ │ port.o
│ │ │ queue.crf
│ │ │ queue.d
│ │ │ queue.o
│ │ │ startup_stm32f103xb.d
│ │ │ startup_stm32f103xb.o
│ │ │ stm32f1xx_hal.crf
│ │ │ stm32f1xx_hal.d
│ │ │ stm32f1xx_hal.o
│ │ │ stm32f1xx_hal_cortex.crf
│ │ │ stm32f1xx_hal_cortex.d
│ │ │ stm32f1xx_hal_cortex.o
│ │ │ stm32f1xx_hal_dma.crf
│ │ │ stm32f1xx_hal_dma.d
│ │ │ stm32f1xx_hal_dma.o
│ │ │ stm32f1xx_hal_flash.crf
│ │ │ stm32f1xx_hal_flash.d
│ │ │ stm32f1xx_hal_flash.o
│ │ │ stm32f1xx_hal_flash_ex.crf
│ │ │ stm32f1xx_hal_flash_ex.d
│ │ │ stm32f1xx_hal_flash_ex.o
│ │ │ stm32f1xx_hal_gpio.crf
│ │ │ stm32f1xx_hal_gpio.d
│ │ │ stm32f1xx_hal_gpio.o
│ │ │ stm32f1xx_hal_gpio_ex.crf
│ │ │ stm32f1xx_hal_gpio_ex.d
│ │ │ stm32f1xx_hal_gpio_ex.o
│ │ │ stm32f1xx_hal_msp.crf
│ │ │ stm32f1xx_hal_msp.d
│ │ │ stm32f1xx_hal_msp.o
│ │ │ stm32f1xx_hal_pwr.crf
│ │ │ stm32f1xx_hal_pwr.d
│ │ │ stm32f1xx_hal_pwr.o
│ │ │ stm32f1xx_hal_rcc.crf
│ │ │ stm32f1xx_hal_rcc.d
│ │ │ stm32f1xx_hal_rcc.o
│ │ │ stm32f1xx_hal_rcc_ex.crf
│ │ │ stm32f1xx_hal_rcc_ex.d
│ │ │ stm32f1xx_hal_rcc_ex.o
│ │ │ stm32f1xx_hal_tim.crf
│ │ │ stm32f1xx_hal_tim.d
│ │ │ stm32f1xx_hal_tim.o
│ │ │ stm32f1xx_hal_timebase_tim.crf
│ │ │ stm32f1xx_hal_timebase_tim.d
│ │ │ stm32f1xx_hal_timebase_tim.o
│ │ │ stm32f1xx_hal_tim_ex.crf
│ │ │ stm32f1xx_hal_tim_ex.d
│ │ │ stm32f1xx_hal_tim_ex.o
│ │ │ stm32f1xx_hal_usart.crf
│ │ │ stm32f1xx_hal_usart.d
│ │ │ stm32f1xx_hal_usart.o
│ │ │ stm32f1xx_it.crf
│ │ │ stm32f1xx_it.d
│ │ │ stm32f1xx_it.o
│ │ │ system_stm32f1xx.crf
│ │ │ system_stm32f1xx.d
│ │ │ system_stm32f1xx.o
│ │ │ tasks.crf
│ │ │ tasks.d
│ │ │ tasks.o
│ │ │ temp.crf
│ │ │ temp.d
│ │ │ temp.o
│ │ │ Temp_PID.axf
│ │ │ Temp_PID.build_log.htm
│ │ │ Temp_PID.hex
│ │ │ Temp_PID.htm
│ │ │ Temp_PID.lnp
│ │ │ Temp_PID.map
│ │ │ Temp_PID.sct
│ │ │ Temp_PID_Temp_PID.dep
│ │ │ tim.crf
│ │ │ tim.d
│ │ │ tim.o
│ │ │ timers.crf
│ │ │ timers.d
│ │ │ timers.o
│ │ │ usart.crf
│ │ │ usart.d
│ │ └ usart.o
│ ├ Middlewares
│ │ └ Third_Party
│ │ └ FreeRTOS
│ │ └ Source
│ │ │ croutine.c
│ │ │ event_groups.c
│ │ │ list.c
│ │ │ queue.c
│ │ │ tasks.c
│ │ │ timers.c
│ │ ├ CMSIS_RTOS
│ │ │ │ cmsis_os.c
│ │ │ └ cmsis_os.h
│ │ ├ include
│ │ │ │ croutine.h
│ │ │ │ deprecated_definitions.h
│ │ │ │ event_groups.h
│ │ │ │ FreeRTOS.h
│ │ │ │ list.h
│ │ │ │ mpu_prototypes.h
│ │ │ │ mpu_wrappers.h
│ │ │ │ portable.h
│ │ │ │ projdefs.h