You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
344 B
20 lines
344 B
package Sense4; |
|
|
|
/** |
|
* @author Lanlan |
|
* @date 2018/11/25 |
|
*/ |
|
public interface EliteLockIO { |
|
|
|
void initS4(boolean changeDir); |
|
|
|
void closeS4(); |
|
|
|
boolean write_internal_file(int offset, int write_len, byte[] write_bytes); |
|
|
|
byte[] read_internal_file(int offset, int read_len); |
|
|
|
boolean uploadHexExeFile(); |
|
|
|
byte[] readEliteSerial(); |
|
}
|
|
|