2018-06-24 10:14:05 +00:00
|
|
|
(** Binding to a tiny part of {{:http://libusb.info} libusb}. *)
|
|
|
|
|
|
|
|
|
|
|
|
(** For a more complete binding, have a look at the more complete and more advanced
|
|
|
|
{{:https://github.com/letoh/ocaml-usb} ocaml-usb}.
|
|
|
|
|
|
|
|
I wrote this alternate binding:
|
|
|
|
- in order to experiment more in depth with {{:https://github.com/ocamllabs/ocaml-ctypes} Ctypes};
|
2019-03-21 17:51:49 +00:00
|
|
|
- and because I needed something more portable than {{:https://github.com/letoh/ocaml-usb} ocaml-usb}: this one is working on Windows, which was not the case of ocaml-usb when I started this project. *)
|
2018-06-24 10:14:05 +00:00
|
|
|
|
2018-06-07 12:31:53 +00:00
|
|
|
include module type of T
|
|
|
|
|
2019-03-21 17:51:49 +00:00
|
|
|
(** {1 Getting more of errors} *)
|
2018-06-07 12:31:53 +00:00
|
|
|
|
|
|
|
val string_of_error: error -> string
|
|
|
|
|
|
|
|
val description_of_error: error -> string
|
|
|
|
|
|
|
|
(** {1 Flags} *)
|
|
|
|
|
2018-06-24 10:14:05 +00:00
|
|
|
(** {2 Request types} *)
|
|
|
|
|
2018-06-07 12:31:53 +00:00
|
|
|
val request_type_standard: int
|
|
|
|
val request_type_class: int
|
|
|
|
val request_type_vendor: int
|
|
|
|
val request_type_reserved: int
|
|
|
|
|
2018-06-24 10:14:05 +00:00
|
|
|
(** {2 Endpoint directions} *)
|
|
|
|
|
2018-06-07 12:31:53 +00:00
|
|
|
val endpoint_direction_in: int
|
|
|
|
val endpoint_direction_out: int
|
|
|
|
|
2018-06-24 10:14:05 +00:00
|
|
|
(** {2 Recipients} *)
|
|
|
|
|
2018-06-07 12:31:53 +00:00
|
|
|
val recipient_device: int
|
|
|
|
val recipient_interface: int
|
|
|
|
val recipient_endpoint: int
|
|
|
|
val recipient_other: int
|
|
|
|
|
|
|
|
(** {1 Initialisation} *)
|
|
|
|
|
|
|
|
val init_libusb: unit -> (unit, error) result
|
|
|
|
(** This function must be called before calling any other libusb function. *)
|
|
|
|
|
|
|
|
val exit_libusb: unit -> unit
|
2019-03-21 17:51:49 +00:00
|
|
|
(** Should be called after closing all opened devices and before your application
|
2018-06-24 10:14:05 +00:00
|
|
|
terminates. *)
|
2018-06-07 12:31:53 +00:00
|
|
|
|
|
|
|
val get_version: unit -> version
|
2018-06-24 10:14:05 +00:00
|
|
|
(** @return the version of the used C libusb library *)
|
2018-06-07 12:31:53 +00:00
|
|
|
|
|
|
|
(** {1 Devices enumeration} *)
|
|
|
|
|
|
|
|
type device
|
2018-06-24 10:14:05 +00:00
|
|
|
(** Opaque type representing a C pointer to a device *)
|
2018-06-07 12:31:53 +00:00
|
|
|
|
|
|
|
val get_device_list: unit -> (device list, error) result
|
|
|
|
(** @return a list of C pointers to libusb devices.
|
|
|
|
|
|
|
|
Each device returned in the list has it's reference counter set to 1. Do not
|
2018-06-24 10:14:05 +00:00
|
|
|
forget to {!Libusb.unref_device} each of them after use (see below). *)
|
2018-06-07 12:31:53 +00:00
|
|
|
|
|
|
|
val unref_device: device -> unit
|
2018-06-24 10:14:05 +00:00
|
|
|
(** [unref_device d] decrements the reference count of [d].
|
2018-06-07 12:31:53 +00:00
|
|
|
|
|
|
|
If the decrement operation causes the reference count to reach zero, the
|
2019-03-21 17:51:49 +00:00
|
|
|
device shall be destroyed by libusb C library. *)
|
2018-06-07 12:31:53 +00:00
|
|
|
|
2018-06-15 06:30:45 +00:00
|
|
|
val unref_devices: device list -> unit
|
2018-06-24 10:14:05 +00:00
|
|
|
(** [unref_devices l == List.iter unref_device l] *)
|
2018-06-15 06:30:45 +00:00
|
|
|
|
2018-06-07 12:31:53 +00:00
|
|
|
val is_vendor: int -> device -> bool
|
|
|
|
(** [is_vendor vend d] checks if device [d] vendor id is [vend] *)
|
|
|
|
|
|
|
|
val is_product: int -> device -> bool
|
|
|
|
(** [is_product prod d] checks if device [d] product id is [prod] *)
|
|
|
|
|
|
|
|
val filter_devices: (device -> bool) -> device list -> device list
|
|
|
|
(** [filter_devices f dl] filters [dl] devices list using [f].
|
|
|
|
The devices of [dl] which are not part of the returned list are
|
|
|
|
unreferenced with {!Libusb.unref_device}. *)
|
|
|
|
|
|
|
|
(** {1 Device opening} *)
|
|
|
|
|
|
|
|
type device_handle
|
|
|
|
(** A opaque type to manipulate opened devices *)
|
|
|
|
|
|
|
|
val open_device: ?unref:bool -> device -> (device_handle, error) result
|
2018-06-24 10:14:05 +00:00
|
|
|
(** The C libusb library device opening increments the device reference count.
|
2018-06-07 12:31:53 +00:00
|
|
|
|
|
|
|
If the operation is successfull, and if [unref] is true (which is it's
|
|
|
|
default value) {!Libusb.open_device} decrements the device reference counter
|
|
|
|
of the device: this allows the device to be destroyed automatically when
|
|
|
|
{!Libusb.close_device} will be called. *)
|
|
|
|
|
|
|
|
val close_device: device_handle -> unit
|
2018-06-24 10:14:05 +00:00
|
|
|
(** Closes the device. This operation decrements the reference counter.
|
|
|
|
|
|
|
|
TODO: make the reference counter decrement optionnal? *)
|
2018-06-07 12:31:53 +00:00
|
|
|
|
|
|
|
val get_device_descriptor: device -> (device_descriptor, error) result
|
|
|
|
|
|
|
|
val get_string_descriptor: device_handle -> int -> (string, error) result
|
|
|
|
|
2018-06-15 06:30:45 +00:00
|
|
|
val claim_interface: device_handle -> int -> (unit, error) result
|
2018-06-24 10:14:05 +00:00
|
|
|
(** Claim an interface on a given {! device_handle}.
|
|
|
|
|
|
|
|
You must claim the interface you wish to use before you can perform I/O on
|
|
|
|
any of its endpoints.
|
|
|
|
|
|
|
|
It is legal to attempt to claim an already-claimed interface, in which case
|
|
|
|
libusb just returns without doing anything.
|
|
|
|
|
|
|
|
Claiming of interfaces is a purely logical operation; it does not cause any
|
|
|
|
requests to be sent over the bus. Interface claiming is used to instruct the
|
|
|
|
underlying operating system that your application wishes to take ownership of
|
|
|
|
the interface.
|
|
|
|
|
|
|
|
This is a non-blocking function. *)
|
2018-06-15 06:30:45 +00:00
|
|
|
|
|
|
|
val release_interface: device_handle -> int -> (unit, error) result
|
2018-06-24 10:14:05 +00:00
|
|
|
(** Release an interface previously claimed with {! claim_interface}.
|
2018-06-15 06:30:45 +00:00
|
|
|
|
2018-06-24 10:14:05 +00:00
|
|
|
You should release all claimed interfaces before closing a {!device_handle}.
|
|
|
|
|
|
|
|
This is a blocking function. A SET_INTERFACE control request will be sent to
|
|
|
|
the device, resetting interface state to the first alternate setting. *)
|
|
|
|
|
|
|
|
(** {1 Synchronous device I/O} *)
|
2018-06-07 12:31:53 +00:00
|
|
|
|
2018-06-15 06:30:45 +00:00
|
|
|
val control_transfer: device_handle:device_handle -> request_type:int -> request:int -> value:int -> index:int -> buffer:(char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t -> timeout:int -> unit -> error
|
2018-06-24 10:14:05 +00:00
|
|
|
(** Perform a USB control transfer.
|
|
|
|
|
|
|
|
@param request_type is a bitfield used to parameter the transfer. It can be
|
|
|
|
constructed with a logical or between constants. By instance, to make a
|
|
|
|
vendor request output, this parameter can be set to [(]{!
|
|
|
|
endpoint_direction_in} [ lor ] {! request_type_vendor} [ lor ] {!
|
|
|
|
recipient_device} [)].
|
|
|
|
|
|
|
|
The [value] and [index] fields values should be given in host-endian byte
|
|
|
|
order. TODO: check if something can be done to have the OCaml binding take
|
|
|
|
care of this. *)
|
2018-06-15 06:30:45 +00:00
|
|
|
|
|
|
|
val bulk_transfer: device_handle:device_handle -> endpoint:int -> buffer:(char, Bigarray.int8_unsigned_elt, Bigarray.c_layout) Bigarray.Array1.t -> timeout:int -> unit -> (int, error) result
|
2018-06-24 10:14:05 +00:00
|
|
|
(** Perform a USB bulk transfer.
|
|
|
|
|
|
|
|
The direction of the transfer is inferred from the direction bits of the
|
|
|
|
[endpoint] address. By instance, to write on the [#1] endpoint, [endpoint]
|
|
|
|
should be passed : [(] {! Libusb.endpoint_direction_out} [ lor 1] [)].
|
|
|
|
|
|
|
|
For bulk reads, the length of [buffer] indicates the maximum length of data
|
|
|
|
you are expecting to receive. If less data arrives than expected, this
|
|
|
|
function will return that data, so be sure to check the transferred output
|
|
|
|
parameter.
|
|
|
|
|
|
|
|
You should also check the transferred parameter for bulk writes. Not all of
|
|
|
|
the data may have been written.
|
|
|
|
|
|
|
|
Also check transferred when dealing with a timeout error code. libusb may
|
|
|
|
have to split your transfer into a number of chunks to satisfy underlying O/S
|
|
|
|
requirements, meaning that the timeout may expire after the first few chunks
|
|
|
|
have completed. libusb is careful not to lose any data that may have been
|
|
|
|
transferred; do not assume that timeout conditions indicate a complete lack of
|
|
|
|
I/O. *)
|