-
Notifications
You must be signed in to change notification settings - Fork 0
/
pslr_scsi.h
69 lines (54 loc) · 2.03 KB
/
pslr_scsi.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
pkTriggerCord
Copyright (C) 2011-2014 Andras Salamon <[email protected]>
Remote control of Pentax DSLR cameras.
based on:
PK-Remote
Remote control of Pentax DSLR cameras.
Copyright (C) 2008 Pontus Lidman <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU General Public License
and GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PSLR_SCSI_H
#define PSLR_SCSI_H
#include <stdint.h>
#include <string.h>
#include <stdbool.h>
#include <stdio.h>
extern bool debug;
extern void write_debug( const char* message, ... );
#ifdef ANDROID
#include <android/log.h>
#define DPRINT(...) __android_log_print(ANDROID_LOG_DEBUG, "PkTriggerCord", __VA_ARGS__)
#else
#define DPRINT(x...) write_debug(x)
#endif
typedef enum {
PSLR_OK = 0,
PSLR_DEVICE_ERROR,
PSLR_SCSI_ERROR,
PSLR_COMMAND_ERROR,
PSLR_READ_ERROR,
PSLR_NO_MEMORY,
PSLR_PARAM, /* Invalid parameters to API */
PSLR_ERROR_MAX
} pslr_result;
int scsi_read(int sg_fd, uint8_t *cmd, uint32_t cmdLen,
uint8_t *buf, uint32_t bufLen);
int scsi_write(int sg_fd, uint8_t *cmd, uint32_t cmdLen,
uint8_t *buf, uint32_t bufLen);
char **get_drives(int *driveNum);
pslr_result get_drive_info(char* driveName, int* hDevice,
char* vendorId, int vendorIdSizeMax,
char* productId, int productIdSizeMax);
void close_drive(int *hDevice);
#endif