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");
|
| }
| }
|
|