char *tobinary(char *s,int bits,int n);
-char *subdevice_types[]={
+static const char * const subdevice_types[]={
"unused",
"analog input",
"analog output",
"memory",
"calibration",
"processor",
- "serial digital I/O"
+ "serial digital I/O",
+ "pwm"
};
comedi_t *it;
{
int i,j;
int n_subdevices,type;
+ const char *type_str;
int chan,n_chans;
int n_ranges;
int subdev_flags;
for(i = 0; i < n_subdevices; i++){
printf("subdevice %d:\n",i);
type = comedi_get_subdevice_type(it, i);
- printf(" type: %d (%s)\n",type,subdevice_types[type]);
+ if(type < (int)(sizeof(subdevice_types) / sizeof(subdevice_types[0]))){
+ type_str = subdevice_types[type];
+ }else{
+ type_str = "UNKNOWN";
+ }
+ printf(" type: %d (%s)\n",type,type_str);
if(type==COMEDI_SUBD_UNUSED)
continue;
subdev_flags = comedi_get_subdevice_flags(it, i);
#include "comedi_test.h"
-static char *subdevice_types[]={
+static const char * const subdevice_types[]={
"unused",
"analog input",
"analog output",
"memory",
"calibration",
"processor",
- "serial"
+ "serial",
+ "pwm"
};
{
int j;
int type;
+ const char *type_str;
int chan,n_chans;
int n_ranges;
comedi_range *rng;
printf("rev 1\n");
type = comedi_get_subdevice_type(device,subdevice);
- printf("I: subdevice type: %d (%s)\n",type,subdevice_types[type]);
+ if(type < (int)(sizeof(subdevice_types) / sizeof(subdevice_types[0]))) {
+ type_str = subdevice_types[type];
+ }else{
+ type_str = "UNKNOWN";
+ }
+ printf("I: subdevice type: %d (%s)\n",type,type_str);
if(type==COMEDI_SUBD_UNUSED)
return 0;
n_chans=comedi_get_n_channels(device,subdevice);