电能计量芯片SUI-101A数据手册 在STM32或51单片机数据处理
电流互感器SUI-101A说明书及测量值读取程序├── SUI-101A 外挂电流互感器接线说明.pdf
├── SUI-101A使用说明书V1.3.pdf
├── 读取SUI_101A参数C51程序
│ └── V1.0.0
│ ├── 效果图 (1).jpg
│ ├── 效果图 (2).jpg
│ ├── 效果图 (3).jpg
│ └── 工程源码
│ ├── FUNCTION
│ │ ├── delay.c
│ │ └── delay.h
│ ├── HARDWARE
│ │ ├── 24l01.c
│ │ ├── 24l01.h
│ │ ├── DHT11.c
│ │ ├── DHT11.h
│ │ ├── LCD12864
│ │ │ ├── LCD12864.c
│ │ │ └── LCD12864.h
│ │ ├── PCF8591.c
│ │ ├── PCF8591.h
│ │ ├── SUI_100A
│ │ │ ├── SUI_100A.c
│ │ │ └── SUI_100A.h
│ │ ├── Uart
│ │ │ ├── uart.c
│ │ │ └── uart.h
│ │ ├── ad_switch.c
│ │ ├── ad_switch.h
│ │ ├── lcd1602.c
│ │ ├── lcd1602.h
│ │ ├── timer2.c
│ │ └── timer2.h
│ ├── OBJ
│ │ ├── start
│ │ ├── start.hex
│ │ └── start.m51
│ ├── PROJECT
│ │ ├── start.uvgui.elecfriend
│ │ ├── start.uvgui.ning
│ │ ├── start.uvgui.zgh
│ │ ├── start.uvopt
│ │ └── start.uvproj
│ ├── USER
│ │ ├── main.c
│ │ └── sys.h
│ ├── keilkill.bat
│ └── 说明.txt
└── 读取SUI_101A参数STM32程序
└── V1.0.0
├── APP
├── CORE
│ ├── core_cm3.c
│ ├── core_cm3.h
│ └── startup_stm32f10x_hd.s
├── HARDWARE
│ ├── BEEP
│ │ ├── beep.c
│ │ └── beep.h
│ ├── LED
│ │ ├── led.c
│ │ └── led.h
│ └── USART
│ ├── usart.c
│ └── usart.h
├── MODULES
├── OUTFILE
│ ├── List
│ └── OBJ
│ ├── STM32F103.axf
│ └── STM32F103.hex
├── PROJECT
│ ├── DebugConfig
│ │ └── STM32F103_STM32F103ZE_1.0.0.dbgconf
│ ├── JLinkSettings.ini
│ ├── STM32F103.uvguix.zgh
│ ├── STM32F103.uvoptx
│ └── STM32F103.uvprojx
├── README.TXT
├── STM32F10x_FWLib
│ ├── inc
│ │ ├── misc.h
│ │ ├── stm32f10x_adc.h
│ │ ├── stm32f10x_bkp.h
│ │ ├── stm32f10x_can.h
│ │ ├── stm32f10x_cec.h
│ │ ├── stm32f10x_crc.h
│ │ ├── stm32f10x_dac.h
│ │ ├── stm32f10x_dbgmcu.h
│ │ ├── stm32f10x_dma.h
│ │ ├── stm32f10x_exti.h
│ │ ├── stm32f10x_flash.h
│ │ ├── stm32f10x_fsmc.h
│ │ ├── stm32f10x_gpio.h
│ │ ├── stm32f10x_i2c.h
│ │ ├── stm32f10x_iwdg.h
│ │ ├── stm32f10x_pwr.h
│ │ ├── stm32f10x_rcc.h
│ │ ├── stm32f10x_rtc.h
│ │ ├── stm32f10x_sdio.h
│ │ ├── stm32f10x_spi.h
│ │ ├── stm32f10x_tim.h
│ │ ├── stm32f10x_usart.h
│ │ └── stm32f10x_wwdg.h
│ └── src
│ ├── misc.c
│ ├── stm32f10x_adc.c
│ ├── stm32f10x_bkp.c
│ ├── stm32f10x_can.c
│ ├── stm32f10x_cec.c
│ ├── stm32f10x_crc.c
│ ├── stm32f10x_dac.c
│ ├── stm32f10x_dbgmcu.c
│ ├── stm32f10x_dma.c
│ ├── stm32f10x_exti.c
│ ├── stm32f10x_flash.c
│ ├── stm32f10x_fsmc.c
│ ├── stm32f10x_gpio.c
│ ├── stm32f10x_i2c.c
│ ├── stm32f10x_iwdg.c
│ ├── stm32f10x_pwr.c
│ ├── stm32f10x_rcc.c
│ ├── stm32f10x_rtc.c
│ ├── stm32f10x_sdio.c
│ ├── stm32f10x_spi.c
│ ├── stm32f10x_tim.c
│ ├── stm32f10x_usart.c
│ └── stm32f10x_wwdg.c
├── STM32_USER
│ ├── main.c
│ ├── stm32f10x.h
│ ├── stm32f10x_conf.h
│ ├── stm32f10x_it.c
│ ├── stm32f10x_it.h
│ ├── system_stm32f10x.c
│ └── system_stm32f10x.h
├── SYSTEM
│ ├── delay
│ │ ├── delay.c
│ │ └── delay.h
│ └── sys
│ ├── sys.c
│ └── sys.h
└── keilkilll.bat
32 directories, 112 files
评论