We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07976ad commit c85f46cCopy full SHA for c85f46c
src/class/usbtmc/usbtmc.h
@@ -277,17 +277,17 @@ typedef struct TU_ATTR_PACKED
277
278
struct TU_ATTR_PACKED
279
{
280
- unsigned int is488_2 :1;
281
- unsigned int supportsREN_GTL_LLO :1;
282
- unsigned int supportsTrigger :1;
+ uint8_t supportsTrigger :1;
+ uint8_t supportsREN_GTL_LLO :1;
+ uint8_t is488_2 :1;
283
} bmIntfcCapabilities488;
284
285
286
287
- unsigned int SCPI :1;
288
- unsigned int SR1 :1;
289
- unsigned int RL1 :1;
290
- unsigned int DT1 :1;
+ uint8_t DT1 :1;
+ uint8_t RL1 :1;
+ uint8_t SR1 :1;
+ uint8_t SCPI :1;
291
} bmDevCapabilities488;
292
uint8_t _reserved3[8];
293
} usbtmc_response_capabilities_488_t;
0 commit comments