/Users/mattgraff/Documents/Arduino/sketch_mar27b/sketch_mar27b.ino: In function 'void gotPinged(byte*)':
sketch_mar27b:30:9: error: invalid use of member function 'static void EtherCard::printIp(const __FlashStringHelper*, const uint8_t*)' (did you forget the '()' ?)
ether.printIp .">>> ping from: ", ptr);
~~~~~~^~~~~~~
sketch_mar27b:30:18: error: expected unqualified-id before string constant
ether.printIp .">>> ping from: ", ptr);
^~~~~~~~~~~~~~~~~
exit status 1
invalid use of member function 'static void EtherCard::printIp(const __FlashStringHelper*, const uint8_t*)' (did you forget the '()' ?)
/Users/mattgraff/Documents/Arduino/sketch_mar27b/sketch_mar27b.ino: In function 'void gotPinged(byte*)':
sketch_mar27b:30:9: error: invalid use of member function 'static void EtherCard::printIp(const __FlashStringHelper*, const uint8_t*)' (did you forget the '()' ?)
ether.printIp .">>> ping from: ", ptr);
*/Users/mattgraff/Documents/Arduino/sketch_mar27b/sketch_mar27b.ino is the name of the sketch where an error is found.
*In function 'void gotPinged(byte*)' means that the error is in function gotPinged().
*invalid use of member function [..] printIp means there is syntax error in the call to that function.
*(did you forget the '()' ?) is a question. It says: "did you forget the '()' ?".