1 /* am7xxx - communication with AM7XXX based USB Pico Projectors and DPFs
3 * Copyright (C) 2012 Antonio Ospite <ospite@studenti.unina.it>
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
23 #include <libusb-1.0/libusb.h>
29 typedef libusb_device_handle *am7xxx_device;
32 AM7XXX_PACKET_TYPE_INIT = 0x01,
33 AM7XXX_PACKET_TYPE_IMAGE = 0x02,
34 AM7XXX_PACKET_TYPE_POWER = 0x04,
35 AM7XXX_PACKET_TYPE_UNKNOWN = 0x05,
39 AM7XXX_IMAGE_FORMAT_JPEG = 1,
40 AM7XXX_IMAGE_FORMAT_NV12 = 2,
41 } am7xxx_image_format;
47 AM7XXX_POWER_HIGH = 3,
50 struct am7xxx_generic_header {
57 struct am7xxx_image_header {
64 struct am7xxx_power_header {
71 * Examples of packet headers:
74 * 02 00 00 00 00 10 3e 10 01 00 00 00 20 03 00 00 e0 01 00 00 53 E8 00 00
77 * 04 00 00 00 00 0c ff ff 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80 /* The header size on the wire is known to be always 24 bytes, regardless of
81 * the memory configuration enforced by different architechtures or compilers
82 * for struct am7xxx_header
84 #define AM7XXX_HEADER_WIRE_SIZE 24
86 struct am7xxx_header {
89 uint8_t header_data_len;
93 struct am7xxx_generic_header data;
94 struct am7xxx_image_header image;
95 struct am7xxx_power_header power;
99 am7xxx_device am7xxx_init(void);
101 void am7xxx_shutdown(am7xxx_device dev);
103 int am7xxx_send_image(am7xxx_device dev,
104 am7xxx_image_format format,
114 #endif /* __AM7XXX_H */