00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024 #ifndef _NetDev_h_
00025 #define _NetDev_h_
00026
00027 void initNetDev(struct SensorModul* sm);
00028 void exitNetDev(void);
00029
00030 int updateNetDev(void);
00031
00032 void printIPacketsInfo( const char *cmd );
00033 void printIPackets( const char *cmd );
00034
00035 void printOPacketsInfo( const char *cmd );
00036 void printOPackets( const char *cmd );
00037
00038 void printIErrorsInfo( const char *cmd );
00039 void printIErrors( const char *cmd );
00040
00041 void printOErrorsInfo( const char *cmd );
00042 void printOErrors( const char *cmd );
00043
00044 void printCollisionsInfo( const char *cmd );
00045 void printCollisions( const char *cmd );
00046
00047 void printMultiXmitsInfo( const char *cmd );
00048 void printMultiXmits( const char *cmd );
00049
00050 void printMultiRecvsInfo( const char *cmd );
00051 void printMultiRecvs( const char *cmd );
00052
00053 void printBcastXmitsInfo( const char *cmd );
00054 void printBcastXmits( const char *cmd );
00055
00056 void printBcastRecvsInfo( const char *cmd );
00057 void printBcastRecvs( const char *cmd );
00058
00059 #endif