struct srd_proto_data_binary {
int bin_class; /* Index into "struct srd_decoder"->binary. */
uint64_t size;
- const unsigned char *data;
+ const uint8_t *data;
};
struct srd_proto_data_logic {
int logic_group;
uint64_t repeat_count; /* Number of times the value in data was repeated. */
- const unsigned char *data; /* Bitfield containing the states of the logic outputs */
+ const uint8_t *data; /* Bitfield containing the states of the logic outputs */
};
typedef void (*srd_pd_output_callback)(struct srd_proto_data *pdata,