Advertisement
Guest User

Untitled

a guest
Mar 25th, 2015
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. March 17th Notes
  2.  
  3. Binary vs. Text --> Text is Binary but a different side.
  4. (Binary is the Parent and Text is the Child)
  5.  
  6. Parent Binary
  7. / \
  8. Child Text Stuff
  9.  
  10. [ Star Wars: Most have the force but there are two sides of the force, the Dark Side and the Light Side? of the force ]
  11.  
  12.  
  13.  
  14. Project - UDR2
  15. --------------
  16.  
  17. Packet (List of Data - Rather Small) --> Data Packet Table (Lab46 Website)
  18.  
  19. BS 1: 0x41 or 'A' is the start of the packet
  20. BS 1: 0x34 or '4' is the protocol number
  21. BS 1: checksum - Checking the length/did it arrive - Like Networking
  22. BS 2: msglen - Sending the data - REM sleep (How much it's sending)
  23. BS 2: inv_msglen - Checks the validity of our data
  24. BS 1: time_sec
  25. BS 2: sub_sec
  26. BS 1: seqnum
  27. BS 1: datatype
  28. BS ?: datablock
  29.  
  30.  
  31. Table
  32. -----
  33.  
  34. Big Endian stores the most significant data in the smallest address --> So on
  35.  
  36. 1000 90
  37. 1001 AB
  38. 1002 12
  39. 1003 CD
  40.  
  41. Little Endian stores the least significant data in the smallest address --> So on [ Hello --> eH ll \no ]
  42.  
  43. 1000 CD
  44. 1001 AB
  45. 1002 12
  46. 1003 90
  47.  
  48. URL: <http://www.cs.umd.edu/class/sum2003/cmsc311/Notes/Data/endian.html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement