]> git.zerfleddert.de Git - rigol/commitdiff
get rid of signed/unsigned warnings
authorMichael Gernoth <michael@gernoth.net>
Sun, 30 May 2010 20:44:47 +0000 (22:44 +0200)
committerMichael Gernoth <michael@gernoth.net>
Sun, 30 May 2010 20:44:47 +0000 (22:44 +0200)
rigol.c

diff --git a/rigol.c b/rigol.c
index fff48466edebba36171fcadde1469748c4451281..7c42892c5c727c834280ae6ddf874598c9466b26 100644 (file)
--- a/rigol.c
+++ b/rigol.c
@@ -91,26 +91,28 @@ void printb (unsigned char *pkt, int len)
 //Send a scpi-command to the scope. The response goes into the buffer
 //called resp, with a size of resplen. If resp==NULL, no response
 //is requested.
-int sendscpi(usb_dev_handle *dev, unsigned char* cmd, 
+int sendscpi(usb_dev_handle *dev, char* cmd, 
              unsigned char *resp, int resplen) {
-    char *buff;
+    unsigned char *buff;
     int len,r,i;
+    int cmdlen = strlen(cmd);
+
     buff=malloc(0x40);
     seq++;
     buff[0]=1; //func
     buff[1]=seq; buff[2]=~seq; //nseq
     buff[3]=0;
-    int2chars(buff+4,strlen(cmd));
+    int2chars(buff+4, cmdlen);
     buff[8]=1;
     buff[9]=0x37;
     buff[10]=0x39;
     buff[11]=0x39;
-    //    fprintf(stderr,"Writing header len=%d\n", strlen (cmd));
+    //    fprintf(stderr,"Writing header len=%d\n", cmdlen);
 //    printb(buff,12);
-    r=usb_bulk_write(dev,1,buff,12,1000);
+    r=usb_bulk_write(dev, 1, (char*)buff, 12, 1000);
 //    fprintf(stderr,"%i bytes written. Writing cmd\n",r);
-//    printb(cmd,strlen(cmd));
-    r=usb_bulk_write(dev,1,cmd,strlen(cmd),1000);
+//    printb(cmd, cmdlen);
+    r=usb_bulk_write(dev, 1, cmd, cmdlen, 1000);
 //    fprintf(stderr,"%i bytes written.\n",r);
     if (resp != NULL && resplen != 0) {
        //send read command
@@ -124,9 +126,9 @@ int sendscpi(usb_dev_handle *dev, unsigned char* cmd,
        buff[11]=0;
 //     fprintf(stderr,"Writing resp req header\n");
 //     printb(buff,12);
-       r=usb_bulk_write(dev,1,buff,12,1000);
+       r=usb_bulk_write(dev, 1, (char*)buff, 12, 1000);
 //     fprintf(stderr,"%i bytes written. Reading response hdr\n",r);
-       r=usb_bulk_read(dev,2,buff,0x40,1000);
+       r=usb_bulk_read(dev, 2, (char*)buff, 0x40, 1000);
 //     printb(buff,r);
        len=chars2int(buff+4);
        //      fprintf(stderr,"%i bytes read. Resplen=%i\n",r,len);
@@ -137,7 +139,7 @@ int sendscpi(usb_dev_handle *dev, unsigned char* cmd,
        if (len > 0x40-12) {
 //         fprintf(stderr," Reading response:\n");
            if (resplen<len) len=resplen;
-           r=usb_bulk_read(dev,2,resp+(0x40-12),len-(0x40-12),1000);
+           r=usb_bulk_read(dev, 2, (char*)resp+(0x40-12), len-(0x40-12),1000);
            //      fprintf(stderr,"%i bytes read, wanted %i.\n", r, len-(0x40-12));
            return r+(0x40-12);
        }
@@ -149,11 +151,11 @@ int sendscpi(usb_dev_handle *dev, unsigned char* cmd,
 //Initialize the scope.
 void initscope(usb_dev_handle *dev) {
     int r;
-    char buff[10];
+    unsigned char buff[10];
     usb_claim_interface(dev,0);
     //The following code isn't really necessary, the program works
     //OK without it too.
-    r=usb_control_msg(dev, 0xC8, 9, 0, 0, buff, 4, 1000);
+    r=usb_control_msg(dev, 0xC8, 9, 0, 0, (char*)buff, 4, 1000);
     if (r < 0) {
         fprintf (stderr, "Error %d sending init message: %s\n", 
                r, strerror (-r));
@@ -239,7 +241,7 @@ double get_float_from_scope (struct usb_dev_handle *sc, char *var)
 
   l = sendscpi(sc, var, buf, 1024);
   if (l > 0) {
-    sscanf (buf, "%lf", &temp); 
+    sscanf ((char*)buf, "%lf", &temp); 
     return temp;
   }
   return ERROR;
@@ -250,7 +252,8 @@ void do_get_buf (struct usb_dev_handle *sc)
 {
   FILE *fp;
   int i, j, l, bp;
-  unsigned char buf[1024], ch1[1024];
+  char buf[1024];
+  unsigned char ch1[1024];
   unsigned char data[512*1024];
   double sampfreq;
 
@@ -295,7 +298,8 @@ void do_get_buf (struct usb_dev_handle *sc)
 int main(int argc, char **argv) 
 {
   struct usb_dev_handle *sc;
-  char *scpi, *buff;
+  char *scpi;
+  unsigned char *buff;
   int l;
   //Init libusb
   usb_init();
Impressum, Datenschutz