实例介绍
这个实际上只调到了初步的PCB可运行UART可用,其它还未真正调试,但其中的设计及PCB,若有用,哥们们可参考一下 因没完全调试,源代码工程有部分多余代码,工程文件需要重新整理一下,当然如果板子有用,其实可以完全根据原理自己建工程,压缩包内有完整SCH,PCB,包括电源5V,3.3V,RS232,RS485,CAN,SPI-Flash,USB,IO电路。 主要实现的功能是一个多IO,多个232/485,一个CAN通信。 其中数字Input检测,通过两个IO检测四种状态:高,低,悬空,检测单元有问题。 该单元在SCH&PCB;目录下面有相应的Multisim仿真文件。 真值表: L1 H1 值 0 0 INX_LH1为高 0 1 检测单元问题,可能D6与D7之间断开或者INX_HL1电平 1 0 INX_HL1悬空,且检测单元OK;或者INX_HL1电平处于中值 1 1 INX_LH1为低 其它可交流方案: GPS车辆监控系统:终端原理图PCB源码整套(稳定成熟可接多个外设);平台整套源码。 LED屏:公交,出租等 原理图PCB;PC端软件等;PDA控制LED屏程序源码。 DVR:小型SD卡录像方案,可485拍照。 公交报站器,原理图PCB;PC端软件。51版,STM32版。 汽车电动台阶驱动板原理图PCB。 PDA扫描轮:条形码扫描,GPRS上传;终端原理图PCB源码整套,服务端源码 手持公交售票终端源码,可打印小票。终端价位特低。 稳定使用的固态继电器原理及PCB(光耦隔离控制双向可控硅)。 直流电机驱动板。
【实例截图】
【核心代码】
4744302543291530961.rar
├── Document
│ └── 多状态IO输入.xls
├── Program
│ ├── GpsAdaptor
│ │ ├── BusRfCard.IAB
│ │ ├── BusRfCard.IAD
│ │ ├── BusRfCard.IMB
│ │ ├── BusRfCard.IMD
│ │ ├── BusRfCard.PFI
│ │ ├── BusRfCard.PO
│ │ ├── BusRfCard.PR
│ │ ├── BusRfCard.PRI
│ │ ├── BusRfCard.PS
│ │ ├── BusRfCard.SearchResults
│ │ ├── BusRfCard_v0.3问题点.txt
│ │ ├── BusRfCard.WK3
│ │ ├── C_Lib
│ │ │ ├── ctype.h
│ │ │ ├── stdarg.h
│ │ │ ├── stdio.h
│ │ │ └── string.h
│ │ ├── Libraries
│ │ │ ├── CMSIS
│ │ │ │ └── Core
│ │ │ │ └── CM3
│ │ │ │ ├── core_cm3.c
│ │ │ │ ├── core_cm3.h
│ │ │ │ ├── cortexm3_macro.h
│ │ │ │ ├── cortexm3_macro.s
│ │ │ │ ├── stm32f10x.h
│ │ │ │ ├── system_stm32f10x.bak
│ │ │ │ ├── system_stm32f10x.c
│ │ │ │ └── system_stm32f10x.h
│ │ │ ├── STM3210E-EVAL.lib
│ │ │ ├── STM32F103VC_Device Datebase.txt
│ │ │ └── STM32F10x_StdPeriph_Driver
│ │ │ ├── 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
│ │ │ ├── Release_Notes_for_STM32F10x_StdPeriph_Driver.html
│ │ │ └── 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
│ │ ├── Project
│ │ │ ├── asmmisc.d
│ │ │ ├── asmmisc._ia
│ │ │ ├── asmmisc.lst
│ │ │ ├── asmmisc.o
│ │ │ ├── asmpoly.d
│ │ │ ├── asmpoly_gcc.d
│ │ │ ├── asmpoly_gcc._ia
│ │ │ ├── asmpoly_gcc.lst
│ │ │ ├── asmpoly._ia
│ │ │ ├── asmpoly.lst
│ │ │ ├── asmpoly.o
│ │ │ ├── bitstream.crf
│ │ │ ├── bitstream.d
│ │ │ ├── bitstream.__i
│ │ │ ├── bitstream.o
│ │ │ ├── buffers.crf
│ │ │ ├── buffers.d
│ │ │ ├── buffers.__i
│ │ │ ├── buffers.o
│ │ │ ├── BusRfCard.BAT
│ │ │ ├── BusRfCard_Main.axf
│ │ │ ├── BusRfCard_Main_HD.plg
│ │ │ ├── BusRfCard_Main_HD.sct
│ │ │ ├── BusRfCard_Main_HD.tra
│ │ │ ├── BusRfCard_Main.hex
│ │ │ ├── BusRfCard_Main.htm
│ │ │ ├── BusRfCard_Main.lnp
│ │ │ ├── BusRfCard_Main.map
│ │ │ ├── BusRfCard_Main.plg
│ │ │ ├── BusRfCard_Main.sct
│ │ │ ├── BusRfCard_Main_Target 1.dep
│ │ │ ├── BusRfCard_Main.tra
│ │ │ ├── BusRfCard_Main.uvgui.Administrator
│ │ │ ├── BusRfCard_Main.uvgui_Administrator.bak
│ │ │ ├── BusRfCard_Main.uvgui.Xsky
│ │ │ ├── BusRfCard_Main.uvgui_Xsky.bak
│ │ │ ├── BusRfCard_Main.uvopt
│ │ │ ├── BusRfCard_Main_uvopt.bak
│ │ │ ├── BusRfCard_Main.uvproj
│ │ │ ├── BusRfCard_Main_uvproj.bak
│ │ │ ├── dct32.crf
│ │ │ ├── dct32.d
│ │ │ ├── dct32.__i
│ │ │ ├── dct32.o
│ │ │ ├── dequant.crf
│ │ │ ├── dequant.d
│ │ │ ├── dequant.__i
│ │ │ ├── dequant.o
│ │ │ ├── dqchan.crf
│ │ │ ├── dqchan.d
│ │ │ ├── dqchan.__i
│ │ │ ├── dqchan.o
│ │ │ ├── ExtDll.iex
│ │ │ ├── huffman.crf
│ │ │ ├── huffman.d
│ │ │ ├── huffman.__i
│ │ │ ├── huffman.o
│ │ │ ├── hufftabs.crf
│ │ │ ├── hufftabs.d
│ │ │ ├── hufftabs.__i
│ │ │ ├── hufftabs.o
│ │ │ ├── imdct.crf
│ │ │ ├── imdct.d
│ │ │ ├── imdct.__i
│ │ │ ├── imdct.o
│ │ │ ├── ioinput.crf
│ │ │ ├── ioinput.d
│ │ │ ├── ioinput.__i
│ │ │ ├── ioinput.o
│ │ │ ├── JLinkLog.txt
│ │ │ ├── JLinkSettings.ini
│ │ │ ├── lcd.crf
│ │ │ ├── lcd.d
│ │ │ ├── lcd.__i
│ │ │ ├── mp3dec.crf
│ │ │ ├── mp3dec.d
│ │ │ ├── mp3dec.__i
│ │ │ ├── mp3dec.o
│ │ │ ├── mp3tabs.crf
│ │ │ ├── mp3tabs.d
│ │ │ ├── mp3tabs.__i
│ │ │ ├── mp3tabs.o
│ │ │ ├── polyphase.crf
│ │ │ ├── polyphase.d
│ │ │ ├── polyphase.__i
│ │ │ ├── polyphase.o
│ │ │ ├── scalfact.crf
│ │ │ ├── scalfact.d
│ │ │ ├── scalfact.__i
│ │ │ ├── scalfact.o
│ │ │ ├── spi.crf
│ │ │ ├── spi.d
│ │ │ ├── spi_fram.crf
│ │ │ ├── spi_fram.d
│ │ │ ├── spi_fram.__i
│ │ │ ├── spi_fram.o
│ │ │ ├── spi.o
│ │ │ ├── stproc.crf
│ │ │ ├── stproc.d
│ │ │ ├── stproc.__i
│ │ │ ├── stproc.o
│ │ │ ├── subband.crf
│ │ │ ├── subband.d
│ │ │ ├── subband.__i
│ │ │ ├── subband.o
│ │ │ ├── timer5.crf
│ │ │ ├── timer5.d
│ │ │ ├── timer5.__i
│ │ │ ├── timer5.o
│ │ │ ├── trigtabs_fixpt.crf
│ │ │ ├── trigtabs_fixpt.d
│ │ │ ├── trigtabs_fixpt.__i
│ │ │ └── trigtabs_fixpt.o
│ │ ├── Startup
│ │ │ ├── startup_stm32f10x_cl.s
│ │ │ ├── startup_stm32f10x_hd.bak
│ │ │ ├── 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
│ │ └── User
│ │ ├── inc
│ │ │ ├── Communi.H
│ │ │ ├── Config.h
│ │ │ ├── Date.h
│ │ │ ├── Delay.H
│ │ │ ├── Function.H
│ │ │ ├── Global.H
│ │ │ ├── Gps.h
│ │ │ ├── IOInput.h
│ │ │ ├── LCD.H
│ │ │ ├── Lcm12864.h
│ │ │ ├── logo.h
│ │ │ ├── M500AuC.h
│ │ │ ├── MfErrNo.h
│ │ │ ├── Mfreg500.h
│ │ │ ├── Param.h
│ │ │ ├── PCM1770.h
│ │ │ ├── Queue.H
│ │ │ ├── RC500_STM32.h
│ │ │ ├── Spi_FRAM.h
│ │ │ ├── Spi.h
│ │ │ ├── StateCtrl.h
│ │ │ ├── stm32f10x_conf.h
│ │ │ ├── stm32f10x_IRQn.h
│ │ │ ├── stm32f10x_it.h
│ │ │ ├── STM32_Function.h
│ │ │ ├── STM32_Init.h
│ │ │ ├── STM32_Reg.h
│ │ │ ├── STM32_Type.h
│ │ │ ├── Target.h
│ │ │ ├── Timer5.h
│ │ │ ├── type.h
│ │ │ ├── Uart1.h
│ │ │ ├── Uart2.h
│ │ │ ├── Uart3.h
│ │ │ ├── Uart4.h
│ │ │ ├── Uart5.h
│ │ │ ├── Uart.h
│ │ │ ├── W25X.h
│ │ │ └── WAVE_fs.h
│ │ ├── Mp3Lib_for_arm
│ │ │ ├── ipp
│ │ │ │ ├── bitstream.c
│ │ │ │ ├── buffers.c
│ │ │ │ ├── coder.h
│ │ │ │ ├── dequant.c
│ │ │ │ ├── huffman.c
│ │ │ │ ├── imdct.c
│ │ │ │ └── subband.c
│ │ │ ├── mp3dec.c
│ │ │ ├── mp3tabs.c
│ │ │ ├── pub
│ │ │ │ ├── mp3common.h
│ │ │ │ ├── mp3dec.h
│ │ │ │ ├── mpadecobjfixpt.h
│ │ │ │ └── statname.h
│ │ │ ├── real
│ │ │ │ ├── arm
│ │ │ │ │ ├── asmmisc.s
│ │ │ │ │ ├── asmpoly_gcc.s
│ │ │ │ │ └── asmpoly.s
│ │ │ │ ├── assembly.h
│ │ │ │ ├── bitstream.c
│ │ │ │ ├── buffers.c
│ │ │ │ ├── coder.h
│ │ │ │ ├── dct32.c
│ │ │ │ ├── dequant.c
│ │ │ │ ├── dqchan.c
│ │ │ │ ├── huffman.c
│ │ │ │ ├── hufftabs.c
│ │ │ │ ├── imdct.c
│ │ │ │ ├── polyphase.c
│ │ │ │ ├── scalfact.c
│ │ │ │ ├── stproc.c
│ │ │ │ ├── subband.c
│ │ │ │ └── trigtabs_fixpt.c
│ │ │ └── testwrap
│ │ │ ├── debug.c
│ │ │ ├── debug.h
│ │ │ ├── main.c
│ │ │ ├── timing.c
│ │ │ ├── timing.h
│ │ │ └── winmain.cpp
│ │ ├── src
│ │ │ ├── Communi.C
│ │ │ ├── Date.c
│ │ │ ├── Delay.C
│ │ │ ├── Function.C
│ │ │ ├── Gps.c
│ │ │ ├── IOInput.c
│ │ │ ├── Lcd12864.c
│ │ │ ├── Lcm12864.c
│ │ │ ├── M500AuC.c
│ │ │ ├── main.c
│ │ │ ├── Param.c
│ │ │ ├── PCM1770.c
│ │ │ ├── Queue.C
│ │ │ ├── RC500_STM32.c
│ │ │ ├── Retarget.c
│ │ │ ├── Spi.c
│ │ │ ├── Spi_FRAM.c
│ │ │ ├── stm32f10x_it.c
│ │ │ ├── STM32_Function.c
│ │ │ ├── STM32_Init.c
│ │ │ ├── STM32_Init_IO全部设为输入.c
│ │ │ ├── Target.c
│ │ │ ├── Timer5.c
│ │ │ ├── Uart1.c
│ │ │ ├── Uart2.c
│ │ │ ├── Uart3.c
│ │ │ ├── Uart4.c
│ │ │ ├── Uart5.c
│ │ │ ├── Uart.c
│ │ │ ├── UARTx.h
│ │ │ ├── W25X.c
│ │ │ └── WAVE_fs.c
│ │ ├── Template.c
│ │ ├── Template.h
│ │ └── wav
│ │ ├── beee.h
│ │ ├── Beep.h
│ │ ├── DBeep.h
│ │ ├── dee.h
│ │ ├── FreeCard.h
│ │ ├── Merope.h
│ │ ├── 免费卡.h
│ │ ├── 军人免费卡.h
│ │ ├── 学生卡.h
│ │ ├── 普通卡.h
│ │ ├── 禅院钟声.h
│ │ ├── 老年卡.h
│ │ └── 钟声.h
│ └── 说明.txt
└── SCH&PCB
├── GpsAdaptor.EXIO_v0.2
├── GpsAdaptor.EXIO_v0.2Preview
├── GpsAdaptor.EXIO_v0.2.SchDoc
├── GpsAdaptor.EXIO_v0.2.SchDocPreview
├── GpsAdaptor.OutJob
├── GpsAdaptor.pdf
├── GpsAdaptor.PrjPCB
├── GpsAdaptor.PrjPCBStructure
├── GpsAdaptor_v0.1.Sch
├── GpsAdaptor_v0.1.SchDoc
├── GpsAdaptor_v0.1.SchDocPreview
├── GpsAdaptor_v0.1.SchPreview
├── GpsAdaptor_v0.2.1.SchDoc
├── GpsAdaptor_v0.2R.SchDocPreview
├── GpsAdaptor_v0.2.SchDoc
├── GpsAdaptor_v0.2.SchDocPreview
├── GpsAdaptor_v0.3.SchDoc
├── GpsAdaptor_v0.3.SchDocPreview
├── GpsAdaptor_v1.00R.PcbDoc
├── GpsAdaptor_v1.00R.pdf
├── GpsAdaptor_v1.00R.SchDoc
├── GpsAdaptor_v1.00R.SchDocPreview
├── IO_H&L_100k.ms11
├── IO_H&L_100k.ms11 (Security copy)
├── IO_H&L_1.ms11 (Security copy)
├── IO_H&L_2_47k.ms11
├── IO_H&L_2_47k.ms11 (Security copy)
├── IO_H&L_47k.ms11
├── IO_H&L_47k.ms11 (Security copy)
└── 四状态检测单元.jpg
24 directories, 350 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论