2021-10-22 10:42:11 索煒達(dá)電子 650
項(xiàng)目編號(hào):E1649
文件大?。?.4M
源碼說(shuō)明:帶中文注釋
開(kāi)發(fā)環(huán)境:C編譯器
簡(jiǎn)要概述:
基于STM32的電表(加GPRS功能)
目錄│文件列表:
└ F103_GPRS
└ F103_GPRS
│ .mxproject
│ 01.ioc
├ Api
│ │ Common.c
│ │ Common.h
│ │ GPIO_Api.c
│ │ GPIO_Api.h
│ │ Usart1_Api.c
│ │ Usart1_Api.h
│ │ USART3_Api.c
│ └ USART3_Api.h
├ Bsp
│ │ Bsp.c
│ │ Bsp.h
│ │ GPIO_Config.c
│ │ RCC_Config.c
│ └ Usart_Config.c
├ Drivers
│ ├ CMSIS
│ │ ├ Device
│ │ │ └ ST
│ │ │ └ STM32F1xx
│ │ │ ├ Include
│ │ │ │ │ stm32f100xb.h
│ │ │ │ │ stm32f100xe.h
│ │ │ │ │ stm32f101x6.h
│ │ │ │ │ stm32f101xb.h
│ │ │ │ │ stm32f101xe.h
│ │ │ │ │ stm32f101xg.h
│ │ │ │ │ stm32f102x6.h
│ │ │ │ │ stm32f102xb.h
│ │ │ │ │ stm32f103x6.h
│ │ │ │ │ stm32f103xb.h
│ │ │ │ │ stm32f103xe.h
│ │ │ │ │ stm32f103xg.h
│ │ │ │ │ stm32f105xc.h
│ │ │ │ │ stm32f107xc.h
│ │ │ │ │ stm32f1xx.h
│ │ │ │ └ system_stm32f1xx.h
│ │ │ └ Source
│ │ │ └ Templates
│ │ │ │ system_stm32f1xx.c
│ │ │ ├ arm
│ │ │ │ │ startup_stm32f100xb.s
│ │ │ │ │ startup_stm32f100xe.s
│ │ │ │ │ startup_stm32f101x6.s
│ │ │ │ │ startup_stm32f101xb.s
│ │ │ │ │ startup_stm32f101xe.s
│ │ │ │ │ startup_stm32f101xg.s
│ │ │ │ │ startup_stm32f102x6.s
│ │ │ │ │ startup_stm32f102xb.s
│ │ │ │ │ startup_stm32f103x6.s
│ │ │ │ │ startup_stm32f103xb.s
│ │ │ │ │ startup_stm32f103xe.s
│ │ │ │ │ startup_stm32f103xg.s
│ │ │ │ │ startup_stm32f105xc.s
│ │ │ │ └ startup_stm32f107xc.s
│ │ │ ├ gcc
│ │ │ │ │ startup_stm32f100xb.s
│ │ │ │ │ startup_stm32f100xe.s
│ │ │ │ │ startup_stm32f101x6.s
│ │ │ │ │ startup_stm32f101xb.s
│ │ │ │ │ startup_stm32f101xe.s
│ │ │ │ │ startup_stm32f101xg.s
│ │ │ │ │ startup_stm32f102x6.s
│ │ │ │ │ startup_stm32f102xb.s
│ │ │ │ │ startup_stm32f103x6.s
│ │ │ │ │ startup_stm32f103xb.s
│ │ │ │ │ startup_stm32f103xe.s
│ │ │ │ │ startup_stm32f103xg.s
│ │ │ │ │ startup_stm32f105xc.s
│ │ │ │ └ startup_stm32f107xc.s
│ │ │ └ iar
│ │ │ │ startup_stm32f100xb.s
│ │ │ │ startup_stm32f100xe.s
│ │ │ │ startup_stm32f101x6.s
│ │ │ │ startup_stm32f101xb.s
│ │ │ │ startup_stm32f101xe.s
│ │ │ │ startup_stm32f101xg.s
│ │ │ │ startup_stm32f102x6.s
│ │ │ │ startup_stm32f102xb.s
│ │ │ │ startup_stm32f103x6.s
│ │ │ │ startup_stm32f103xb.s
│ │ │ │ startup_stm32f103xe.s
│ │ │ │ startup_stm32f103xg.s
│ │ │ │ startup_stm32f105xc.s
│ │ │ │ startup_stm32f107xc.s
│ │ │ └ linker
│ │ │ │ stm32f100xb_flash.icf
│ │ │ │ stm32f100xb_sram.icf
│ │ │ │ stm32f100xe_flash.icf
│ │ │ │ stm32f100xe_sram.icf
│ │ │ │ stm32f101x6_flash.icf
│ │ │ │ stm32f101x6_sram.icf
│ │ │ │ stm32f101xb_flash.icf
│ │ │ │ stm32f101xb_sram.icf
│ │ │ │ stm32f101xe_flash.icf
│ │ │ │ stm32f101xe_sram.icf
│ │ │ │ stm32f101xg_flash.icf
│ │ │ │ stm32f101xg_sram.icf
│ │ │ │ stm32f102x6_flash.icf
│ │ │ │ stm32f102x6_sram.icf
│ │ │ │ stm32f102xb_flash.icf
│ │ │ │ stm32f102xb_sram.icf
│ │ │ │ stm32f103x6_flash.icf
│ │ │ │ stm32f103x6_sram.icf
│ │ │ │ stm32f103xb_flash.icf
│ │ │ │ stm32f103xb_sram.icf
│ │ │ │ stm32f103xe_flash.icf
│ │ │ │ stm32f103xe_sram.icf
│ │ │ │ stm32f103xg_flash.icf
│ │ │ │ stm32f103xg_sram.icf
│ │ │ │ stm32f105xc_flash.icf