yy1717
2024-02-18 c3d488f1187e35a7889674a6c7e5ce57c999c9df
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.jni;
 
 
 
public class StorageTestCommand {
 
    public native int initDeviceCommandDll(String logPath);
 
    public native int UpdateFW(String fwPath);
    public native int SonixCamInit(int vid,int pid,int fd, int busnum, int devaddr, String USBFS);
    public native int SonixCamUnInit();
 
 
 
    static {
        //System.loadLibrary("UStorageDeviceFS");
        System.loadLibrary("UStorageTest");
 
    }
}