DM163045 Microchip Technology, DM163045 Datasheet - Page 93

no-image

DM163045

Manufacturer Part Number
DM163045
Description
PICDEM Lab Development Kit (with PICkit 3) General Purpose
Manufacturer
Microchip Technology
Series
PICDEM™r
Type
MCUr
Datasheet

Specifications of DM163045

Contents
Board, PIC kit 3
Lead Free Status / Rohs Status
Lead free / RoHS Compliant
For Use With/related Products
PIC Micro® MCU

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
DM163045
Manufacturer:
MICROCHIP
Quantity:
12 000
© 2009 Microchip Technology Inc.
EXAMPLE 5-10:
4. Copy/paste the code in Example 5-11 over the Decide() code from the previ-
EXAMPLE 5-11:
5. Copy/paste the code in Example 5-12 over the Do_Outputs() code from the
EXAMPLE 5-12:
6. Copy/paste the code in Example 5-13 into the Timing() section labeled:
//ADD TIMING CODE HERE
EXAMPLE 5-13:
Analog-to-Digital Converter Peripheral Labs
//Give ADC hold capacitor time to charge
//This works out to approximately 8uS
ous lab:
previous lab:
while(--counter > 0);
//Start conversion by setting the GO/DONE bit.
GODONE = 1;
//Wait for ADC conversion to complete
//Polling the GO/DONE bit
// 0 = ADC completed
// 1 = ADC in progress
while(GODONE == 1);
//Shift the ADRESH result to the left
//by three bit positions and assign to
//TMR0_preload
TMR0_preload = ADRESH<<3;
//XOR the toggle value with 1
toggle ^= 1;
//Assign the toggle value to RC0 pin
RC0 = toggle;
//Clear the T0IF
T0IF = 0;
//Subtract the TMR0_preload value from 255 and
//then use to preload TMR0
TMR0 = 255 – TMR0_preload;
//Sit here and wait for TMR0 to overflow while (T0IF == 0);
unsigned char counter = 2;
GET_INPUTS() CODE FOR ADC LAB 2
DECIDE() CODE FOR ADC LAB 2
D0_OUTPUTS() CODE FOR ADC LAB 2
TIMING() CODE FOR ADC LAB 2
DS41369A-page 89

Related parts for DM163045