Skip to content

Commit

Permalink
Add pin usage in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
qistoph committed Mar 6, 2012
1 parent 3076197 commit dcf06e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions CdpSniffino.ino
Expand Up @@ -2,9 +2,9 @@
#include <Ethernet.h>
#include <Wire.h>
//#include <LiquidCrystal.h> /* Either use LiquidCrystal of LiquidCrystal_I2C
#include <LiquidCrystal_I2C.h> //*/
#include <LiquidCrystal_I2C.h> //*/ // Uses analog pins 4 and 5 on Duemilanove

#include "cdp_listener.h"
#include "cdp_listener.h" // Uses digital pins 11, 12, 13 on Duemilanove

#define VERSION_STR "v0.1"

Expand Down Expand Up @@ -273,4 +273,4 @@ void print_mac(const byte a[], unsigned int offset, unsigned int length) {
if(a[i] < 0x10) Serial.print('0');
Serial.print(a[i], HEX);
}
}
}
2 changes: 1 addition & 1 deletion cdp_listener.h
Expand Up @@ -5,7 +5,7 @@

#include <SPI.h>
#include <Ethernet.h>
#include <utility/w5100.h>
#include <utility/w5100.h> // Uses Pin 11, 12, 13 on Duemilanove

typedef uint8_t CDP_STATUS;
#define CDP_STATUS_OK 0
Expand Down

0 comments on commit dcf06e5

Please sign in to comment.