- Timestamp:
- 07/22/10 12:02:25 (14 years ago)
- Location:
- tools/FAD/simple_daq
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/FAD/simple_daq/cmd_send.cpp
r248 r261 63 63 CMD_Buffer[0] = htons (CMD_DWRITE_STOP); 64 64 printf ("# DWRITE LOW ->\n"); 65 printf ("# 0x%.4X\n", ntohs (CMD_Buffer[0])); 66 } 67 68 else if (strncmp (Buffer, "sclkon\n", 6) == 0) 69 { 70 CMD_Buffer[0] = htons (CMD_SCLK_ON); 71 printf ("# SCLK ENABLED ->\n"); 72 printf ("# 0x%.4X\n", ntohs (CMD_Buffer[0])); 73 } 74 else if (strncmp (Buffer, "sclkoff\n", 7) == 0) 75 { 76 CMD_Buffer[0] = htons (CMD_SCLK_OFF); 77 printf ("# SCLK DISABLED ->\n"); 65 78 printf ("# 0x%.4X\n", ntohs (CMD_Buffer[0])); 66 79 } … … 236 249 printf (" dd: DENABLE LOW\n"); 237 250 printf (" dr: DWRITE HIGH\n"); 238 printf (" ds: DWRITE LOW\n\n"); 251 printf (" ds: DWRITE LOW\n"); 252 printf (" sclkon: Switch SPI SLCK on\n"); 253 printf (" sclkoff: Switch SPI SLCK off\n"); 239 254 printf (" tc: Continuous Trigger\n"); 240 255 printf (" ts: Stop Trigger\n"); -
tools/FAD/simple_daq/simple_daq.cpp
r256 r261 158 158 159 159 // note: verbose is not used, but anyway defined. 160 SimpleDaqConfiguration *getConfig (c har *path, int verbose) {160 SimpleDaqConfiguration *getConfig (const char *path, int verbose) { 161 161 FILE* ConfigFile; 162 162 // try to open config file -
tools/FAD/simple_daq/simple_daq.h
r256 r261 25 25 #define CMD_DWRITE_RUN 0x0800 // DWRITE possibly HIGH 26 26 #define CMD_DWRITE_STOP 0x0900 // DWRITE always LOW 27 28 #define CMD_SCLK_ON 0x1000 29 #define CMD_SCLK_OFF 0x1100 30 27 31 #define CMD_Trigger_C 0xB000 // continous trigger 28 32 #define CMD_Trigger_S 0x2000 // stop continous trigger … … 55 59 void int_handler (int sig); // Handle signal SIGINT (CTRL-C) 56 60 void exit_program (int exit_status); // Cleanup and exit 57 SimpleDaqConfiguration *getConfig (c har *path, int verbose = 0);61 SimpleDaqConfiguration *getConfig (const char *path, int verbose = 0); 58 62 59 63 #endif /*SOCKETCLIENT_H_*/
Note:
See TracChangeset
for help on using the changeset viewer.