package com.ifpdos.factorytest.mic.hid;

/* JADX INFO: loaded from: classes.dex */
public class MicArrayCommApi {
    public static final int COMM_GET_HW_STATUS = 3;
    public static final int COMM_GET_STATUS = 1;
    public static final int COMM_HW_CMD_NON = 0;
    public static final int COMM_HW_CMD_REQ_HW_TEST = 2;
    public static final int COMM_HW_CMD_SET_AMP_CNT = 1;
    public static final int COMM_SET_CONFIG = 2;
    public static final int INPUT_REPORT_SIZE = 512;
    public static final int OUTPUT_REPORT_SIZE = 512;
    public static final int REPORT_ID = 1;
    public static final String TAG = "HidCommApiT";
    boolean mDevFound = false;
    private HidHwApi mHidHwApi = new HidHwApi();
    public byte[] mHidReadBuffer = new byte[512];
    public byte[] mHidWriteBuffer = new byte[512];

    public void closeDevice() {
    }

    public boolean openDevice(String str) {
        return false;
    }

    public boolean requestHwStatus() {
        return false;
    }

    public boolean requestMicSetAmpCnt(int i) {
        return false;
    }

    public boolean requestMicStartHwTest() {
        return false;
    }

    public boolean requestStatus() {
        return false;
    }

    public boolean usbReadReport() {
        return false;
    }

    public boolean usbSendReport() {
        return false;
    }
}
