基本信息
源码名称:STM32 红外遥控实验以及源码
源码大小:1.27M
文件格式:.zip
开发语言:C/C++
更新时间:2021-12-14
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
STM32 红外遥控实验以及源码
.
├── ALIENTEK MiniSTM32 实验22 红外遥控实验
│ ├── HARDWARE
│ │ ├── 24CXX
│ │ │ ├── 24cxx.c
│ │ │ ├── 24cxx.h
│ │ │ ├── myiic.c
│ │ │ └── myiic.h
│ │ ├── ADC
│ │ │ ├── adc.c
│ │ │ └── adc.h
│ │ ├── DAC
│ │ │ ├── dac.c
│ │ │ └── dac.h
│ │ ├── DMA
│ │ │ ├── dma.c
│ │ │ └── dma.h
│ │ ├── EXTI
│ │ │ ├── exti.c
│ │ │ └── exti.h
│ │ ├── FLASH
│ │ │ ├── flash.c
│ │ │ └── flash.h
│ │ ├── KEY
│ │ │ ├── key.c
│ │ │ └── key.h
│ │ ├── LCD
│ │ │ ├── FONT.H
│ │ │ ├── ILI93xx.c
│ │ │ └── LCD.h
│ │ ├── LED
│ │ │ ├── led.c
│ │ │ └── led.h
│ │ ├── OLED
│ │ │ ├── oled.c
│ │ │ ├── oled.h
│ │ │ └── oledfont.h
│ │ ├── REMOTE
│ │ │ ├── remote.c
│ │ │ └── remote.h
│ │ ├── RTC
│ │ │ ├── rtc.c
│ │ │ └── rtc.h
│ │ ├── SPI
│ │ │ ├── spi.c
│ │ │ └── spi.h
│ │ ├── TIMER
│ │ │ ├── timer.c
│ │ │ └── timer.h
│ │ ├── TOUCH
│ │ │ ├── ctiic.c
│ │ │ ├── ctiic.h
│ │ │ ├── ott2001a.c
│ │ │ ├── ott2001a.h
│ │ │ ├── touch.c
│ │ │ └── touch.h
│ │ ├── WDG
│ │ │ ├── wdg.c
│ │ │ └── wdg.h
│ │ └── WKUP
│ │ ├── wkup.c
│ │ └── wkup.h
│ ├── OBJ
│ │ ├── ExtDll.iex
│ │ ├── delay.crf
│ │ ├── delay.d
│ │ ├── delay.o
│ │ ├── ili93xx.crf
│ │ ├── ili93xx.d
│ │ ├── ili93xx.o
│ │ ├── led.crf
│ │ ├── led.d
│ │ ├── led.o
│ │ ├── remote.crf
│ │ ├── remote.d
│ │ ├── remote.o
│ │ ├── startup_stm32f10x_hd.d
│ │ ├── startup_stm32f10x_hd.lst
│ │ ├── startup_stm32f10x_hd.o
│ │ ├── sys.crf
│ │ ├── sys.d
│ │ ├── sys.o
│ │ ├── test.axf
│ │ ├── test.build_log.htm
│ │ ├── test.crf
│ │ ├── test.d
│ │ ├── test.hex
│ │ ├── test.htm
│ │ ├── test.lnp
│ │ ├── test.map
│ │ ├── test.o
│ │ ├── test.plg
│ │ ├── test.sct
│ │ ├── test.tra
│ │ ├── usart.crf
│ │ ├── usart.d
│ │ └── usart.o
│ ├── README.TXT
│ ├── SYSTEM
│ │ ├── delay
│ │ │ ├── delay.c
│ │ │ └── delay.h
│ │ ├── readme.txt
│ │ ├── sys
│ │ │ ├── stm32f10x.h
│ │ │ ├── sys.c
│ │ │ ├── sys.h
│ │ │ └── system_stm32f10x.h
│ │ └── usart
│ │ ├── usart.c
│ │ └── usart.h
│ ├── USER
│ │ ├── JLinkLog.txt
│ │ ├── JLinkSettings.ini
│ │ ├── startup_stm32f10x_hd.s
│ │ ├── test.c
│ │ ├── test.uvgui.Administrator
│ │ ├── test.uvgui_Administrator.bak
│ │ ├── test.uvopt
│ │ ├── test.uvproj
│ │ ├── test_Target 1.dep
│ │ ├── test_uvopt.bak
│ │ └── test_uvproj.bak
│ ├── USMART
│ │ ├── readme.txt
│ │ ├── usmart.c
│ │ ├── usmart.h
│ │ ├── usmart_config.c
│ │ ├── usmart_str.c
│ │ └── usmart_str.h
│ └── keilkill.bat
└── 好例子网_ALIENTEK MiniSTM32 实验22 红外遥控实验.zip
26 directories, 105 files
STM32 红外遥控实验以及源码
.
├── ALIENTEK MiniSTM32 实验22 红外遥控实验
│ ├── HARDWARE
│ │ ├── 24CXX
│ │ │ ├── 24cxx.c
│ │ │ ├── 24cxx.h
│ │ │ ├── myiic.c
│ │ │ └── myiic.h
│ │ ├── ADC
│ │ │ ├── adc.c
│ │ │ └── adc.h
│ │ ├── DAC
│ │ │ ├── dac.c
│ │ │ └── dac.h
│ │ ├── DMA
│ │ │ ├── dma.c
│ │ │ └── dma.h
│ │ ├── EXTI
│ │ │ ├── exti.c
│ │ │ └── exti.h
│ │ ├── FLASH
│ │ │ ├── flash.c
│ │ │ └── flash.h
│ │ ├── KEY
│ │ │ ├── key.c
│ │ │ └── key.h
│ │ ├── LCD
│ │ │ ├── FONT.H
│ │ │ ├── ILI93xx.c
│ │ │ └── LCD.h
│ │ ├── LED
│ │ │ ├── led.c
│ │ │ └── led.h
│ │ ├── OLED
│ │ │ ├── oled.c
│ │ │ ├── oled.h
│ │ │ └── oledfont.h
│ │ ├── REMOTE
│ │ │ ├── remote.c
│ │ │ └── remote.h
│ │ ├── RTC
│ │ │ ├── rtc.c
│ │ │ └── rtc.h
│ │ ├── SPI
│ │ │ ├── spi.c
│ │ │ └── spi.h
│ │ ├── TIMER
│ │ │ ├── timer.c
│ │ │ └── timer.h
│ │ ├── TOUCH
│ │ │ ├── ctiic.c
│ │ │ ├── ctiic.h
│ │ │ ├── ott2001a.c
│ │ │ ├── ott2001a.h
│ │ │ ├── touch.c
│ │ │ └── touch.h
│ │ ├── WDG
│ │ │ ├── wdg.c
│ │ │ └── wdg.h
│ │ └── WKUP
│ │ ├── wkup.c
│ │ └── wkup.h
│ ├── OBJ
│ │ ├── ExtDll.iex
│ │ ├── delay.crf
│ │ ├── delay.d
│ │ ├── delay.o
│ │ ├── ili93xx.crf
│ │ ├── ili93xx.d
│ │ ├── ili93xx.o
│ │ ├── led.crf
│ │ ├── led.d
│ │ ├── led.o
│ │ ├── remote.crf
│ │ ├── remote.d
│ │ ├── remote.o
│ │ ├── startup_stm32f10x_hd.d
│ │ ├── startup_stm32f10x_hd.lst
│ │ ├── startup_stm32f10x_hd.o
│ │ ├── sys.crf
│ │ ├── sys.d
│ │ ├── sys.o
│ │ ├── test.axf
│ │ ├── test.build_log.htm
│ │ ├── test.crf
│ │ ├── test.d
│ │ ├── test.hex
│ │ ├── test.htm
│ │ ├── test.lnp
│ │ ├── test.map
│ │ ├── test.o
│ │ ├── test.plg
│ │ ├── test.sct
│ │ ├── test.tra
│ │ ├── usart.crf
│ │ ├── usart.d
│ │ └── usart.o
│ ├── README.TXT
│ ├── SYSTEM
│ │ ├── delay
│ │ │ ├── delay.c
│ │ │ └── delay.h
│ │ ├── readme.txt
│ │ ├── sys
│ │ │ ├── stm32f10x.h
│ │ │ ├── sys.c
│ │ │ ├── sys.h
│ │ │ └── system_stm32f10x.h
│ │ └── usart
│ │ ├── usart.c
│ │ └── usart.h
│ ├── USER
│ │ ├── JLinkLog.txt
│ │ ├── JLinkSettings.ini
│ │ ├── startup_stm32f10x_hd.s
│ │ ├── test.c
│ │ ├── test.uvgui.Administrator
│ │ ├── test.uvgui_Administrator.bak
│ │ ├── test.uvopt
│ │ ├── test.uvproj
│ │ ├── test_Target 1.dep
│ │ ├── test_uvopt.bak
│ │ └── test_uvproj.bak
│ ├── USMART
│ │ ├── readme.txt
│ │ ├── usmart.c
│ │ ├── usmart.h
│ │ ├── usmart_config.c
│ │ ├── usmart_str.c
│ │ └── usmart_str.h
│ └── keilkill.bat
└── 好例子网_ALIENTEK MiniSTM32 实验22 红外遥控实验.zip
26 directories, 105 files