Download presentation
Presentation is loading. Please wait.
Published byChloe Williams Modified over 11 years ago
1
Working with bit patterns By John Miner
2
Integrated Circuits In todays manufacturing environment, production lines are automated with robotics and sensors. Many of these low end microprocessors and/or integrated circuits are designed for specific tasks such as temperature and pressure control. This presentation will review how to store the memory buffer in a table and use a view to interpret the results.
3
Covered Topics 1.Using the VARBINARY data type to store the bit pattern. 2.Storing a version number just in-case the decode changes. 3.Breaking the pattern into registers and nibbles. 4.Left shifting of the bits. 5.Right shifting of the bits. 6.Combining bits from two registers. 7.Putting it all together with a view.
4
Using VARBINARY field I defined a table with following attributes. Serial Number as primary key. Test Time for the part. Version number of the I.C. Register to store binary data. Modified by to see who did it? Modified date to see when done.
5
Break into smaller parts Every 4 bytes is an integer Most I.C. consider this a register Every byte is a hex nibble Decode the hex
6
Review of Hexadecimal 0000 = 00001 = 1 0010 = 20011 = 3 0100 = 40101 = 5 0110 = 60111 = 7 1000 = 81001 = 9 1010 = A1011 = B 1100 = C1101 = D 1110 = E1111 = F
7
AND, OR, Shift AND – if both bits 1 then 1 else 0 OR – if both bits 0, then 0 else 1 LEFT SHIFT – multiple by 2 for each bit RIGHT SHIFT – divide by 2 for each bit
8
Crafting The Solution Current example has 2 registers This is 16 bits Decode into registers Decode into fields Use view to put it together
9
Biography Has twenty years of data processing and proven project management experience, specializing in the banking, health care, and government areas. His credentials include a Masters degree in Computer Science from the University of Rhode Island; and Microsoft Certificates (MCDBA & MCSA). John is currently a Developing DBA at Sensata working with SQL Server 2008 silo of products. When he is not busy working, he spends time with his wife, daughter and dog enjoying outdoor activities
10
Questions & Answers References –SQL Server Books Online - http://msdn.microsoft.com/en-us/library/ms130214.aspx Please ask about the presentation. If you have any questions, you can contact me at j.miner@cox.net
Similar presentations
© 2025 SlidePlayer.com. Inc.
All rights reserved.