This code was developed by Ken Webster for his Time Source Monitoring Test System
14-bit core PIC source:
PC Windows NT or 95 or 98 source to talk to PIC:
Uses CRC and checksum and packet serial number to detect corrupt or missing packets. Chop out code that supports channels if you only need one device connected (this app is for connecting multiple devices via a multiplexer). If need help feel free to email me at ken@webster.org
; Apply W to command-interpreter receive checksums
update_crx_checksums xorwf rCmdxs,F ;update plain checksum
xorwf rCmdcl,F ;update cyclic checksum
addwf rCmdch,F
bcf STATUS,C
rrf rCmdch,F
btfsc rCmdcl,0
bsf rCmdch,7
rrf rCmdcl,F
movlw 0x31
addwf rCmdcl,F
btfsc STATUS,C
incf rCmdch,F
movlw 0x03
addwf rCmdch,F return
void Checksum::Add(unsigned char c){ plain_checksum ^= c;
cyclic_checksum ^= c; cyclic_checksum += (unsigned short)c << 8;
bool carry = (cyclic_checksum & 1) ? true : false; cyclic_checksum >>= 1;
cyclic_checksum |= carry ? 0x8000 : 0; cyclic_checksum += 817;}
| file: /techref/scenix/lib/io/osi2/serial/sermux.htm, 2KB, , updated: 2000/5/3 12:54, local time: 2009/11/22 18:05,
38.107.191.102:LOG IN
|
| ©2009 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? Please DO link to this page! Digg it! <A HREF="http://www.piclist.com/techref/scenix/lib/io/osi2/serial/sermux.htm"> Ken Websters PIC16C74 serial port multiplexer. </A> |
| Did you find what you needed? |
| piclist.com members can LOGIN to post questions, add public or private comments, links or even new pages(!). To start, fill out the form. |
|
The only consistant, simple to use yet powerful development environment. It simulates real-world devices via virtual component "plugins" (LED,LCD,key,motor,TV,etc) in real time, has a syntax highlighting editor, macro assembler and disassembler. Regular updates and third-party plugins keep this software ahead of any other PIC IDE. |
.