#include <gpif-acquisition.h>
/* Protocol commands */
-#define CMD_SET_SAMPLERATE 0xb0
-#define CMD_START 0xb1
-#define CMD_STOP 0xb2
-#define CMD_GET_FW_VERSION 0xb3
+#define CMD_START 0xb0
+#define CMD_STOP 0xb1
+#define CMD_GET_FW_VERSION 0xb2
/* ... */
volatile bit got_sud;
/* Protocol implementation */
switch (cmd) {
- case CMD_SET_SAMPLERATE:
- /* TODO */
- break;
case CMD_START:
gpif_acquisition_start();
return TRUE;