|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
| Thread Tools | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Some things i'm trying to understand on Kevin's Accelerometer Code
We're trying to get our accelerometer to work here with Kevin's Code, that part is easy, but we're trying to understand everything on the code so that we can make the modifications we need.
We're having a special interest on this part : adc_result = ADRESH; adc_result << = 8; adc_result += ADRESL; We've understood that it's reading the High bits of the ADC and then it'll copy it do the lower part of the adc_result variable, this part I really can't understand. Why does he do this ?? I've been trying to figure out for a while now, does anyone have a clue ? Thanks |
|
#2
|
|||||
|
|||||
|
Re: Some things i'm trying to understand on Kevin's Accelerometer Code
The ADC input comes in the form of a high byte and a low byte. In order to copy that over to an integer, you have to copy them separately. The first part has the ADC high byte copied over and then left shifted by 8 bits. This means that the value of the ADC high byte is in the high byte portion of the adc_result variable. Then, the ADC low byte is added in so that both values are there.
Matt |
|
#3
|
|||||
|
|||||
|
Re: Some things i'm trying to understand on Kevin's Accelerometer Code
Quote:
|
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Kevin Watson's Kick-off Demo Code! | Mr. Lim | Programming | 27 | 22-01-2005 03:38 |
| Updated Encoder Code Available | Kevin Watson | Programming | 2 | 04-01-2005 01:00 |
| A Centralized Code Dump? | colt527 | Programming | 29 | 01-01-2005 16:07 |
| Recovering code from the RC | Orborde | Programming | 15 | 04-12-2004 20:02 |
| Coding / Style Standards for sharing C code | Joe Johnson | Programming | 33 | 01-05-2004 15:15 |