Simon Nield [simon.nield at QUANTEL.COM] says:
The problem:I need to biphase code a byte for serial transmission over an rf link. In other words each '1' becomes '10' and each '0' becomes '01'. If it makes the code easier then '1' becoming '01' and '0' becoming '10' is ok too.
this _could_ be done with a lookup table, which would be fast, but that's not the point of a tiny code challenge now is it ?
Here's a chunk of code that does the job.
; data starts off stored in lo_int_temp+0 ; program_status(fRFToggle) flips each time around the loop to select which nibble we are attacking btfss program_status, fRFToggle swapf lo_int_temp+0, F ; select the appropriate nibble ; biphase code bit movlw b'01010101' ; start biphase coding... btfsc lo_int_temp+0, 0 addlw b'00000001' ; if bit 0 is set then W = 01010110 btfsc lo_int_temp+0, 1 addlw b'00000100' ; if bit 1 is set then W = 010110xx btfsc lo_int_temp+0, 2 addlw b'00010000' ; if bit 2 is set then W = 0110xxxx btfsc lo_int_temp+0, 3 addlw b'01000000' ; xxxxabcd now encoded as aAbBcCdD, where A = !a ; exits with a coded version of the relevant nibble of lo_int_temp+0 in W happy hunting, Simon
Also:
Archive:
Questions:
1. I am looking for some codes that can read "RFID" from a module to a PIC16C54 and then send the received ID to a RS232 output, can anyone help? 2. Also Can anyone tell me how can I connect a PIC to a PALM or Visor through the springboard interface? Urgent!! Thanks student.
file: /Techref/microchip/manchester.htm, 2KB, , updated: 2002/2/27 01:41, local time: 2024/11/8 14:45,
3.141.32.177:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 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? <A HREF="http://www.piclist.com/techref/microchip/manchester.htm"> PIC RF IO - Manchester Encoding</A> |
Did you find what you needed? |
PICList 2024 contributors:
o List host: MIT, Site host massmind.org, Top posters @none found - Page Editors: James Newton, David Cary, and YOU! * Roman Black of Black Robotics donates from sales of Linistep stepper controller kits. * Ashley Roll of Digital Nemesis donates from sales of RCL-1 RS232 to TTL converters. * Monthly Subscribers: Gregg Rew. on-going support is MOST appreciated! * Contributors: Richard Seriani, Sr. |
Welcome to www.piclist.com! |
.