mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
15 lines
428 B
C
15 lines
428 B
C
|
|
//
|
||
|
|
// Created by claunia on 15/12/17.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef DISCIMAGECHEF_DEVICE_REPORT_INQUIRY_DECODE_H
|
||
|
|
#define DISCIMAGECHEF_DEVICE_REPORT_INQUIRY_DECODE_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
char *DecodeTPGSValues(uint8_t capabilities);
|
||
|
|
char *DecodePeripheralDeviceType(uint8_t capabilities);
|
||
|
|
char *DecodePeripheralQualifier(uint8_t capabilities);
|
||
|
|
char *DecodeSPIClocking(uint8_t capabilities);
|
||
|
|
#endif //DISCIMAGECHEF_DEVICE_REPORT_INQUIRY_DECODE_H
|