2021-11-22 14:05:16 索煒達電子 840
項目編號:E2398
文件大小:2.6M
源碼說明:帶中文注釋
開發(fā)環(huán)境:C編譯器
簡要概述
STM32單片機溫度,電壓,電流測量及上下限設置PCB文件+源程序
目錄│文件列表:
└ 資料合集測量
├ PCB
│ │ debug.log
│ │ PCB_Project1.PrjPCB
│ │ PCB_Project1.PrjPCBStructure
│ ├ PCB_Project
│ │ │ 測量.PcbDoc
│ │ └ 測量.SchDoc
│ └ Project Logs for PCB_Project1
│ │ 測量 PCB ECO 2019-5-14 0-41-08.LOG
│ │ 測量 PCB ECO 2019-5-14 0-41-41.LOG
│ │ 測量 PCB ECO 2019-5-14 0-46-28.LOG
│ │ 測量 PCB ECO 2019-5-14 0-47-59.LOG
│ │ 測量 PCB ECO 2019-5-14 0-49-48.LOG
│ │ 測量 PCB ECO 2019-5-14 1-01-26.LOG
│ │ 測量 PCB ECO 2019-5-14 1-06-44.LOG
│ │ 測量 PCB ECO 2019-5-14 1-12-51.LOG
│ │ 測量 PCB ECO 2019-5-14 1-14-09.LOG
│ │ 測量 PCB ECO 2019-5-14 1-14-30.LOG
│ │ 測量 PCB ECO 2019-5-14 1-16-59.LOG
│ │ 測量 SCH ECO 2019-5-14 0-35-08.LOG
│ │ 測量 SCH ECO 2019-5-14 0-47-55.LOG
│ └ 測量 SCH ECO 2019-5-14 0-49-36.LOG
└ 測量
│ ADC IO 匯總.jpg
│ keilkill.bat
├ Libraries
│ ├ CMSIS
│ │ │ core_cm3.c
│ │ │ core_cm3.h
│ │ │ stm32f10x.h
│ │ │ system_stm32f10x.c
│ │ │ system_stm32f10x.h
│ │ └ startup
│ │ │ startup_stm32f10x_cl.s
│ │ │ startup_stm32f10x_hd.s
│ │ │ startup_stm32f10x_hd_vl.s
│ │ │ startup_stm32f10x_ld.s
│ │ │ startup_stm32f10x_ld_vl.s
│ │ │ startup_stm32f10x_md.s
│ │ │ startup_stm32f10x_md_vl.s
│ │ └ startup_stm32f10x_xl.s
│ └ FWlib
│ ├ inc
│ │ │ misc.h
│ │ │ stm32f10x_adc.h
│ │ │ stm32f10x_bkp.h
│ │ │ stm32f10x_can.h
│ │ │ stm32f10x_cec.h
│ │ │ stm32f10x_crc.h
│ │ │ stm32f10x_dac.h
│ │ │ stm32f10x_dbgmcu.h
│ │ │ stm32f10x_dma.h
│ │ │ stm32f10x_exti.h
│ │ │ stm32f10x_flash.h
│ │ │ stm32f10x_fsmc.h
│ │ │ stm32f10x_gpio.h
│ │ │ stm32f10x_i2c.h
│ │ │ stm32f10x_iwdg.h
│ │ │ stm32f10x_pwr.h
│ │ │ stm32f10x_rcc.h
│ │ │ stm32f10x_rtc.h
│ │ │ stm32f10x_sdio.h
│ │ │ stm32f10x_spi.h
│ │ │ stm32f10x_tim.h
│ │ │ stm32f10x_usart.h
│ │ └ stm32f10x_wwdg.h
│ └ src
│ │ misc.c
│ │ stm32f10x_adc.c
│ │ stm32f10x_bkp.c
│ │ stm32f10x_can.c
│ │ stm32f10x_cec.c
│ │ stm32f10x_crc.c
│ │ stm32f10x_dac.c
│ │ stm32f10x_dbgmcu.c
│ │ stm32f10x_dma.c
│ │ stm32f10x_exti.c
│ │ stm32f10x_flash.c
│ │ stm32f10x_fsmc.c
│ │ stm32f10x_gpio.c
│ │ stm32f10x_i2c.c
│ │ stm32f10x_iwdg.c
│ │ stm32f10x_pwr.c
│ │ stm32f10x_rcc.c
│ │ stm32f10x_rtc.c
│ │ stm32f10x_sdio.c
│ │ stm32f10x_spi.c
│ │ stm32f10x_tim.c
│ │ stm32f10x_usart.c
│ └ stm32f10x_wwdg.c
├ Output
│ │ ADC-多通道-DMA讀取.hex
│ └ ADC-多通道-DMA讀取.sct
├ Project
│ └ RVMDK(uv5)
│ │ BH-F103.uvguix.ang99
│ │ BH-F103.uvguix.ERRUN
│ │ BH-F103.uvoptx
│ │ BH-F103.uvprojx
│ │ EventRecorderStub.scvd
│ │ JLinkSettings.ini
│ ├ DebugConfig
│ │ │ ADC-______-DMA_____STM32F103ZE_1.0.0.dbgconf
│ │ │ _________STM32F103C8_1.0.0.dbgconf
│ │ └ _________STM32F103ZE_1.0.0.dbgconf
│ └ RTE
│ └ RTE_Components.h
└ User
│ codetab.h
│ main.c
│ stm32f10x_conf.h
│ stm32f10x_it.c
│ stm32f10x_it.h
├ adc
│ │ bsp_adc.c
│ └ bsp_adc.h
├ Buzz
│ │ bsp_buzz.c
│ └ bsp_buzz.h
├ Che
│ │ bsp_che.c
│ └ bsp_che.h
├ ds18b20
│ │ bsp_ds18b20.c
│ └ bsp_ds18b20.h
├ IIC
│ │ bsp_i2c_gpio.c
│ └ bsp_i2c_gpio.h
├ Key
│ │ bsp_key.c
│ └ bsp_key.h
├ OLED
│ │ OLED_I2C.c
│ └ OLED_I2C.h
├ PwmOutput
│ │ bsp_pwm_output.c
│ └ bsp_pwm_output.h
├ SYSTICK
│ │ bsp_systick.c
│ └ bsp_systick.h
├ Time
│ │ TIM2.c
│ └ TIM2.h
├ UltrasonicWave
│ │ UltrasonicWave.c
│ └ UltrasonicWave.h
└ usart
│ bsp_usart.c
└ bsp_usart.h