实例介绍
完整的变频器开发生产资料,包含软件开发文档,硬件开发文档,源代码,设计说明等.
【实例截图】
【核心代码】
STM32变频模块资料-完整版
└── STM32变频模块资料-完整版
├── STM32变频控制板
│ ├── bom文件
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ └── 4.jpg
│ ├── pcb文件
│ │ ├── pcb.PCBDOC
│ │ └── 制板要求.txt
│ ├── VF_control
│ │ └── project
│ │ ├── com.c
│ │ ├── CRC16.c
│ │ ├── CRC16.h
│ │ ├── fFault.c
│ │ ├── fPid.c
│ │ ├── fPid.h
│ │ ├── fShiftMode.c
│ │ ├── LcdDr
│ │ │ ├── Lcd_dr.c
│ │ │ ├── Lcd_dr.h
│ │ │ ├── tDisp.c
│ │ │ ├── tDisp.h
│ │ │ └── tDispInit.c
│ │ ├── library
│ │ │ ├── inc
│ │ │ │ ├── cortexm3_macro.h
│ │ │ │ ├── stm32f10x_adc.h
│ │ │ │ ├── stm32f10x_bkp.h
│ │ │ │ ├── stm32f10x_can.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_lib.h
│ │ │ │ ├── stm32f10x_map.h
│ │ │ │ ├── stm32f10x_nvic.h
│ │ │ │ ├── stm32f10x_pwr.h
│ │ │ │ ├── stm32f10x_rcc.h
│ │ │ │ ├── stm32f10x_rtc.h
│ │ │ │ ├── stm32f10x_sdio.h
│ │ │ │ ├── stm32f10x_spi.h
│ │ │ │ ├── stm32f10x_systick.h
│ │ │ │ ├── stm32f10x_tim.h
│ │ │ │ ├── stm32f10x_type.h
│ │ │ │ ├── stm32f10x_usart.h
│ │ │ │ └── stm32f10x_wwdg.h
│ │ │ └── src
│ │ │ ├── cortexm3_macro.h
│ │ │ ├── stm32f10x_adc.c
│ │ │ ├── stm32f10x_adc.h
│ │ │ ├── stm32f10x_bkp.c
│ │ │ ├── stm32f10x_bkp.h
│ │ │ ├── stm32f10x_can.c
│ │ │ ├── stm32f10x_can.h
│ │ │ ├── stm32f10x_crc.c
│ │ │ ├── stm32f10x_crc.h
│ │ │ ├── stm32f10x_dac.c
│ │ │ ├── stm32f10x_dac.h
│ │ │ ├── stm32f10x_dbgmcu.c
│ │ │ ├── stm32f10x_dbgmcu.h
│ │ │ ├── stm32f10x_dma.c
│ │ │ ├── stm32f10x_dma.h
│ │ │ ├── stm32f10x_exti.c
│ │ │ ├── stm32f10x_exti.h
│ │ │ ├── stm32f10x_flash.c
│ │ │ ├── stm32f10x_flash.h
│ │ │ ├── stm32f10x_fsmc.c
│ │ │ ├── stm32f10x_fsmc.h
│ │ │ ├── stm32f10x_gpio.c
│ │ │ ├── stm32f10x_gpio.h
│ │ │ ├── stm32f10x_i2c.c
│ │ │ ├── stm32f10x_i2c.h
│ │ │ ├── stm32f10x_iwdg.c
│ │ │ ├── stm32f10x_iwdg.h
│ │ │ ├── stm32f10x_lib.c
│ │ │ ├── stm32f10x_lib.h
│ │ │ ├── stm32f10x_map.h
│ │ │ ├── stm32f10x_nvic.c
│ │ │ ├── stm32f10x_nvic.h
│ │ │ ├── stm32f10x_pwr.c
│ │ │ ├── stm32f10x_pwr.h
│ │ │ ├── stm32f10x_rcc.c
│ │ │ ├── stm32f10x_rcc.h
│ │ │ ├── stm32f10x_rtc.c
│ │ │ ├── stm32f10x_rtc.h
│ │ │ ├── stm32f10x_sdio.c
│ │ │ ├── stm32f10x_sdio.h
│ │ │ ├── stm32f10x_spi.c
│ │ │ ├── stm32f10x_spi.h
│ │ │ ├── stm32f10x_systick.c
│ │ │ ├── stm32f10x_systick.h
│ │ │ ├── stm32f10x_tim.c
│ │ │ ├── stm32f10x_tim.h
│ │ │ ├── stm32f10x_type.h
│ │ │ ├── stm32f10x_usart.c
│ │ │ ├── stm32f10x_usart.h
│ │ │ ├── stm32f10x_wwdg.c
│ │ │ └── stm32f10x_wwdg.h
│ │ ├── main.c
│ │ ├── main.h
│ │ ├── Measure.ini
│ │ ├── motor.c
│ │ ├── motor.h
│ │ ├── pin.h
│ │ ├── readme.h
│ │ ├── readme.txt
│ │ ├── RT_NET
│ │ │ ├── Debug
│ │ │ │ ├── vc90.idb
│ │ │ │ └── vc90.pdb
│ │ │ ├── Q70-南京三号线.ncb
│ │ │ ├── Q75-伊朗线.ncb
│ │ │ ├── Q75-伊朗线.sln
│ │ │ ├── Q75-伊朗线.suo
│ │ │ ├── RT_NET.ncb
│ │ │ ├── RT_NET.vcproj
│ │ │ ├── RT_NET.vcproj.a_yang-PC.a_yang.user
│ │ │ ├── RT_NET.vcproj.cluo-PC.Administrator.user
│ │ │ ├── RT_NET.vcproj.grape-PC.grape.user
│ │ │ ├── RT_NET.vcproj.life-3550-PC.life-3550.user
│ │ │ ├── RT_NET.vcproj.SkyEye-PC.SkyEye.user
│ │ │ ├── RT_NET.vcproj.WIN-7CB7E8F7IF6.Administrator.user
│ │ │ ├── RT_NET.vcproj.zhang-pc.zhang.user
│ │ │ └── RT_NET.vcproj.zxh-PC.zxh.user
│ │ ├── RVMDK
│ │ │ ├── BOOT_RAM.plg
│ │ │ ├── cortexm3_macro.d
│ │ │ ├── cortexm3_macro.o
│ │ │ ├── cortexm3_macro.s
│ │ │ ├── crc16.d
│ │ │ ├── crc16.o
│ │ │ ├── ffault.d
│ │ │ ├── FLASH.ini
│ │ │ ├── List
│ │ │ │ ├── cortexm3_macro.lst
│ │ │ │ ├── stm32f10x_vector.lst
│ │ │ │ ├── TYSC01_m.map
│ │ │ │ └── VF_CTRL.map
│ │ │ ├── main.d
│ │ │ ├── motor.d
│ │ │ ├── motor.o
│ │ │ ├── Obj
│ │ │ │ ├── at45drv.crf
│ │ │ │ ├── at45drv.d
│ │ │ │ ├── at45drv.__i
│ │ │ │ ├── at45drv.o
│ │ │ │ ├── boost.d
│ │ │ │ ├── boost.__i
│ │ │ │ ├── com._2i
│ │ │ │ ├── com.crf
│ │ │ │ ├── com.d
│ │ │ │ ├── com.__i
│ │ │ │ ├── com.o
│ │ │ │ ├── cortexm3_macro.d
│ │ │ │ ├── cortexm3_macro._ia
│ │ │ │ ├── cortexm3_macro.o
│ │ │ │ ├── crc16._2i
│ │ │ │ ├── crc16.crf
│ │ │ │ ├── crc16.d
│ │ │ │ ├── crc16.__i
│ │ │ │ ├── crc16.o
│ │ │ │ ├── ExtDll.iex
│ │ │ │ ├── ffault._2i
│ │ │ │ ├── ffault.crf
│ │ │ │ ├── ffault.d
│ │ │ │ ├── ffault.__i
│ │ │ │ ├── ffault.o
│ │ │ │ ├── ltv2548.crf
│ │ │ │ ├── ltv2548.d
│ │ │ │ ├── ltv2548.__i
│ │ │ │ ├── ltv2548.o
│ │ │ │ ├── main._2i
│ │ │ │ ├── main.crf
│ │ │ │ ├── main.d
│ │ │ │ ├── main.__i
│ │ │ │ ├── main.o
│ │ │ │ ├── motor.crf
│ │ │ │ ├── motor.d
│ │ │ │ ├── motor.__i
│ │ │ │ ├── motor.o
│ │ │ │ ├── Project_VF_CTRL.dep
│ │ │ │ ├── stm32_exti._2i
│ │ │ │ ├── stm32_exti.crf
│ │ │ │ ├── stm32_exti.d
│ │ │ │ ├── stm32_exti.__i
│ │ │ │ ├── stm32_exti.o
│ │ │ │ ├── stm32f10x_adc._2i
│ │ │ │ ├── stm32f10x_adc.crf
│ │ │ │ ├── stm32f10x_adc.d
│ │ │ │ ├── stm32f10x_adc.__i
│ │ │ │ ├── stm32f10x_adc.o
│ │ │ │ ├── stm32f10x_bkp._2i
│ │ │ │ ├── stm32f10x_bkp.crf
│ │ │ │ ├── stm32f10x_bkp.d
│ │ │ │ ├── stm32f10x_bkp.__i
│ │ │ │ ├── stm32f10x_bkp.o
│ │ │ │ ├── stm32f10x_can._2i
│ │ │ │ ├── stm32f10x_can.crf
│ │ │ │ ├── stm32f10x_can.d
│ │ │ │ ├── stm32f10x_can.__i
│ │ │ │ ├── stm32f10x_can.o
│ │ │ │ ├── stm32f10x_crc._2i
│ │ │ │ ├── stm32f10x_crc.crf
│ │ │ │ ├── stm32f10x_crc.d
│ │ │ │ ├── stm32f10x_crc.__i
│ │ │ │ ├── stm32f10x_crc.o
│ │ │ │ ├── stm32f10x_dac._2i
│ │ │ │ ├── stm32f10x_dac.crf
│ │ │ │ ├── stm32f10x_dac.d
│ │ │ │ ├── stm32f10x_dac.__i
│ │ │ │ ├── stm32f10x_dac.o
│ │ │ │ ├── stm32f10x_dbgmcu._2i
│ │ │ │ ├── stm32f10x_dbgmcu.crf
│ │ │ │ ├── stm32f10x_dbgmcu.d
│ │ │ │ ├── stm32f10x_dbgmcu.__i
│ │ │ │ ├── stm32f10x_dbgmcu.o
│ │ │ │ ├── stm32f10x_dma._2i
│ │ │ │ ├── stm32f10x_dma.crf
│ │ │ │ ├── stm32f10x_dma.d
│ │ │ │ ├── stm32f10x_dma.__i
│ │ │ │ ├── stm32f10x_dma.o
│ │ │ │ ├── stm32f10x_exti._2i
│ │ │ │ ├── stm32f10x_exti.crf
│ │ │ │ ├── stm32f10x_exti.d
│ │ │ │ ├── stm32f10x_exti.__i
│ │ │ │ ├── stm32f10x_exti.o
│ │ │ │ ├── stm32f10x_flash._2i
│ │ │ │ ├── stm32f10x_flash.crf
│ │ │ │ ├── stm32f10x_flash.d
│ │ │ │ ├── stm32f10x_flash.__i
│ │ │ │ ├── stm32f10x_flash.o
│ │ │ │ ├── stm32f10x_fsmc._2i
│ │ │ │ ├── stm32f10x_fsmc.crf
│ │ │ │ ├── stm32f10x_fsmc.d
│ │ │ │ ├── stm32f10x_fsmc.__i
│ │ │ │ ├── stm32f10x_fsmc.o
│ │ │ │ ├── stm32f10x_gpio._2i
│ │ │ │ ├── stm32f10x_gpio.crf
│ │ │ │ ├── stm32f10x_gpio.d
│ │ │ │ ├── stm32f10x_gpio.__i
│ │ │ │ ├── stm32f10x_gpio.o
│ │ │ │ ├── stm32f10x_i2c._2i
│ │ │ │ ├── stm32f10x_i2c.crf
│ │ │ │ ├── stm32f10x_i2c.d
│ │ │ │ ├── stm32f10x_i2c.__i
│ │ │ │ ├── stm32f10x_i2c.o
│ │ │ │ ├── stm32f10x_it.crf
│ │ │ │ ├── stm32f10x_it.d
│ │ │ │ ├── stm32f10x_it.__i
│ │ │ │ ├── stm32f10x_it.o
│ │ │ │ ├── stm32f10x_iwdg._2i
│ │ │ │ ├── stm32f10x_iwdg.crf
│ │ │ │ ├── stm32f10x_iwdg.d
│ │ │ │ ├── stm32f10x_iwdg.__i
│ │ │ │ ├── stm32f10x_iwdg.o
│ │ │ │ ├── stm32f10x_lib.crf
│ │ │ │ ├── stm32f10x_lib.d
│ │ │ │ ├── stm32f10x_lib.__i
│ │ │ │ ├── stm32f10x_lib.o
│ │ │ │ ├── stm32f10x_nvic._2i
│ │ │ │ ├── stm32f10x_nvic.crf
│ │ │ │ ├── stm32f10x_nvic.d
│ │ │ │ ├── stm32f10x_nvic.__i
│ │ │ │ ├── stm32f10x_nvic.o
│ │ │ │ ├── stm32f10x_pwr._2i
│ │ │ │ ├── stm32f10x_pwr.crf
│ │ │ │ ├── stm32f10x_pwr.d
│ │ │ │ ├── stm32f10x_pwr.__i
│ │ │ │ ├── stm32f10x_pwr.o
│ │ │ │ ├── stm32f10x_rcc._2i
│ │ │ │ ├── stm32f10x_rcc.crf
│ │ │ │ ├── stm32f10x_rcc.d
│ │ │ │ ├── stm32f10x_rcc.__i
│ │ │ │ ├── stm32f10x_rcc.o
│ │ │ │ ├── stm32f10x_rtc._2i
│ │ │ │ ├── stm32f10x_rtc.crf
│ │ │ │ ├── stm32f10x_rtc.d
│ │ │ │ ├── stm32f10x_rtc.__i
│ │ │ │ ├── stm32f10x_rtc.o
│ │ │ │ ├── stm32f10x_sdio._2i
│ │ │ │ ├── stm32f10x_sdio.crf
│ │ │ │ ├── stm32f10x_sdio.d
│ │ │ │ ├── stm32f10x_sdio.__i
│ │ │ │ ├── stm32f10x_sdio.o
│ │ │ │ ├── stm32f10x_spi._2i
│ │ │ │ ├── stm32f10x_spi.crf
│ │ │ │ ├── stm32f10x_spi.d
│ │ │ │ ├── stm32f10x_spi.__i
│ │ │ │ ├── stm32f10x_spi.o
│ │ │ │ ├── stm32f10x_systick._2i
│ │ │ │ ├── stm32f10x_systick.crf
│ │ │ │ ├── stm32f10x_systick.d
│ │ │ │ ├── stm32f10x_systick.__i
│ │ │ │ ├── stm32f10x_systick.o
│ │ │ │ ├── stm32f10x_tim._2i
│ │ │ │ ├── stm32f10x_tim.crf
│ │ │ │ ├── stm32f10x_tim.d
│ │ │ │ ├── stm32f10x_tim.__i
│ │ │ │ ├── stm32f10x_tim.o
│ │ │ │ ├── stm32f10x_usart._2i
│ │ │ │ ├── stm32f10x_usart.crf
│ │ │ │ ├── stm32f10x_usart.d
│ │ │ │ ├── stm32f10x_usart.__i
│ │ │ │ ├── stm32f10x_usart.o
│ │ │ │ ├── stm32f10x_vector.d
│ │ │ │ ├── stm32f10x_vector._ia
│ │ │ │ ├── stm32f10x_vector.o
│ │ │ │ ├── stm32f10x_wwdg._2i
│ │ │ │ ├── stm32f10x_wwdg.crf
│ │ │ │ ├── stm32f10x_wwdg.d
│ │ │ │ ├── stm32f10x_wwdg.__i
│ │ │ │ ├── stm32f10x_wwdg.o
│ │ │ │ ├── stm32_flash._2i
│ │ │ │ ├── stm32_flash.crf
│ │ │ │ ├── stm32_flash.d
│ │ │ │ ├── stm32_flash.__i
│ │ │ │ ├── stm32_flash.o
│ │ │ │ ├── stm32_init._2i
│ │ │ │ ├── stm32_init.crf
│ │ │ │ ├── stm32_init.d
│ │ │ │ ├── stm32_init.__i
│ │ │ │ ├── stm32_init.o
│ │ │ │ ├── stm32_iwdg.crf
│ │ │ │ ├── stm32_iwdg.d
│ │ │ │ ├── stm32_iwdg.__i
│ │ │ │ ├── stm32_iwdg.o
│ │ │ │ ├── stm32_pwr._2i
│ │ │ │ ├── stm32_pwr.crf
│ │ │ │ ├── stm32_pwr.d
│ │ │ │ ├── stm32_pwr.__i
│ │ │ │ ├── stm32_pwr.o
│ │ │ │ ├── stm32_rcc.crf
│ │ │ │ ├── stm32_rcc.d
│ │ │ │ ├── stm32_rcc.__i
│ │ │ │ ├── stm32_rcc.o
│ │ │ │ ├── stm32_rtc._2i
│ │ │ │ ├── stm32_rtc.crf
│ │ │ │ ├── stm32_rtc.d
│ │ │ │ ├── stm32_rtc.__i
│ │ │ │ ├── stm32_rtc.o
│ │ │ │ ├── stm32_usart._2i
│ │ │ │ ├── stm32_usart.crf
│ │ │ │ ├── stm32_usart.d
│ │ │ │ ├── stm32_usart.__i
│ │ │ │ ├── stm32_usart.o
│ │ │ │ ├── sysinit._2i
│ │ │ │ ├── sysinit.crf
│ │ │ │ ├── sysinit.d
│ │ │ │ ├── sysinit.__i
│ │ │ │ ├── sysinit.o
│ │ │ │ ├── tad._2i
│ │ │ │ ├── tad.crf
│ │ │ │ ├── tad.d
│ │ │ │ ├── tad.__i
│ │ │ │ ├── tad.o
│ │ │ │ ├── tdbg._2i
│ │ │ │ ├── tdbg.crf
│ │ │ │ ├── tdbg.d
│ │ │ │ ├── tdbg.__i
│ │ │ │ ├── tdbg.o
│ │ │ │ ├── tflash._2i
│ │ │ │ ├── tflash.crf
│ │ │ │ ├── tflash.d
│ │ │ │ ├── tflash.__i
│ │ │ │ ├── tflash.o
│ │ │ │ ├── tio._2i
│ │ │ │ ├── tio.crf
│ │ │ │ ├── tio.d
│ │ │ │ ├── tio.__i
│ │ │ │ ├── tio.o
│ │ │ │ ├── tkt.crf
│ │ │ │ ├── tkt.d
│ │ │ │ ├── tkt.__i
│ │ │ │ ├── tkt.o
│ │ │ │ ├── TYSC01_m.axf
│ │ │ │ ├── TYSC01_m.fed
│ │ │ │ ├── TYSC01_m.hex
│ │ │ │ ├── TYSC01_m.htm
│ │ │ │ ├── TYSC01_m.l1p
│ │ │ │ ├── TYSC01_m.l2p
│ │ │ │ ├── TYSC01_m.sct
│ │ │ │ ├── TYSC01_m_sct.Bak
│ │ │ │ ├── TYSC01_m.tra
│ │ │ │ ├── VF_CTRL.axf
│ │ │ │ ├── VF_CTRL.build_log.htm
│ │ │ │ ├── VF_CTRL.fed
│ │ │ │ ├── VF_CTRL.hex
│ │ │ │ ├── VF_CTRL.htm
│ │ │ │ ├── VF_CTRL.l2p
│ │ │ │ ├── VF_CTRL.lnp
│ │ │ │ ├── VF_CTRL.sct
│ │ │ │ └── VF_CTRL.tra
│ │ │ ├── Project_BOOT_RAM.dep
│ │ │ ├── Project_TYSC01_M.dep
│ │ │ ├── Project.uvgui.Administrator
│ │ │ ├── Project.uvgui_Administrator.bak
│ │ │ ├── Project.uvgui.jk
│ │ │ ├── Project.uvgui.zxh
│ │ │ ├── Project.uvgui_zxh.bak
│ │ │ ├── Project.uvopt
│ │ │ ├── Project_uvopt.bak
│ │ │ ├── Project.uvproj
│ │ │ ├── Project_uvproj.bak
│ │ │ ├── Project_VF_CTRL.dep
│ │ │ ├── RAM.ini
│ │ │ ├── readme.txt
│ │ │ ├── stm32_exti.d
│ │ │ ├── stm32_exti.o
│ │ │ ├── stm32f10x_adc.d
│ │ │ ├── stm32f10x_adc.o
│ │ │ ├── stm32f10x_bkp.d
│ │ │ ├── stm32f10x_can.d
│ │ │ ├── stm32f10x_can.o
│ │ │ ├── stm32f10x_crc.d
│ │ │ ├── stm32f10x_crc.o
│ │ │ ├── stm32f10x_dac.d
│ │ │ ├── stm32f10x_dac.o
│ │ │ ├── stm32f10x_dbgmcu.d
│ │ │ ├── stm32f10x_dbgmcu.o
│ │ │ ├── stm32f10x_dma.d
│ │ │ ├── stm32f10x_dma.o
│ │ │ ├── stm32f10x_exti.d
│ │ │ ├── stm32f10x_exti.o
│ │ │ ├── stm32f10x_flash.d
│ │ │ ├── stm32f10x_flash.o
│ │ │ ├── stm32f10x_fsmc.d
│ │ │ ├── stm32f10x_fsmc.o
│ │ │ ├── stm32f10x_gpio.d
│ │ │ ├── stm32f10x_gpio.o
│ │ │ ├── stm32f10x_i2c.d
│ │ │ ├── stm32f10x_i2c.o
│ │ │ ├── stm32f10x_it.d
│ │ │ ├── stm32f10x_it.o
│ │ │ ├── stm32f10x_iwdg.d
│ │ │ ├── stm32f10x_iwdg.o
│ │ │ ├── stm32f10x_lib.d
│ │ │ ├── stm32f10x_lib.o
│ │ │ ├── stm32f10x_nvic.d
│ │ │ ├── stm32f10x_nvic.o
│ │ │ ├── stm32f10x_pwr.d
│ │ │ ├── stm32f10x_pwr.o
│ │ │ ├── stm32f10x_rcc.d
│ │ │ ├── stm32f10x_rcc.o
│ │ │ ├── stm32f10x_rtc.d
│ │ │ ├── stm32f10x_rtc.o
│ │ │ ├── stm32f10x_sdio.d
│ │ │ ├── stm32f10x_sdio.o
│ │ │ ├── stm32f10x_spi.d
│ │ │ ├── stm32f10x_spi.o
│ │ │ ├── stm32f10x_systick.d
│ │ │ ├── stm32f10x_systick.o
│ │ │ ├── stm32f10x_tim.d
│ │ │ ├── stm32f10x_tim.o
│ │ │ ├── stm32f10x_usart.d
│ │ │ ├── stm32f10x_usart.o
│ │ │ ├── stm32f10x_vector.d
│ │ │ ├── stm32f10x_vector.o
│ │ │ ├── stm32f10x_vector.s
│ │ │ ├── stm32f10x_wwdg.d
│ │ │ ├── stm32f10x_wwdg.o
│ │ │ ├── stm32_flash.d
│ │ │ ├── stm32_flash.o
│ │ │ ├── stm32_init.d
│ │ │ ├── stm32_init.o
│ │ │ ├── stm32_iwdg.d
│ │ │ ├── stm32_iwdg.o
│ │ │ ├── stm32_pwr.d
│ │ │ ├── stm32_pwr.o
│ │ │ ├── stm32_rcc.d
│ │ │ ├── stm32_rcc.o
│ │ │ ├── stm32_rtc.d
│ │ │ ├── stm32_rtc.o
│ │ │ ├── stm32_usart.d
│ │ │ ├── sysinit.d
│ │ │ ├── tad.d
│ │ │ ├── tdbg.d
│ │ │ ├── tflash.d
│ │ │ ├── tflash.o
│ │ │ ├── tio.d
│ │ │ ├── tio.o
│ │ │ ├── tkt.d
│ │ │ ├── TYSC01_M.BAT
│ │ │ ├── TYSC01_M.CTmp
│ │ │ └── VF_CTRL.BAT
│ │ ├── Stm32Dr
│ │ │ ├── numeric.c
│ │ │ ├── numeric.h
│ │ │ ├── STM32_Exti.c
│ │ │ ├── STM32_Exti.h
│ │ │ ├── stm32f10x_conf.h
│ │ │ ├── stm32f10x_conf_old.h
│ │ │ ├── stm32f10x_it.c
│ │ │ ├── stm32f10x_it.h
│ │ │ ├── stm32f10x_it_old.c
│ │ │ ├── stm32f10x_it_old.h
│ │ │ ├── STM32_Fsmc.c
│ │ │ ├── STM32_Fsmc.h
│ │ │ ├── STM32_Init.c
│ │ │ ├── STM32_Init.h
│ │ │ ├── STM32_Iwdg.c
│ │ │ ├── STM32_Iwdg.h
│ │ │ ├── STM32_Pwr.c
│ │ │ ├── STM32_Pwr.h
│ │ │ ├── STM32_Rcc.c
│ │ │ ├── STM32_Rcc.h
│ │ │ ├── STM32_Reg.h
│ │ │ ├── STM32_Rtc.c
│ │ │ ├── STM32_Rtc.h
│ │ │ ├── STM32_Usart.c
│ │ │ ├── STM32_Usart.h
│ │ │ ├── Uart.C
│ │ │ └── Uart.h
│ │ ├── stm32f10x_conf.h
│ │ ├── Stm32_Flash.c
│ │ ├── sysInit.c
│ │ ├── sysInit.h
│ │ ├── tAd.c
│ │ ├── tad.h
│ │ ├── tCharge.c
│ │ ├── tdA.c
│ │ ├── tDbg.c
│ │ ├── tFlash.c
│ │ ├── tFlash.h
│ │ ├── tFlash_stm32.c
│ │ ├── tFlash_stm32.h
│ │ ├── tIO.c
│ │ ├── tKey.c
│ │ ├── tKey.h
│ │ ├── tKt.c
│ │ ├── type.h
│ │ ├── uart
│ │ │ ├── LPC2000_UART0.C
│ │ │ ├── LPC2000_UART0.h
│ │ │ ├── MAIN.c
│ │ │ ├── numeric.c
│ │ │ ├── numeric.h
│ │ │ ├── Uart.C
│ │ │ └── Uart.h
│ │ ├── uart11
│ │ │ ├── LPC2000_UART0.C
│ │ │ ├── LPC2000_UART0.h
│ │ │ ├── MAIN.c
│ │ │ ├── numeric.c
│ │ │ ├── numeric.h
│ │ │ ├── Uart.C
│ │ │ └── Uart.h
│ │ └── ui.h
│ ├── 原理图文件
│ │ ├── 单片机信号处理.SCHDOC
│ │ ├── 模拟信号处理.SCHDOC
│ │ └── 电流信号处理.SCHDOC
│ ├── 逆变器主控制器硬件设计说明书.doc
│ └── 逆变器主控制器软件设计说明书.doc
├── 变频逆变器
│ ├── 排线.jpg
│ ├── 物料清单.xls
│ ├── 电路资料
│ │ ├── 变器逆变IO板电路原理图
│ │ │ └── I O.SCHDOC
│ │ ├── 逆变器逆变IO板焊接丝印图
│ │ │ └── 逆变器逆变IO板焊接丝印图
│ │ │ ├── IO板.pcbdoc
│ │ │ ├── IO板.pcbdoc.htm
│ │ │ ├── __Previews
│ │ │ │ └── IO板.pcbdocPreview
│ │ │ └── 制板要求.txt
│ │ ├── 逆变器逆变主板焊接丝印图
│ │ │ └── 逆变器逆变主板焊接丝印图
│ │ │ ├── __Previews
│ │ │ │ └── 主板.pcbdocPreview
│ │ │ ├── 主板.pcbdoc
│ │ │ ├── 主板.pcbdoc.htm
│ │ │ └── 制板要求.txt
│ │ └── 逆变器逆变主板电路原理图
│ │ └── 主板原理图文件
│ │ ├── 辅助电源.SCHDOC
│ │ ├── 逆变输出、AD采集.schdoc
│ │ └── 驱动电路.SCHDOC
│ ├── 精密采样电阻.doc
│ ├── 逆变器总体设计方案.doc
│ ├── 逆变器监控软件使用说明.doc
│ ├── 逆变模块硬件设计说明书.doc
│ └── 逆变模块辅助电源逆变器.doc
└── 目标程序
├── config.xml
├── ZC.exe
└── 逆变器监控软件使用说明.doc
31 directories, 564 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论