2001 Microchip Technology Inc.
DS39024B-page 71
I
2
C.C
Description
9.6
I2C.C
Source Code Listing
//****************************************************
//* I2C.C
//****************************************************
//* Rodger Richey
//* Principal Applications Engineer
//* Microchip Technology Incorporated
//****************************************************
//* 2 December 1998
//* Compiled using MPLAB C17 C Compiler V2.20
//****************************************************
//* This program reads and writes to the 24LC01B
//* Serial EEPROM using the master mode I2C module.
//* The value of the address is written to each
//* address of the EEPROM. The program then reads
//* the value out of the EEPROM and prints both
//* the desired value and the read value to the
//* USART2 for display on the Monitor program. The
//* address is also displayed on the memory mapped
//* LEDs.
//****************************************************
//* Uses an oscillator of 16MHz
//****************************************************
#include <p17c756.h>
#include <delays.h>
#include <i2c16.h>
#include <usart16.h>
#include <stdlib.h>
void PutsUSART2(char *data);
void PutcUSART2(char data);
// Prints a string to USART2 using hardware handshaking;
void PutsUSART2(char *data)
{
do
{
// Wait for USART2 to finish prev operation
while(BusyUSART2());
// Wait for CTS
while(PORTBbits.RB4);
// Write a character to USART2
putcUSART2(*data);
} while(*data++); // Increment pointer and check for NULL
return;
}
// Prints a character to USART2 using hardware handshaking
void PutcUSART2(char data)
{
while(BusyUSART2());
// Wait for
USART2 to finish
while(PORTBbits.RB4);
// Wait for CTS
Содержание Picdem 17
Страница 1: ...PICDEM 17 DEMONSTRATION BOARD USER S GUIDE 2001 Microchip Technology Inc DS39024B ...
Страница 19: ... 2001 Microchip Technology Inc DS39024B page 13 Using the PICDEM 17 Monitor Figure 2 5 Running Diagnostics ...
Страница 24: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 18 2001 Microchip Technology Inc NOTES ...
Страница 28: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 22 2001 Microchip Technology Inc NOTES ...
Страница 40: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 34 2001 Microchip Technology Inc NOTES ...
Страница 62: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 56 2001 Microchip Technology Inc NOTES ...
Страница 80: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 74 2001 Microchip Technology Inc NOTES ...
Страница 82: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 76 2001 Microchip Technology Inc A 1 SCHEMATIC 1 ...
Страница 83: ... 2001 Microchip Technology Inc DS39024B page 77 PICDEM 17 Demonstration Board Schematics A 2 SCHEMATIC 2 ...
Страница 84: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 78 2001 Microchip Technology Inc A 3 SCHEMATIC 3 ...
Страница 85: ... 2001 Microchip Technology Inc DS39024B page 79 PICDEM 17 Demonstration Board Schematics A 4 SCHEMATIC 4 ...
Страница 86: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 80 2001 Microchip Technology Inc NOTES ...
Страница 90: ...PICDEM 17 Demonstration Board User s Guide DS39024B page 84 2001 Microchip Technology Inc NOTES ...
Страница 91: ... 2001 Microchip Technology Inc DS39024B page 85 Floppy Disk Contents NOTES ...