examples/SillySlave/main.h
changeset 642 f77ad188c2b1
parent 400 7d845f5d730c
--- a/examples/SillySlave/main.h	Tue Feb 23 08:09:57 2010 +0100
+++ b/examples/SillySlave/main.h	Tue Feb 23 08:12:19 2010 +0100
@@ -37,10 +37,7 @@
 #if defined(WIN32) && !defined(__CYGWIN__)
 #include <windows.h>
 #include "getopt.h"
-void pause(void)
-{
-	system("PAUSE");
-}
+void pause(void);
 #else
 #include <unistd.h>
 #include <stdio.h>
@@ -55,11 +52,10 @@
  * Please tune the following defines to suit your needs:
  */
 #define NODE_MASTER 0x1        
-#define NODE_SLAVE  0x12        
-#define DRIVER_LIBRARY "libcanfestival_can_kvaser.so"
-#define BAUDRATE 250000
+#define NODE_SLAVE  0x40      
+#define DRIVER_LIBRARY "can_ixxat_win32.dll"
+#define BAUDRATE 125
 #define BUS 0
 
 #endif /* _MAIN_H */
 
-