mirror of
https://github.com/hathach/tinyusb.git
synced 2025-10-14 01:58:41 +08:00
try to add logo png to mtp example
This commit is contained in:
@@ -25,6 +25,7 @@
|
||||
|
||||
#include "class/mtp/mtp_device_storage.h"
|
||||
#include "tusb.h"
|
||||
#include "tinyusb_logo_png.h"
|
||||
|
||||
#define MTPD_STORAGE_DESCRIPTION "storage"
|
||||
#define MTPD_VOLUME_IDENTIFIER "volume"
|
||||
@@ -52,48 +53,55 @@ typedef MTP_STORAGE_INFO_STRUCT(TU_ARRAY_SIZE((uint16_t[]) STORAGE_DESCRIPTRION)
|
||||
//--------------------------------------------------------------------+
|
||||
// RAM FILESYSTEM
|
||||
//--------------------------------------------------------------------+
|
||||
#define FS_MAX_NODES 5UL
|
||||
#define FS_MAX_NODE_BYTES 128UL
|
||||
#define FS_MAX_NODE_NAME_LEN 64UL
|
||||
#define FS_ISODATETIME_LEN 26UL
|
||||
#define FS_MAX_FILE_COUNT 5UL
|
||||
#define FS_MAX_CAPACITY_BYTES (2 * 1024UL)
|
||||
#define FS_MAX_FILENAME_LEN 16UL
|
||||
#define FS_FIXED_DATETIME "20250808T173500.0" // "YYYYMMDDTHHMMSS.s"
|
||||
|
||||
#define README_TXT_CONTENT "TinyUSB MTP on RAM Filesystem example"
|
||||
|
||||
typedef struct {
|
||||
uint32_t handle;
|
||||
// uint32_t handle;
|
||||
char name[FS_MAX_FILENAME_LEN];
|
||||
mtp_object_formats_t format;
|
||||
uint32_t parent;
|
||||
uint32_t size;
|
||||
bool allocated;
|
||||
bool association;
|
||||
char name[FS_MAX_NODE_NAME_LEN];
|
||||
char created[FS_ISODATETIME_LEN];
|
||||
char modified[FS_ISODATETIME_LEN];
|
||||
uint8_t data[FS_MAX_NODE_BYTES];
|
||||
uint32_t size;
|
||||
uint8_t* data;
|
||||
} fs_object_info_t;
|
||||
|
||||
// Sample object file
|
||||
static fs_object_info_t fs_objects[FS_MAX_NODES] = {
|
||||
// object data buffer (excluding 2 predefined files)
|
||||
uint8_t fs_buf[FS_MAX_CAPACITY_BYTES];
|
||||
uint8_t fs_buf_head = 0; // simple allocation pointer
|
||||
|
||||
// Files system, handle is index + 1
|
||||
static fs_object_info_t fs_objects[FS_MAX_FILE_COUNT] = {
|
||||
{
|
||||
.handle = 1,
|
||||
.parent = 0,
|
||||
.allocated = true,
|
||||
.association = false,
|
||||
.name = "readme.txt",
|
||||
.created = "20240104T111134.0",
|
||||
.modified = "20241214T121110.0",
|
||||
.data = "USB MTP on RAM Filesystem example\n",
|
||||
.size = 34
|
||||
.format = MTP_OBJ_FORMAT_TEXT,
|
||||
.parent = 0,
|
||||
.association = false,
|
||||
.data = (uint8_t*) README_TXT_CONTENT,
|
||||
.size = sizeof(README_TXT_CONTENT)
|
||||
},
|
||||
{
|
||||
.name = "tinyusb.png",
|
||||
.format = MTP_OBJ_FORMAT_PNG,
|
||||
.parent = 0,
|
||||
.association = false,
|
||||
.data = logo_bin,
|
||||
.size = logo_len,
|
||||
}
|
||||
};
|
||||
|
||||
//------------- Storage Info -------------//
|
||||
|
||||
|
||||
storage_info_t storage_info = {
|
||||
.storage_type = MTP_STORAGE_TYPE_FIXED_RAM,
|
||||
.filesystem_type = MTP_FILESYSTEM_TYPE_GENERIC_HIERARCHICAL,
|
||||
.access_capability = MTP_ACCESS_CAPABILITY_READ_WRITE,
|
||||
.max_capacity_in_bytes = FS_MAX_NODES * FS_MAX_NODE_BYTES,
|
||||
.free_space_in_bytes = FS_MAX_NODES * FS_MAX_NODE_BYTES,
|
||||
.free_space_in_objects = FS_MAX_NODES,
|
||||
.max_capacity_in_bytes = sizeof(README_TXT_CONTENT) + logo_len + FS_MAX_CAPACITY_BYTES,
|
||||
.free_space_in_bytes = 0, // calculated at runtime
|
||||
.free_space_in_objects = 0, // calculated at runtime
|
||||
.storage_description = {
|
||||
.count = (TU_FIELD_SZIE(storage_info_t, storage_description)-1) / sizeof(uint16_t),
|
||||
.utf16 = STORAGE_DESCRIPTRION
|
||||
@@ -138,32 +146,27 @@ static fs_operation_t _fs_operation = {
|
||||
//--------------------------------------------------------------------+
|
||||
|
||||
// Get pointer to object info from handle
|
||||
fs_object_info_t* fs_object_get_from_handle(uint32_t handle);
|
||||
|
||||
// Get the number of allocated nodes in filesystem
|
||||
unsigned int fs_get_object_count(void);
|
||||
|
||||
fs_object_info_t* fs_object_get_from_handle(uint32_t handle) {
|
||||
fs_object_info_t* obj;
|
||||
for (unsigned int i = 0; i < FS_MAX_NODES; i++) {
|
||||
obj = &fs_objects[i];
|
||||
if (obj->allocated && obj->handle == handle)
|
||||
return obj;
|
||||
static inline fs_object_info_t* fs_get_object(uint32_t handle) {
|
||||
if (handle == 0 || handle > FS_MAX_FILE_COUNT) {
|
||||
return NULL;
|
||||
}
|
||||
return NULL;
|
||||
return &fs_objects[handle-1];
|
||||
}
|
||||
|
||||
unsigned int fs_get_object_count(void) {
|
||||
unsigned int s = 0;
|
||||
for (unsigned int i = 0; i < FS_MAX_NODES; i++) {
|
||||
if (fs_objects[i].allocated)
|
||||
s++;
|
||||
// Get the number of allocated nodes in filesystem
|
||||
uint32_t fs_get_object_count(void) {
|
||||
uint32_t count = 0;
|
||||
for (unsigned int i = 0; i < FS_MAX_FILE_COUNT; i++) {
|
||||
if (fs_objects[i].name[0] != 0) {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
return s;
|
||||
return count;
|
||||
}
|
||||
|
||||
int32_t tud_mtp_data_complete_cb(uint8_t idx, mtp_container_header_t* cmd_header, mtp_generic_container_t* resp_block, tusb_xfer_result_t xfer_result, uint32_t xferred_bytes) {
|
||||
(void) idx;
|
||||
(void) cmd_header;
|
||||
resp_block->len = MTP_CONTAINER_HEADER_LENGTH;
|
||||
resp_block->code = (xfer_result == XFER_RESULT_SUCCESS) ? MTP_RESP_OK : MTP_RESP_GENERAL_ERROR;
|
||||
tud_mtp_response_send(resp_block);
|
||||
@@ -225,8 +228,8 @@ int32_t tud_mtp_command_received_cb(uint8_t idx, mtp_generic_container_t* cmd_bl
|
||||
case MTP_OP_GET_STORAGE_INFO: {
|
||||
TU_VERIFY(SUPPORTED_STORAGE_ID == cmd_block->data[0], -1);
|
||||
// update storage info with current free space
|
||||
storage_info.free_space_in_objects = FS_MAX_NODES - fs_get_object_count();
|
||||
storage_info.free_space_in_bytes = storage_info.free_space_in_objects * FS_MAX_NODE_BYTES;
|
||||
storage_info.free_space_in_objects = FS_MAX_FILE_COUNT - fs_get_object_count();
|
||||
storage_info.free_space_in_bytes = FS_MAX_CAPACITY_BYTES-fs_buf_head;
|
||||
mtp_container_add_raw(out_block, &storage_info, sizeof(storage_info));
|
||||
tud_mtp_data_send(out_block);
|
||||
break;
|
||||
@@ -274,12 +277,13 @@ int32_t tud_mtp_command_received_cb(uint8_t idx, mtp_generic_container_t* cmd_bl
|
||||
return MTP_RESP_INVALID_STORAGE_ID;
|
||||
}
|
||||
|
||||
uint32_t handles[FS_MAX_NODES] = { 0 };
|
||||
uint32_t handles[FS_MAX_FILE_COUNT] = { 0 };
|
||||
uint32_t count = 0;
|
||||
for (uint8_t i = 0, h = 0; i < FS_MAX_NODES; i++) {
|
||||
if (fs_objects[i].allocated && parent_handle == fs_objects[i].parent ||
|
||||
(parent_handle == 0xFFFFFFFF && fs_objects[i].parent == 0)) {
|
||||
handles[count++] = fs_objects[i].handle;
|
||||
for (uint8_t i = 0; i < FS_MAX_FILE_COUNT; i++) {
|
||||
fs_object_info_t* obj = &fs_objects[i];
|
||||
if (obj->name[0] != 0 &&
|
||||
(parent_handle == obj->parent || (parent_handle == 0xFFFFFFFF && obj->parent == 0))) {
|
||||
handles[count++] = i + 1; // handle is index + 1
|
||||
}
|
||||
}
|
||||
mtp_container_add_auint32(out_block, count, handles);
|
||||
@@ -289,22 +293,22 @@ int32_t tud_mtp_command_received_cb(uint8_t idx, mtp_generic_container_t* cmd_bl
|
||||
|
||||
case MTP_OP_GET_OBJECT_INFO: {
|
||||
const uint32_t obj_handle = cmd_block->data[0];
|
||||
fs_object_info_t* obj = fs_object_get_from_handle(obj_handle);
|
||||
fs_object_info_t* obj = fs_get_object(obj_handle);
|
||||
if (obj == NULL) {
|
||||
return MTP_RESP_INVALID_OBJECT_HANDLE;
|
||||
}
|
||||
mtp_object_info_header_t obj_info_header = {
|
||||
.storage_id = SUPPORTED_STORAGE_ID,
|
||||
.object_format = MTP_OBJ_FORMAT_TEXT,
|
||||
.object_format = obj->format,
|
||||
.protection_status = MTP_PROTECTION_STATUS_NO_PROTECTION,
|
||||
.object_compressed_size = obj->size,
|
||||
.thumb_format = MTP_OBJ_FORMAT_UNDEFINED,
|
||||
.thumb_compressed_size = 0,
|
||||
.thumb_pix_width = 0,
|
||||
.thumb_pix_height = 0,
|
||||
.image_pix_width = 0,
|
||||
.image_pix_height = 0,
|
||||
.image_bit_depth = 0,
|
||||
.image_pix_width = 128,
|
||||
.image_pix_height = 64,
|
||||
.image_bit_depth = 32,
|
||||
.parent_object = obj->parent,
|
||||
.association_type = MTP_ASSOCIATION_UNDEFINED,
|
||||
.association_desc = 0,
|
||||
@@ -312,8 +316,8 @@ int32_t tud_mtp_command_received_cb(uint8_t idx, mtp_generic_container_t* cmd_bl
|
||||
};
|
||||
mtp_container_add_raw(out_block, &obj_info_header, sizeof(obj_info_header));
|
||||
mtp_container_add_cstring(out_block, obj->name);
|
||||
mtp_container_add_cstring(out_block, obj->created);
|
||||
mtp_container_add_cstring(out_block, obj->modified);
|
||||
mtp_container_add_cstring(out_block, FS_FIXED_DATETIME);
|
||||
mtp_container_add_cstring(out_block, FS_FIXED_DATETIME);
|
||||
mtp_container_add_cstring(out_block, ""); // keywords, not used
|
||||
|
||||
tud_mtp_data_send(out_block);
|
||||
@@ -322,7 +326,7 @@ int32_t tud_mtp_command_received_cb(uint8_t idx, mtp_generic_container_t* cmd_bl
|
||||
|
||||
case MTP_OP_GET_OBJECT: {
|
||||
const uint32_t obj_handle = cmd_block->data[0];
|
||||
fs_object_info_t* obj = fs_object_get_from_handle(obj_handle);
|
||||
fs_object_info_t* obj = fs_get_object(obj_handle);
|
||||
if (obj == NULL) {
|
||||
return MTP_RESP_INVALID_OBJECT_HANDLE;
|
||||
}
|
||||
@@ -341,6 +345,7 @@ int32_t tud_mtp_command_received_cb(uint8_t idx, mtp_generic_container_t* cmd_bl
|
||||
//--------------------------------------------------------------------+
|
||||
// API
|
||||
//--------------------------------------------------------------------+
|
||||
#if 0
|
||||
mtp_response_t tud_mtp_storage_format(uint32_t storage_id) {
|
||||
if (_fs_operation.session_id == 0) {
|
||||
TU_LOG1("ERR: Session not open\r\n");
|
||||
@@ -383,7 +388,7 @@ mtp_response_t tud_mtp_storage_object_write_info(uint32_t storage_id, uint32_t p
|
||||
|
||||
// Ensure we are not creating an orphaned object outside root
|
||||
if (parent_object != 0) {
|
||||
obj = fs_object_get_from_handle(parent_object);
|
||||
obj = fs_get_object(parent_object);
|
||||
if (obj == NULL) {
|
||||
TU_LOG1("Parent %ld does not exist\r\n", parent_object);
|
||||
return MTP_RESP_INVALID_PARENT_OBJECT;
|
||||
@@ -433,7 +438,7 @@ mtp_response_t tud_mtp_storage_object_write_info(uint32_t storage_id, uint32_t p
|
||||
mtp_response_t tud_mtp_storage_object_write(uint32_t object_handle, const uint8_t* buffer, uint32_t size) {
|
||||
fs_object_info_t* obj;
|
||||
|
||||
obj = fs_object_get_from_handle(object_handle);
|
||||
obj = fs_get_object(object_handle);
|
||||
if (obj == NULL) {
|
||||
TU_LOG1("ERR: Object with handle %ld does not exist\r\n", object_handle);
|
||||
return MTP_RESP_INVALID_OBJECT_HANDLE;
|
||||
@@ -466,7 +471,7 @@ mtp_response_t tud_mtp_storage_object_move(uint32_t object_handle, uint32_t new_
|
||||
|
||||
// Ensure we are not moving to an nonexisting parent
|
||||
if (new_parent_object_handle != 0) {
|
||||
obj = fs_object_get_from_handle(new_parent_object_handle);
|
||||
obj = fs_get_object(new_parent_object_handle);
|
||||
if (obj == NULL) {
|
||||
TU_LOG1("Parent %ld does not exist\r\n", new_parent_object_handle);
|
||||
return MTP_RESP_INVALID_PARENT_OBJECT;
|
||||
@@ -477,7 +482,7 @@ mtp_response_t tud_mtp_storage_object_move(uint32_t object_handle, uint32_t new_
|
||||
}
|
||||
}
|
||||
|
||||
obj = fs_object_get_from_handle(object_handle);
|
||||
obj = fs_get_object(object_handle);
|
||||
|
||||
if (obj == NULL) {
|
||||
TU_LOG1("ERR: Object with handle %ld does not exist\r\n", object_handle);
|
||||
@@ -500,7 +505,7 @@ mtp_response_t tud_mtp_storage_object_delete(uint32_t object_handle) {
|
||||
object_handle = 0;
|
||||
|
||||
if (object_handle != 0) {
|
||||
obj = fs_object_get_from_handle(object_handle);
|
||||
obj = fs_get_object(object_handle);
|
||||
|
||||
if (obj == NULL) {
|
||||
TU_LOG1("ERR: Object with handle %ld does not exist\r\n", object_handle);
|
||||
@@ -525,6 +530,7 @@ mtp_response_t tud_mtp_storage_object_delete(uint32_t object_handle) {
|
||||
|
||||
void tud_mtp_storage_object_done(void) {
|
||||
}
|
||||
#endif
|
||||
|
||||
void tud_mtp_storage_cancel(void) {
|
||||
fs_object_info_t* obj;
|
||||
@@ -535,9 +541,9 @@ void tud_mtp_storage_cancel(void) {
|
||||
_fs_operation.read_pos = 0;
|
||||
// If write operation is canceled, discard object
|
||||
if (_fs_operation.write_handle) {
|
||||
obj = fs_object_get_from_handle(_fs_operation.write_handle);
|
||||
if (obj)
|
||||
obj->allocated = false;
|
||||
obj = fs_get_object(_fs_operation.write_handle);
|
||||
// if (obj)
|
||||
// obj->allocated = false;
|
||||
}
|
||||
_fs_operation.write_handle = 0;
|
||||
_fs_operation.write_pos = 0;
|
||||
|
174
examples/device/mtp/src/tinyusb_logo_png.h
Normal file
174
examples/device/mtp/src/tinyusb_logo_png.h
Normal file
@@ -0,0 +1,174 @@
|
||||
const size_t logo_len = 2733;
|
||||
const uint8_t logo_bin[] __attribute__((aligned(16))) = {
|
||||
0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52,
|
||||
0x00, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00, 0x40, 0x08, 0x06, 0x00, 0x00, 0x00, 0xd2, 0xd6, 0x7f,
|
||||
0x7f, 0x00, 0x00, 0x00, 0x06, 0x62, 0x4b, 0x47, 0x44, 0x00, 0xff, 0x00, 0xff, 0x00, 0xff, 0xa0,
|
||||
0xbd, 0xa7, 0x93, 0x00, 0x00, 0x0a, 0x62, 0x49, 0x44, 0x41, 0x54, 0x78, 0x9c, 0xed, 0x9c, 0x7d,
|
||||
0x54, 0x54, 0x65, 0x1a, 0xc0, 0x7f, 0xc3, 0x00, 0x29, 0x1f, 0x31, 0x88, 0x61, 0x90, 0xd6, 0xa1,
|
||||
0xb3, 0xba, 0x1a, 0x18, 0x7e, 0xf2, 0xad, 0x40, 0x82, 0xb8, 0x9b, 0x2b, 0x43, 0x1e, 0xd2, 0x00,
|
||||
0x53, 0xc0, 0xea, 0xec, 0xc9, 0x70, 0x18, 0x3d, 0x5b, 0xb1, 0x9e, 0x4a, 0x6d, 0x13, 0x2d, 0xcb,
|
||||
0x76, 0xcd, 0x00, 0xf3, 0x8b, 0x10, 0x8a, 0x8e, 0xd6, 0xee, 0xda, 0x8a, 0x96, 0x30, 0x66, 0xa2,
|
||||
0xa0, 0x91, 0x64, 0xae, 0x16, 0x98, 0x45, 0x9d, 0x2c, 0x93, 0x8f, 0x05, 0x11, 0x92, 0x81, 0xbb,
|
||||
0x7f, 0xa8, 0x93, 0x33, 0x23, 0xcc, 0xdc, 0x61, 0x60, 0x46, 0xb8, 0xbf, 0xbf, 0x78, 0xdf, 0xfb,
|
||||
0x3c, 0xcf, 0xfb, 0xc0, 0x7d, 0xee, 0x73, 0xdf, 0xf7, 0xb9, 0xef, 0x8b, 0x8c, 0x6b, 0x08, 0x82,
|
||||
0x90, 0x08, 0x2c, 0x03, 0x02, 0x81, 0x21, 0x48, 0x0c, 0x44, 0xda, 0x81, 0x6a, 0xe0, 0x55, 0x99,
|
||||
0x4c, 0x56, 0x0c, 0x20, 0x03, 0x10, 0x04, 0x61, 0x35, 0xb0, 0xc2, 0x86, 0x8e, 0x49, 0xf4, 0x3f,
|
||||
0x6b, 0x64, 0x32, 0x59, 0x96, 0x4c, 0x10, 0x84, 0x19, 0xc0, 0x47, 0x5c, 0x0b, 0x06, 0x89, 0x41,
|
||||
0x45, 0xac, 0x03, 0xa0, 0x42, 0xba, 0xf9, 0x83, 0x15, 0x95, 0x4c, 0x10, 0x84, 0x8b, 0x80, 0x97,
|
||||
0xad, 0x3d, 0x91, 0xb0, 0x09, 0x4d, 0x32, 0x41, 0x10, 0x3a, 0x01, 0x07, 0x5b, 0x7b, 0x22, 0x61,
|
||||
0x1b, 0x1c, 0x90, 0xd2, 0xff, 0xa0, 0x46, 0x7a, 0xf2, 0x07, 0x39, 0x52, 0x00, 0x0c, 0x72, 0x1c,
|
||||
0x2d, 0x55, 0x3c, 0x52, 0x5e, 0x4e, 0x53, 0x63, 0x93, 0x28, 0x9d, 0x49, 0x93, 0x27, 0x31, 0xe2,
|
||||
0xce, 0x3b, 0x4d, 0xca, 0x5d, 0xba, 0x74, 0x89, 0xea, 0x13, 0xd5, 0x26, 0xe5, 0x46, 0x8c, 0xf0,
|
||||
0xe6, 0x77, 0xa3, 0x47, 0x8b, 0xf2, 0x41, 0x42, 0x1f, 0x99, 0x20, 0x08, 0x5d, 0x58, 0x30, 0x0f,
|
||||
0x48, 0x7c, 0x68, 0x2e, 0x9f, 0x57, 0x55, 0x89, 0xd2, 0xd9, 0x94, 0x9b, 0xc3, 0xcc, 0xb8, 0x38,
|
||||
0x93, 0x72, 0x27, 0xbf, 0x38, 0x49, 0xc2, 0x9c, 0x39, 0x78, 0x78, 0x78, 0x74, 0x2b, 0xd3, 0xd6,
|
||||
0xd6, 0x46, 0xbc, 0x52, 0xc9, 0x9a, 0x75, 0x6b, 0x45, 0xf9, 0x20, 0xa1, 0x8f, 0xc5, 0x19, 0xa0,
|
||||
0x3f, 0xa8, 0xfc, 0xec, 0x38, 0x72, 0xc7, 0x9b, 0xbb, 0xb8, 0x22, 0x2b, 0x8b, 0x4e, 0x6d, 0x67,
|
||||
0x3f, 0x7b, 0x34, 0xf0, 0x90, 0xe6, 0x00, 0x83, 0x1c, 0xbb, 0x0e, 0x80, 0xb6, 0xb6, 0x36, 0x5e,
|
||||
0x5c, 0xb5, 0x8a, 0x0f, 0x76, 0xbf, 0x0f, 0x40, 0xdd, 0x77, 0xdf, 0xf1, 0xe2, 0xaa, 0x55, 0x1c,
|
||||
0xfe, 0xf4, 0xb0, 0x8d, 0x3d, 0x1b, 0x38, 0xd8, 0x75, 0x00, 0x68, 0xb5, 0x5a, 0x34, 0xa5, 0x65,
|
||||
0x9c, 0x3a, 0x75, 0x0a, 0x80, 0xa6, 0xa6, 0xff, 0xa1, 0x29, 0x2d, 0xa3, 0xae, 0xee, 0x3b, 0x1b,
|
||||
0x7b, 0x36, 0x70, 0xb0, 0xeb, 0x39, 0x80, 0xbb, 0xbb, 0x3b, 0x1f, 0x6b, 0xca, 0x74, 0xed, 0xfb,
|
||||
0x03, 0xef, 0xd7, 0xb5, 0x57, 0x64, 0x65, 0xd9, 0xca, 0xad, 0x01, 0x85, 0x5d, 0x07, 0x80, 0xbd,
|
||||
0x70, 0xb9, 0xf5, 0x32, 0x3f, 0x5f, 0xf8, 0x19, 0xb9, 0x83, 0x03, 0x6e, 0xee, 0xee, 0x28, 0x14,
|
||||
0x0a, 0x1c, 0x1c, 0xec, 0x3a, 0x79, 0x9a, 0x8d, 0xd9, 0xcb, 0xc0, 0x8e, 0x8e, 0x0e, 0x56, 0x3e,
|
||||
0xff, 0xbc, 0xae, 0xfd, 0xf1, 0xfe, 0x8f, 0xb8, 0x78, 0xf1, 0xa2, 0xa8, 0xc1, 0x22, 0xa6, 0x4d,
|
||||
0x63, 0xe4, 0xa8, 0x91, 0x7a, 0x7d, 0xa1, 0x61, 0x61, 0x3c, 0x38, 0x7b, 0xb6, 0xae, 0xfd, 0xf7,
|
||||
0x0d, 0x1b, 0x38, 0x73, 0xfa, 0x0c, 0xfb, 0xf7, 0xed, 0xe3, 0xe1, 0xf9, 0xf3, 0xba, 0xfd, 0x43,
|
||||
0x1f, 0xab, 0x3c, 0x86, 0xd0, 0xd5, 0x45, 0x50, 0x48, 0x30, 0x69, 0x8b, 0x17, 0x73, 0xef, 0xbd,
|
||||
0xf7, 0xea, 0xae, 0x7d, 0xb4, 0x7f, 0x3f, 0x07, 0x35, 0x1a, 0x51, 0xbe, 0xad, 0x5c, 0xbd, 0x1a,
|
||||
0xb9, 0x5c, 0x0e, 0x5c, 0x9d, 0x6b, 0x94, 0xec, 0x2d, 0xe1, 0xa0, 0x46, 0x43, 0xf5, 0x89, 0x13,
|
||||
0xb4, 0xb7, 0xb7, 0xeb, 0xc9, 0xba, 0xb9, 0xb9, 0xe1, 0x1f, 0x10, 0x40, 0x4c, 0x6c, 0x0c, 0xf1,
|
||||
0x09, 0x09, 0x0c, 0x1b, 0x36, 0x4c, 0x77, 0xed, 0xc7, 0x1f, 0x7f, 0x64, 0xd3, 0xc6, 0x8d, 0xa2,
|
||||
0xc6, 0x06, 0x70, 0x90, 0x39, 0xf0, 0xec, 0x5f, 0xb3, 0x18, 0xea, 0xe2, 0x22, 0x4a, 0xef, 0xdd,
|
||||
0xa2, 0x77, 0x38, 0x79, 0xf2, 0x0b, 0xbd, 0xbe, 0xe4, 0x94, 0x14, 0xc6, 0xdd, 0x77, 0x9f, 0x59,
|
||||
0xfa, 0x66, 0x07, 0x40, 0x5b, 0x5b, 0x1b, 0xe3, 0xc7, 0x99, 0x67, 0x54, 0x0c, 0x8b, 0xd2, 0x52,
|
||||
0x59, 0xf1, 0xdc, 0x73, 0xba, 0x76, 0x5c, 0x4c, 0x2c, 0x67, 0x6b, 0x6b, 0x45, 0xd9, 0x28, 0x28,
|
||||
0x2a, 0x24, 0x24, 0x34, 0x54, 0xd7, 0x5e, 0xff, 0xf2, 0x2b, 0xbc, 0xf9, 0xc6, 0x1b, 0xa2, 0x6c,
|
||||
0x9c, 0xa9, 0xad, 0xa1, 0xa1, 0xa1, 0x81, 0x7f, 0x6c, 0x78, 0x9d, 0xe2, 0xe2, 0x77, 0xcd, 0x5e,
|
||||
0x62, 0x0e, 0x19, 0x32, 0x84, 0xa5, 0x99, 0x99, 0xa4, 0xa5, 0xa7, 0xe9, 0x96, 0xac, 0x73, 0xe3,
|
||||
0x95, 0x54, 0x57, 0x9b, 0x2e, 0x64, 0x19, 0xf2, 0xf4, 0xb3, 0xcf, 0xf2, 0xd8, 0x13, 0x8f, 0x9b,
|
||||
0x2d, 0xdf, 0xdc, 0xdc, 0x4c, 0x44, 0x68, 0x28, 0x97, 0x5b, 0x2f, 0xeb, 0xfa, 0x14, 0x0a, 0x05,
|
||||
0x87, 0xca, 0x0f, 0x9b, 0x1d, 0x48, 0x03, 0x23, 0x8f, 0x59, 0x81, 0xea, 0x13, 0x27, 0x98, 0x3d,
|
||||
0xeb, 0x0f, 0x14, 0x15, 0x16, 0x8a, 0xaa, 0x2f, 0xb4, 0xb7, 0xb7, 0xb3, 0x76, 0xcd, 0x1a, 0x32,
|
||||
0x96, 0x3c, 0x45, 0xa7, 0x56, 0x0b, 0xc0, 0x53, 0xaa, 0xa5, 0x16, 0xf9, 0x90, 0x97, 0x9b, 0xa3,
|
||||
0x77, 0x33, 0x4d, 0x51, 0xb4, 0xb3, 0xd0, 0x48, 0x3e, 0xe5, 0xd1, 0x05, 0xa2, 0xb2, 0x88, 0x14,
|
||||
0x00, 0xd7, 0x78, 0xe2, 0xb1, 0xc7, 0x69, 0x68, 0x68, 0xb0, 0x58, 0x7f, 0x5f, 0x49, 0x09, 0x6b,
|
||||
0xb3, 0xaf, 0x56, 0x25, 0xa3, 0xa2, 0xa3, 0x09, 0x9c, 0x30, 0x41, 0xb4, 0x8d, 0xc6, 0x86, 0x46,
|
||||
0x76, 0x16, 0x14, 0x98, 0x25, 0xab, 0xd5, 0x6a, 0x29, 0xc8, 0xcf, 0xd7, 0xeb, 0x73, 0x72, 0x72,
|
||||
0x22, 0x29, 0x25, 0x45, 0xd4, 0x98, 0x66, 0x4f, 0x02, 0x9d, 0x9d, 0x9d, 0xd9, 0x71, 0x83, 0x73,
|
||||
0xab, 0x57, 0xae, 0xa4, 0xb6, 0xa6, 0x46, 0xd4, 0x60, 0x19, 0x2a, 0x15, 0x93, 0xa7, 0x4c, 0xd1,
|
||||
0xeb, 0xf3, 0xf1, 0xf5, 0x11, 0x65, 0xa3, 0xaf, 0x68, 0x6a, 0x6c, 0xec, 0xb5, 0x8d, 0x1d, 0xdb,
|
||||
0xb7, 0x91, 0xf8, 0x70, 0x22, 0xa3, 0xc7, 0x8c, 0x61, 0x69, 0xa6, 0x8a, 0xb4, 0x85, 0x8b, 0x44,
|
||||
0xdb, 0xc8, 0xcb, 0xcd, 0x21, 0x39, 0x25, 0x05, 0x17, 0xd7, 0x9e, 0x9f, 0xe2, 0x0f, 0xf7, 0xec,
|
||||
0xe1, 0xfc, 0xf9, 0xf3, 0x7a, 0x7d, 0x73, 0xe2, 0xe3, 0xf1, 0xf6, 0xf6, 0x16, 0x35, 0x9e, 0xd9,
|
||||
0x01, 0x20, 0x97, 0xcb, 0x09, 0x8f, 0x08, 0xd7, 0xb5, 0xdd, 0xdd, 0xdd, 0x45, 0x0d, 0x04, 0x30,
|
||||
0x76, 0xdc, 0x58, 0x3d, 0x1b, 0xf6, 0xc4, 0x5d, 0x77, 0xdd, 0x45, 0x70, 0x48, 0x08, 0x23, 0x47,
|
||||
0x8d, 0xa4, 0xab, 0xab, 0x8b, 0xe3, 0xc7, 0x8e, 0x73, 0xf4, 0xc8, 0x11, 0x51, 0x36, 0x3a, 0xb5,
|
||||
0x9d, 0x14, 0x15, 0x16, 0xf2, 0xdc, 0x0b, 0x2f, 0x30, 0x3d, 0x32, 0x92, 0x29, 0x53, 0xa7, 0x70,
|
||||
0xfc, 0xd8, 0x71, 0x51, 0x36, 0xae, 0x67, 0x01, 0x53, 0x73, 0x81, 0xfc, 0x6d, 0xdb, 0x8d, 0xfa,
|
||||
0x16, 0xa5, 0xa5, 0x8a, 0x1a, 0x0b, 0xa4, 0x57, 0x80, 0x8e, 0x98, 0x99, 0xb1, 0xac, 0x5b, 0xff,
|
||||
0x0a, 0x19, 0x2a, 0x15, 0x2a, 0xb5, 0x9a, 0x82, 0xa2, 0x42, 0xfe, 0xfc, 0xe4, 0x93, 0xa2, 0xed,
|
||||
0x94, 0x95, 0xfe, 0x56, 0xb7, 0x58, 0x92, 0x91, 0x61, 0x91, 0x2f, 0xa6, 0xe6, 0x02, 0x95, 0x15,
|
||||
0x15, 0x46, 0x93, 0xcc, 0xb0, 0xf0, 0x70, 0xb3, 0x67, 0xfe, 0x37, 0x22, 0x05, 0x40, 0x0f, 0x2c,
|
||||
0x4a, 0x4b, 0xd5, 0x2d, 0x0d, 0xcd, 0xe5, 0xfb, 0xba, 0x3a, 0x9a, 0x9a, 0xae, 0x7e, 0x26, 0x8f,
|
||||
0x98, 0x36, 0x8d, 0xa9, 0x41, 0x53, 0x45, 0x8f, 0x6b, 0x6a, 0x2e, 0xb0, 0xe5, 0xad, 0xb7, 0x8c,
|
||||
0xfa, 0x52, 0xd3, 0xd3, 0x44, 0x8f, 0x03, 0x52, 0x00, 0xf4, 0x88, 0x97, 0x97, 0x17, 0x0a, 0x85,
|
||||
0x42, 0xb4, 0x5e, 0x7d, 0x7d, 0xbd, 0xee, 0xe7, 0x25, 0x19, 0xd6, 0x5d, 0x11, 0x7c, 0x7b, 0xee,
|
||||
0x5b, 0xca, 0x0e, 0x94, 0xea, 0xf5, 0xf9, 0xf9, 0xf9, 0x11, 0x19, 0x15, 0x65, 0xd1, 0x38, 0x76,
|
||||
0x1b, 0x00, 0x81, 0x81, 0x81, 0x6c, 0xdc, 0xb4, 0x89, 0xdc, 0xcd, 0x9b, 0x89, 0x57, 0x2a, 0x01,
|
||||
0x58, 0x98, 0xba, 0x88, 0x3d, 0x25, 0x7b, 0xd9, 0xf5, 0xcf, 0x0f, 0x48, 0x4d, 0x4b, 0x43, 0x26,
|
||||
0xeb, 0xfb, 0xed, 0x8c, 0xb7, 0xdf, 0x7e, 0xbb, 0x68, 0x9d, 0xc6, 0x86, 0xdf, 0x26, 0x94, 0xe1,
|
||||
0x11, 0xe1, 0x4c, 0x0d, 0x0a, 0xb2, 0xc8, 0xc6, 0xcd, 0xb2, 0xc0, 0xb6, 0xad, 0x5b, 0xe9, 0xea,
|
||||
0xea, 0xd2, 0xeb, 0x4b, 0x7b, 0x6c, 0xb1, 0xc5, 0x95, 0x49, 0xbb, 0x2c, 0x05, 0xfb, 0xfa, 0xfa,
|
||||
0x52, 0x50, 0x54, 0xa8, 0x5b, 0xcf, 0xce, 0x88, 0x8d, 0x61, 0x7a, 0x64, 0x24, 0xf1, 0x09, 0x4a,
|
||||
0x9d, 0x4c, 0x60, 0x60, 0x20, 0x1d, 0x37, 0x59, 0x0a, 0x59, 0x1b, 0x4b, 0x82, 0xac, 0xab, 0x4b,
|
||||
0xbf, 0x8e, 0x90, 0xa1, 0x5a, 0xca, 0x82, 0xa4, 0x64, 0xd1, 0x76, 0x0c, 0x57, 0x04, 0x4d, 0x4d,
|
||||
0x4d, 0xec, 0xde, 0xb5, 0x4b, 0x4f, 0x46, 0xa1, 0x50, 0xa0, 0x54, 0x2a, 0x6f, 0xa6, 0x6e, 0x16,
|
||||
0x76, 0x99, 0x01, 0xe6, 0x28, 0x95, 0x0c, 0x75, 0x71, 0x61, 0x5d, 0x76, 0x36, 0xe1, 0x21, 0xa1,
|
||||
0xe4, 0x6f, 0xdf, 0x41, 0x7c, 0x82, 0x92, 0xa3, 0x47, 0x8e, 0x70, 0xbf, 0xbf, 0x3f, 0x33, 0x1f,
|
||||
0x98, 0x41, 0x4b, 0x4b, 0x0b, 0xf3, 0x93, 0x1e, 0xb1, 0xb5, 0xab, 0x66, 0x11, 0x1a, 0x16, 0x46,
|
||||
0x50, 0x70, 0xb0, 0x68, 0x3d, 0xc3, 0x2c, 0x50, 0x58, 0x50, 0x40, 0xdb, 0x65, 0xfd, 0xd7, 0x42,
|
||||
0xf2, 0x82, 0x14, 0xd1, 0xe5, 0xe3, 0x1b, 0xb1, 0xcb, 0x00, 0x18, 0x35, 0x6a, 0x14, 0x70, 0x75,
|
||||
0x69, 0xf6, 0xe8, 0xc2, 0x85, 0xb8, 0xb9, 0xbb, 0x01, 0x57, 0x9f, 0xc6, 0x27, 0x97, 0x3c, 0xc5,
|
||||
0xdc, 0xc4, 0x44, 0x5a, 0x2f, 0xb5, 0x72, 0xcf, 0xdd, 0x77, 0xdb, 0xd2, 0x4d, 0x51, 0xa8, 0x97,
|
||||
0x2f, 0xb7, 0x48, 0xef, 0xfa, 0x5c, 0x40, 0xab, 0xd5, 0x52, 0xb8, 0x73, 0xa7, 0xde, 0x35, 0x27,
|
||||
0x27, 0x27, 0x92, 0x17, 0x2c, 0xe8, 0x95, 0x5f, 0x76, 0xf9, 0x0a, 0x70, 0x76, 0x76, 0x06, 0x30,
|
||||
0xfa, 0xe5, 0x82, 0x43, 0x42, 0x08, 0x0e, 0x09, 0xd1, 0xb5, 0xaf, 0x97, 0x5e, 0x6f, 0x05, 0xa6,
|
||||
0x4c, 0x9d, 0x42, 0x70, 0x48, 0x08, 0x15, 0x47, 0x8f, 0x8a, 0xd2, 0xbb, 0x9e, 0x05, 0xbc, 0x86,
|
||||
0x7b, 0xf1, 0xd3, 0xf9, 0x9f, 0xf4, 0xae, 0x59, 0x52, 0xf8, 0x31, 0xc4, 0x2e, 0x03, 0xa0, 0x20,
|
||||
0x3f, 0x9f, 0xd2, 0xd2, 0x03, 0x26, 0xe5, 0x04, 0x41, 0xe8, 0x07, 0x6f, 0xac, 0x87, 0x4a, 0x9d,
|
||||
0xc9, 0x23, 0x0f, 0xcf, 0x13, 0xad, 0xf7, 0x56, 0x5e, 0x1e, 0xc3, 0xef, 0x18, 0x6e, 0xd4, 0x6f,
|
||||
0x49, 0xe1, 0xc7, 0x10, 0xbb, 0x0c, 0x80, 0xea, 0xea, 0xea, 0x9b, 0x7e, 0x4d, 0xf3, 0xf0, 0xf0,
|
||||
0x20, 0x2a, 0x3a, 0x9a, 0xdb, 0x86, 0xdc, 0x46, 0xd5, 0x67, 0x55, 0xa2, 0x4b, 0xd1, 0xb6, 0x66,
|
||||
0x6a, 0x50, 0x10, 0xa1, 0x61, 0x61, 0x1c, 0x29, 0x2f, 0x17, 0xa5, 0x57, 0x5f, 0x5f, 0xaf, 0xb7,
|
||||
0xb4, 0x04, 0xcb, 0x0b, 0x3f, 0x86, 0xd8, 0xe5, 0x1c, 0xe0, 0x99, 0xac, 0x2c, 0x6a, 0xbf, 0x3d,
|
||||
0x47, 0x4c, 0x6c, 0xac, 0xae, 0x2f, 0x6e, 0xd6, 0x2c, 0x0e, 0x68, 0xca, 0x58, 0xbf, 0xe1, 0x35,
|
||||
0x5e, 0xca, 0xce, 0xe6, 0xc3, 0x92, 0xbd, 0x24, 0xce, 0x13, 0xff, 0x34, 0xd9, 0x9a, 0xcc, 0x65,
|
||||
0x6a, 0xab, 0xd8, 0xb1, 0xb4, 0xf0, 0x63, 0x88, 0x5d, 0x06, 0xc0, 0xdd, 0xf7, 0x5c, 0x9d, 0xdc,
|
||||
0xd5, 0xd6, 0xd4, 0x20, 0x93, 0xc9, 0xc8, 0x50, 0xa9, 0xd8, 0xf8, 0xe6, 0x26, 0x14, 0x9e, 0x9e,
|
||||
0x1c, 0xd4, 0x68, 0x78, 0x79, 0xed, 0x5a, 0xae, 0x5c, 0xb9, 0xc2, 0x5f, 0x9e, 0x7e, 0xda, 0xc6,
|
||||
0x9e, 0x8a, 0x67, 0xd2, 0xe4, 0xc9, 0xbd, 0xfe, 0x1e, 0xd2, 0x9b, 0xc2, 0x8f, 0x21, 0x76, 0xf9,
|
||||
0x0a, 0xa8, 0xad, 0xa9, 0x61, 0x66, 0x5c, 0x1c, 0x1b, 0x73, 0xde, 0xa4, 0x53, 0xab, 0xc5, 0x3f,
|
||||
0x20, 0x00, 0xad, 0x56, 0x4b, 0xf6, 0x4b, 0x2f, 0xb1, 0x7d, 0xeb, 0x36, 0x00, 0x66, 0xc4, 0xc4,
|
||||
0x30, 0x61, 0xe2, 0x44, 0x9c, 0x9c, 0x9c, 0x6c, 0xec, 0xad, 0x78, 0x54, 0x6a, 0x75, 0xaf, 0x76,
|
||||
0x36, 0xa7, 0x2e, 0x4e, 0xb7, 0xda, 0x96, 0x34, 0xbb, 0xcc, 0x00, 0x9b, 0x73, 0xf3, 0xa8, 0xac,
|
||||
0xa8, 0x60, 0xec, 0xd8, 0xb1, 0xf8, 0x07, 0x04, 0xf0, 0x7d, 0x5d, 0x1d, 0x49, 0xf3, 0xe6, 0xeb,
|
||||
0x6e, 0xbe, 0xe7, 0x30, 0x4f, 0xc6, 0x8d, 0x1b, 0x47, 0xcd, 0xd7, 0x35, 0x74, 0x74, 0x74, 0xd8,
|
||||
0xd8, 0x5b, 0xf1, 0x4c, 0x9c, 0x34, 0x89, 0x88, 0x69, 0xd3, 0x2c, 0xd2, 0x55, 0x28, 0x14, 0x24,
|
||||
0x24, 0x24, 0x58, 0xcd, 0x17, 0x8b, 0x33, 0x80, 0x25, 0x25, 0x52, 0x73, 0x69, 0x69, 0x69, 0x21,
|
||||
0x69, 0xde, 0x7c, 0x7c, 0x7c, 0x7c, 0x70, 0x75, 0x73, 0xe3, 0xdc, 0x37, 0xdf, 0xd0, 0xd9, 0xf9,
|
||||
0x5b, 0x75, 0xad, 0xa5, 0xb9, 0x85, 0x88, 0xd0, 0x30, 0xae, 0xdc, 0x82, 0x37, 0xff, 0x3a, 0x2a,
|
||||
0x75, 0x26, 0x9f, 0x1e, 0x3a, 0x24, 0x5a, 0xaf, 0xb7, 0x85, 0x1f, 0x43, 0x2c, 0x0e, 0x80, 0x61,
|
||||
0x5e, 0xc3, 0x4c, 0x0b, 0x19, 0xf0, 0xeb, 0xaf, 0xbf, 0x9a, 0x25, 0xf7, 0xc7, 0xd9, 0x0f, 0xe2,
|
||||
0xef, 0x1f, 0xd0, 0xed, 0xf5, 0x96, 0xe6, 0x66, 0xaa, 0xaa, 0xaa, 0xa8, 0xac, 0xa8, 0x10, 0xed,
|
||||
0x83, 0xbd, 0x30, 0x61, 0xe2, 0x44, 0xa6, 0x47, 0x46, 0xf2, 0xc9, 0xc1, 0x83, 0x66, 0xeb, 0x38,
|
||||
0x3a, 0x3a, 0x92, 0x94, 0x2c, 0xbe, 0xa4, 0xdc, 0xa3, 0x4d, 0x4b, 0x15, 0xc7, 0x8c, 0xf9, 0xbd,
|
||||
0x68, 0x1d, 0xc3, 0x42, 0x46, 0x77, 0x44, 0x47, 0x3f, 0x40, 0xc2, 0xdc, 0x87, 0x4c, 0xca, 0xe5,
|
||||
0xe5, 0xe4, 0xb2, 0x2e, 0x3b, 0x5b, 0xb4, 0x1f, 0xf6, 0x82, 0x7a, 0xf9, 0x32, 0x0e, 0x7d, 0xf2,
|
||||
0x89, 0xd9, 0xf5, 0x8c, 0x39, 0xf1, 0xf1, 0x66, 0x9d, 0xae, 0x16, 0x83, 0xc5, 0x01, 0x10, 0x33,
|
||||
0x33, 0x96, 0xb5, 0x6b, 0xd6, 0x88, 0xd2, 0x29, 0x7e, 0xe7, 0x1d, 0x62, 0x66, 0xc6, 0xe2, 0xe7,
|
||||
0xe7, 0xd7, 0xa3, 0x5c, 0x5e, 0x6e, 0x2e, 0x1f, 0xbc, 0xbf, 0xbb, 0xdb, 0xeb, 0x1e, 0x0a, 0x05,
|
||||
0xea, 0x65, 0xcb, 0x49, 0x5f, 0x9c, 0xce, 0xeb, 0xaf, 0xbd, 0x26, 0xca, 0x07, 0x7b, 0x22, 0x60,
|
||||
0xfc, 0x78, 0x22, 0xa3, 0xa2, 0xd0, 0x94, 0x95, 0x99, 0x16, 0xc6, 0x7a, 0x4b, 0xbf, 0x1b, 0xb1,
|
||||
0x38, 0x00, 0xfc, 0xfc, 0xfc, 0x88, 0x9b, 0x35, 0x8b, 0x7d, 0x25, 0x25, 0x66, 0xeb, 0x9c, 0x3b,
|
||||
0x77, 0x8e, 0xb8, 0x19, 0x31, 0x78, 0x8f, 0xf0, 0xc6, 0xd5, 0xc5, 0x95, 0xfa, 0x86, 0x06, 0x94,
|
||||
0x09, 0x4a, 0xbd, 0x6d, 0xe1, 0x00, 0x0d, 0xf5, 0xf5, 0x46, 0x7b, 0xf1, 0x6f, 0x64, 0xc8, 0x85,
|
||||
0x5f, 0x68, 0x6e, 0x6e, 0xc6, 0x41, 0x2e, 0xc7, 0xb1, 0x9b, 0xd3, 0xc3, 0xb7, 0x0a, 0x2a, 0x75,
|
||||
0x26, 0x07, 0x35, 0x1a, 0x93, 0x59, 0xc0, 0x5a, 0x85, 0x1f, 0x43, 0x7a, 0xf5, 0xd7, 0x7b, 0x7e,
|
||||
0xe5, 0x0b, 0x9c, 0xfa, 0xf2, 0x4b, 0x7e, 0xf8, 0xe1, 0x07, 0xb3, 0x75, 0xba, 0xba, 0xba, 0x4c,
|
||||
0xbe, 0x0a, 0x9e, 0xc9, 0xca, 0x32, 0xeb, 0x15, 0xb0, 0xf7, 0xc3, 0xff, 0xd0, 0xda, 0xda, 0x6a,
|
||||
0xf6, 0xd8, 0xf6, 0x48, 0xc0, 0xf8, 0xf1, 0x44, 0x45, 0x47, 0x53, 0x56, 0x5a, 0xda, 0xa3, 0x5c,
|
||||
0x5f, 0x3c, 0xfd, 0xd0, 0xcb, 0x00, 0xf0, 0x1e, 0x31, 0x82, 0xe2, 0xdd, 0xbb, 0x58, 0x9e, 0xa9,
|
||||
0xa6, 0xfc, 0xb0, 0xf5, 0x4e, 0xec, 0xd6, 0xd4, 0x7c, 0xdd, 0xe3, 0x3a, 0xf9, 0xe2, 0xc5, 0x5f,
|
||||
0xf8, 0xec, 0xd8, 0x71, 0xde, 0x2b, 0x2e, 0xb6, 0xda, 0x98, 0xb6, 0x44, 0xa5, 0xce, 0x44, 0x53,
|
||||
0x56, 0xd6, 0x6d, 0x16, 0xb0, 0x66, 0xe1, 0xc7, 0x90, 0x5e, 0xe7, 0x4f, 0x6f, 0x6f, 0x6f, 0xf2,
|
||||
0x77, 0x16, 0x70, 0xac, 0xb2, 0x92, 0x3d, 0xff, 0xfa, 0x37, 0xe5, 0x87, 0x0f, 0x53, 0xf7, 0x7d,
|
||||
0x5d, 0x8f, 0x87, 0x2b, 0xe4, 0x72, 0x39, 0xc3, 0xef, 0xb8, 0x03, 0x1f, 0x1f, 0x1f, 0x46, 0x8f,
|
||||
0x1e, 0x63, 0x74, 0x3d, 0x2f, 0x27, 0x97, 0xbc, 0x9c, 0xdc, 0xde, 0xba, 0x76, 0xcb, 0xe0, 0x1f,
|
||||
0x10, 0x40, 0xf4, 0x8c, 0x07, 0x28, 0xfd, 0xf8, 0xe6, 0x1f, 0xc0, 0xac, 0x59, 0xf8, 0x31, 0xc4,
|
||||
0xe2, 0x7f, 0x11, 0xd3, 0x13, 0x9d, 0x5a, 0x2d, 0x3f, 0x5f, 0xb8, 0x40, 0x73, 0x73, 0x33, 0xda,
|
||||
0x6b, 0x6b, 0xf5, 0xa1, 0x2e, 0x2e, 0x38, 0x3b, 0x39, 0x31, 0xd4, 0xc5, 0x05, 0x4f, 0x4f, 0x4f,
|
||||
0xd1, 0x9b, 0x2d, 0x07, 0x3a, 0xff, 0x3d, 0x75, 0x8a, 0xf8, 0xd9, 0x7f, 0x32, 0xca, 0x02, 0x62,
|
||||
0x8f, 0x7a, 0x89, 0xa5, 0x4f, 0x66, 0x50, 0x72, 0x47, 0x47, 0x7c, 0x7d, 0x7d, 0xf1, 0xf5, 0xf5,
|
||||
0xed, 0x0b, 0xf3, 0x03, 0x92, 0xfb, 0xfc, 0xfd, 0x09, 0x09, 0x0d, 0x35, 0xfa, 0x52, 0xf8, 0x48,
|
||||
0x72, 0x72, 0x9f, 0xdd, 0x7c, 0xb0, 0xd3, 0x52, 0xf0, 0x60, 0xa4, 0xad, 0xad, 0x8d, 0xd3, 0xa7,
|
||||
0x4f, 0xeb, 0xf5, 0x39, 0x3a, 0x3a, 0x92, 0x2c, 0xf2, 0xa8, 0x97, 0x58, 0xa4, 0x00, 0xb0, 0x13,
|
||||
0x76, 0xbd, 0xf7, 0x9e, 0xd1, 0xf1, 0xb4, 0x39, 0xf1, 0xf1, 0xdc, 0xe9, 0x63, 0xdd, 0xc2, 0x8f,
|
||||
0x21, 0x52, 0x00, 0xd8, 0x01, 0x82, 0x20, 0xf0, 0xf6, 0x0e, 0xe3, 0xdd, 0xcd, 0x7d, 0xb5, 0xf4,
|
||||
0xbb, 0x11, 0x29, 0x00, 0xec, 0x80, 0xb2, 0x03, 0xa5, 0x9c, 0x3d, 0x7b, 0x56, 0xaf, 0x2f, 0x34,
|
||||
0x2c, 0xac, 0x4f, 0x0a, 0x3f, 0x86, 0x48, 0x01, 0x60, 0x07, 0x6c, 0xdd, 0xb2, 0xc5, 0xa8, 0x2f,
|
||||
0x35, 0x3d, 0xbd, 0x5f, 0xc6, 0x96, 0x02, 0xc0, 0xc6, 0x7c, 0x75, 0xe6, 0x2b, 0xa3, 0x9d, 0xc2,
|
||||
0x7e, 0x7e, 0x7e, 0x44, 0x45, 0x47, 0xf5, 0xcb, 0xf8, 0x52, 0x00, 0xd8, 0x98, 0x2d, 0x9b, 0x37,
|
||||
0x1b, 0xad, 0xfd, 0xfb, 0xb2, 0xf0, 0x63, 0x48, 0x9f, 0x14, 0x82, 0x24, 0xcc, 0xa3, 0xbe, 0xbe,
|
||||
0x9e, 0xe9, 0x61, 0xe1, 0x7a, 0xfb, 0x24, 0xfa, 0xba, 0xf0, 0x63, 0x88, 0x94, 0x01, 0x6c, 0xc8,
|
||||
0xdb, 0x3b, 0x76, 0x18, 0x6d, 0x92, 0x49, 0x4a, 0xb1, 0xee, 0x8e, 0x1f, 0x53, 0x48, 0x19, 0xc0,
|
||||
0x86, 0xb4, 0xb6, 0xb6, 0xa2, 0x35, 0x38, 0xdd, 0xe4, 0xea, 0xea, 0xda, 0xaf, 0x9f, 0xb8, 0xa5,
|
||||
0x00, 0x18, 0xe4, 0x38, 0x00, 0xb7, 0xd6, 0xf9, 0x2a, 0x09, 0xab, 0xe2, 0x00, 0xf4, 0xfe, 0xdf,
|
||||
0x63, 0x49, 0xdc, 0xaa, 0x34, 0x3a, 0x00, 0xe2, 0x0e, 0xaa, 0x49, 0x0c, 0x24, 0xca, 0x65, 0x82,
|
||||
0x20, 0x44, 0x03, 0x07, 0x90, 0xe6, 0x01, 0x83, 0x0d, 0x01, 0x88, 0x75, 0x90, 0xc9, 0x64, 0x65,
|
||||
0xc0, 0x8b, 0xb6, 0xf6, 0x46, 0xa2, 0xdf, 0xf9, 0x9b, 0x4c, 0x26, 0x3b, 0xa0, 0x7b, 0xea, 0x05,
|
||||
0x41, 0x98, 0x0b, 0xa8, 0x81, 0x89, 0xc0, 0x50, 0x9b, 0xb9, 0x25, 0xd1, 0x97, 0xb4, 0x03, 0x9f,
|
||||
0x03, 0xeb, 0x65, 0x32, 0xd9, 0x2e, 0x80, 0xff, 0x03, 0xff, 0x08, 0x81, 0xdd, 0xa8, 0xcb, 0xf5,
|
||||
0x99, 0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
};
|
@@ -92,18 +92,52 @@
|
||||
|
||||
//------------- CLASS -------------//
|
||||
#define CFG_TUD_MTP 1
|
||||
|
||||
#define CFG_TUD_MANUFACTURER "TinyUsb Manufacturer"
|
||||
#define CFG_TUD_MODEL "TinyUsb Device"
|
||||
|
||||
#define CFG_MTP_EP_SIZE 64
|
||||
#define CFG_MTP_EVT_EP_SIZE 64
|
||||
#define CFG_MTP_EVT_INTERVAL 100
|
||||
|
||||
#define CFG_MTP_DEVICE_VERSION "1.0"
|
||||
#define CFG_MTP_SERIAL_NUMBER "0"
|
||||
//------------- MTP device info -------------//
|
||||
#define CFG_TUD_MTP_DEVICEINFO_EXTENSIONS "microsoft.com: 1.0; "
|
||||
#define CFG_TUD_MTP_DEVICEINFO_SUPPORTED_OPERATIONS \
|
||||
MTP_OP_GET_DEVICE_INFO, \
|
||||
MTP_OP_OPEN_SESSION, \
|
||||
MTP_OP_CLOSE_SESSION, \
|
||||
MTP_OP_GET_STORAGE_IDS, \
|
||||
MTP_OP_GET_STORAGE_INFO, \
|
||||
MTP_OP_GET_NUM_OBJECTS, \
|
||||
MTP_OP_GET_OBJECT_HANDLES, \
|
||||
MTP_OP_GET_OBJECT_INFO, \
|
||||
MTP_OP_GET_OBJECT, \
|
||||
MTP_OP_DELETE_OBJECT, \
|
||||
MTP_OP_SEND_OBJECT_INFO, \
|
||||
MTP_OP_SEND_OBJECT, \
|
||||
MTP_OP_FORMAT_STORE, \
|
||||
MTP_OP_RESET_DEVICE, \
|
||||
MTP_OP_GET_DEVICE_PROP_DESC, \
|
||||
MTP_OP_GET_DEVICE_PROP_VALUE, \
|
||||
MTP_OP_SET_DEVICE_PROP_VALUE
|
||||
|
||||
#define CFG_TUD_MTP_DEVICEINFO_SUPPORTED_EVENTS \
|
||||
MTP_EVENT_OBJECT_ADDED
|
||||
|
||||
#define CFG_TUD_MTP_DEVICEINFO_SUPPORTED_DEVICE_PROPERTIES \
|
||||
MTP_DEV_PROP_DEVICE_FRIENDLY_NAME
|
||||
|
||||
#define CFG_TUD_MTP_DEVICEINFO_CAPTURE_FORMATS \
|
||||
MTP_OBJ_FORMAT_UNDEFINED, \
|
||||
MTP_OBJ_FORMAT_ASSOCIATION, \
|
||||
MTP_OBJ_FORMAT_TEXT, \
|
||||
MTP_OBJ_FORMAT_PNG
|
||||
|
||||
#define CFG_TUD_MTP_DEVICEINFO_PLAYBACK_FORMATS \
|
||||
MTP_OBJ_FORMAT_UNDEFINED, \
|
||||
MTP_OBJ_FORMAT_ASSOCIATION, \
|
||||
MTP_OBJ_FORMAT_TEXT, \
|
||||
MTP_OBJ_FORMAT_PNG
|
||||
|
||||
#define CFG_TUD_MANUFACTURER "TinyUsb Manufacturer"
|
||||
#define CFG_TUD_MODEL "TinyUsb Device"
|
||||
#define CFG_MTP_INTERFACE (CFG_TUD_MODEL " MTP")
|
||||
#define CFG_MTP_STORAGE_ID_COUNT 1
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
@@ -470,7 +470,7 @@ typedef enum {
|
||||
MTP_OP_DELETE_OBJECT = 0x100Bu,
|
||||
MTP_OP_SEND_OBJECT_INFO = 0x100Cu,
|
||||
MTP_OP_SEND_OBJECT = 0x100Du,
|
||||
MTP_OP_INITIAL_CAPTURE = 0x100Eu,
|
||||
MTP_OP_INITIATE_CAPTURE = 0x100Eu,
|
||||
MTP_OP_FORMAT_STORE = 0x100Fu,
|
||||
MTP_OP_RESET_DEVICE = 0x1010u,
|
||||
MTP_OP_SELF_TEST = 0x1011u,
|
||||
@@ -734,6 +734,10 @@ typedef struct TU_ATTR_PACKED {
|
||||
uint16_t association_type;
|
||||
uint32_t association_desc;
|
||||
uint32_t sequence_number;
|
||||
// mtp_string_t() filename
|
||||
// mtp_string_t() date_created
|
||||
// mtp_string_t() date_modified
|
||||
// mtp_string_t() keywords
|
||||
} mtp_object_info_header_t;
|
||||
|
||||
// Device property desc up to get/set
|
||||
@@ -775,12 +779,15 @@ typedef struct TU_ATTR_PACKED {
|
||||
//--------------------------------------------------------------------+
|
||||
|
||||
TU_ATTR_ALWAYS_INLINE static inline uint32_t mtp_container_add_raw(mtp_generic_container_t* p_container, const void* data, uint32_t len) {
|
||||
TU_ASSERT(p_container->len + len < sizeof(mtp_generic_container_t), 0);
|
||||
memcpy((uint8_t*) p_container + p_container->len, data, len);
|
||||
p_container->len += len;
|
||||
return len;
|
||||
}
|
||||
|
||||
TU_ATTR_ALWAYS_INLINE static inline uint32_t mtp_container_add_array(mtp_generic_container_t* p_container, uint8_t scalar_size, uint32_t count, const void* data) {
|
||||
const uint32_t added_len = 4 + count * scalar_size;
|
||||
TU_ASSERT(p_container->len + added_len < sizeof(mtp_generic_container_t), 0);
|
||||
uint8_t* container8 = (uint8_t*)p_container;
|
||||
|
||||
tu_unaligned_write32(container8 + p_container->len, count);
|
||||
@@ -789,32 +796,43 @@ TU_ATTR_ALWAYS_INLINE static inline uint32_t mtp_container_add_array(mtp_generic
|
||||
memcpy(container8 + p_container->len, data, count * scalar_size);
|
||||
p_container->len += count * scalar_size;
|
||||
|
||||
return 4 + count * scalar_size;
|
||||
return added_len;
|
||||
}
|
||||
|
||||
TU_ATTR_ALWAYS_INLINE static inline uint32_t mtp_container_add_string(mtp_generic_container_t* p_container, uint8_t count, uint16_t* utf16) {
|
||||
const uint32_t added_len = 1 + 2 * count;
|
||||
TU_ASSERT(p_container->len + added_len < sizeof(mtp_generic_container_t), 0);
|
||||
uint8_t* container8 = (uint8_t*) p_container;
|
||||
|
||||
container8[p_container->len] = count;
|
||||
p_container->len++;
|
||||
|
||||
memcpy(container8 + p_container->len, utf16, 2 * count);
|
||||
p_container->len += 2 * count;
|
||||
|
||||
return 1 + 2 * count;
|
||||
return added_len;
|
||||
}
|
||||
|
||||
TU_ATTR_ALWAYS_INLINE static inline uint32_t mtp_container_add_cstring(mtp_generic_container_t* p_container, const char* str) {
|
||||
uint8_t* container8 = (uint8_t*) p_container;
|
||||
const uint8_t len = (uint8_t) (strlen(str) + 1); // include null
|
||||
TU_ASSERT(p_container->len + 1 + 2 * len < sizeof(mtp_generic_container_t), 0);
|
||||
|
||||
uint8_t* container8 = (uint8_t*) p_container;
|
||||
container8[p_container->len] = len;
|
||||
p_container->len++;
|
||||
|
||||
for (uint8_t i = 0; i < len; i++) {
|
||||
container8[p_container->len] = str[i];
|
||||
container8[p_container->len + 1] = 0;
|
||||
p_container->len += 2;
|
||||
if (len == 1) {
|
||||
// empty string (null only)
|
||||
container8[p_container->len] = 0;
|
||||
return 1;
|
||||
} else {
|
||||
for (uint8_t i = 0; i < len; i++) {
|
||||
container8[p_container->len] = str[i];
|
||||
container8[p_container->len + 1] = 0;
|
||||
p_container->len += 2;
|
||||
}
|
||||
return 1 + 2 * len;
|
||||
}
|
||||
return 1 + 2 * len;
|
||||
}
|
||||
|
||||
TU_ATTR_ALWAYS_INLINE static inline uint32_t mtp_container_add_uint8(mtp_generic_container_t* p_container, uint8_t data) {
|
||||
|
@@ -102,6 +102,65 @@ CFG_TUD_MEM_SECTION CFG_TUSB_MEM_ALIGN static mtp_basic_object_info_t _mtpd_soi;
|
||||
CFG_TUD_MEM_SECTION CFG_TUSB_MEM_ALIGN static char _mtp_datestr[20];
|
||||
|
||||
|
||||
//--------------------------------------------------------------------+
|
||||
// Debug
|
||||
//--------------------------------------------------------------------+
|
||||
#if CFG_TUSB_DEBUG >= CFG_TUD_MTP_LOG_LEVEL
|
||||
|
||||
TU_ATTR_UNUSED static tu_lookup_entry_t const _mpt_op_lookup[] = {
|
||||
{.key = MTP_OP_UNDEFINED , .data = "Undefined" } ,
|
||||
{.key = MTP_OP_GET_DEVICE_INFO , .data = "GetDeviceInfo" } ,
|
||||
{.key = MTP_OP_OPEN_SESSION , .data = "OpenSession" } ,
|
||||
{.key = MTP_OP_CLOSE_SESSION , .data = "CloseSession" } ,
|
||||
{.key = MTP_OP_GET_STORAGE_IDS , .data = "GetStorageIDs" } ,
|
||||
{.key = MTP_OP_GET_STORAGE_INFO , .data = "GetStorageInfo" } ,
|
||||
{.key = MTP_OP_GET_NUM_OBJECTS , .data = "GetNumObjects" } ,
|
||||
{.key = MTP_OP_GET_OBJECT_HANDLES , .data = "GetObjectHandles" } ,
|
||||
{.key = MTP_OP_GET_OBJECT_INFO , .data = "GetObjectInfo" } ,
|
||||
{.key = MTP_OP_GET_OBJECT , .data = "GetObject" } ,
|
||||
{.key = MTP_OP_GET_THUMB , .data = "GetThumb" } ,
|
||||
{.key = MTP_OP_DELETE_OBJECT , .data = "DeleteObject" } ,
|
||||
{.key = MTP_OP_SEND_OBJECT_INFO , .data = "SendObjectInfo" } ,
|
||||
{.key = MTP_OP_SEND_OBJECT , .data = "SendObject" } ,
|
||||
{.key = MTP_OP_INITIATE_CAPTURE , .data = "InitiateCapture" } ,
|
||||
{.key = MTP_OP_FORMAT_STORE , .data = "FormatStore" } ,
|
||||
{.key = MTP_OP_RESET_DEVICE , .data = "ResetDevice" } ,
|
||||
{.key = MTP_OP_SELF_TEST , .data = "SelfTest" } ,
|
||||
{.key = MTP_OP_SET_OBJECT_PROTECTION , .data = "SetObjectProtection" } ,
|
||||
{.key = MTP_OP_POWER_DOWN , .data = "PowerDown" } ,
|
||||
{.key = MTP_OP_GET_DEVICE_PROP_DESC , .data = "GetDevicePropDesc" } ,
|
||||
{.key = MTP_OP_GET_DEVICE_PROP_VALUE , .data = "GetDevicePropValue" } ,
|
||||
{.key = MTP_OP_SET_DEVICE_PROP_VALUE , .data = "SetDevicePropValue" } ,
|
||||
{.key = MTP_OP_RESET_DEVICE_PROP_VALUE , .data = "ResetDevicePropValue" } ,
|
||||
{.key = MTP_OP_TERMINATE_OPEN_CAPTURE , .data = "TerminateOpenCapture" } ,
|
||||
{.key = MTP_OP_MOVE_OBJECT , .data = "MoveObject" } ,
|
||||
{.key = MTP_OP_COPY_OBJECT , .data = "CopyObject" } ,
|
||||
{.key = MTP_OP_GET_PARTIAL_OBJECT , .data = "GetPartialObject" } ,
|
||||
{.key = MTP_OP_INITIATE_OPEN_CAPTURE , .data = "InitiateOpenCapture" } ,
|
||||
{.key = MTP_OP_GET_OBJECT_PROPS_SUPPORTED , .data = "GetObjectPropsSupported" } ,
|
||||
{.key = MTP_OP_GET_OBJECT_PROP_DESC , .data = "GetObjectPropDesc" } ,
|
||||
{.key = MTP_OP_GET_OBJECT_PROP_VALUE , .data = "GetObjectPropValue" } ,
|
||||
{.key = MTP_OP_SET_OBJECT_PROP_VALUE , .data = "SetObjectPropValue" } ,
|
||||
{.key = MTP_OP_GET_OBJECT_PROPLIST , .data = "GetObjectPropList" } ,
|
||||
{.key = MTP_OP_GET_OBJECT_PROP_REFERENCES , .data = "GetObjectPropReferences" } ,
|
||||
{.key = MTP_OP_GET_SERVICE_IDS , .data = "GetServiceIDs" } ,
|
||||
{.key = MTP_OP_GET_SERVICE_INFO , .data = "GetServiceInfo" } ,
|
||||
{.key = MTP_OP_GET_SERVICE_CAPABILITIES , .data = "GetServiceCapabilities" } ,
|
||||
{.key = MTP_OP_GET_SERVICE_PROP_DESC , .data = "GetServicePropDesc" } ,
|
||||
{.key = MTP_OP_GET_OBJECT_PROP_LIST , .data = "GetObjectPropList" } ,
|
||||
{.key = MTP_OP_SET_OBJECT_PROP_LIST , .data = "SetObjectPropList" } ,
|
||||
{.key = MTP_OP_GET_INTERDEPENDENT_PROP_DESC , .data = "GetInterdependentPropDesc" } ,
|
||||
{.key = MTP_OP_SEND_OBJECT_PROP_LIST , .data = "SendObjectPropList" }
|
||||
};
|
||||
|
||||
TU_ATTR_UNUSED static tu_lookup_table_t const _mtp_op_table = {
|
||||
.count = TU_ARRAY_SIZE(_mpt_op_lookup),
|
||||
.items = _mpt_op_lookup
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
//--------------------------------------------------------------------+
|
||||
// Helper
|
||||
//--------------------------------------------------------------------+
|
||||
@@ -382,11 +441,12 @@ mtp_phase_type_t mtpd_handle_cmd(mtpd_interface_t* p_mtp) {
|
||||
_mtpd_soi.object_handle = 0;
|
||||
}
|
||||
|
||||
mtp_phase_type_t ret = MTP_PHASE_RESPONSE;
|
||||
tu_lookup_find(&_mtp_op_table, cmd_block.code);
|
||||
TU_LOG_DRV(" MTP command: %s\r\n", (char const*) tu_lookup_find(&_mtp_op_table, cmd_block.code));
|
||||
|
||||
switch (p_container->code) {
|
||||
mtp_phase_type_t ret = MTP_PHASE_RESPONSE;
|
||||
switch (cmd_block.code) {
|
||||
case MTP_OP_GET_DEVICE_INFO: {
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_GET_DEVICE_INFO\n");
|
||||
tud_mtp_device_info_t dev_info = {
|
||||
.standard_version = 100,
|
||||
.mtp_vendor_extension_id = 6, // MTP specs say 0xFFFFFFFF but libMTP check for value 6
|
||||
@@ -435,63 +495,14 @@ mtp_phase_type_t mtpd_handle_cmd(mtpd_interface_t* p_mtp) {
|
||||
break;
|
||||
}
|
||||
|
||||
case MTP_OP_OPEN_SESSION:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_OPEN_SESSION\n");
|
||||
break;
|
||||
|
||||
case MTP_OP_CLOSE_SESSION:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_CLOSE_SESSION\n");
|
||||
break;
|
||||
|
||||
case MTP_OP_GET_STORAGE_IDS:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_GET_STORAGE_IDS\n");
|
||||
break;
|
||||
|
||||
case MTP_OP_GET_STORAGE_INFO:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_GET_STORAGE_INFO for ID=%lu\n", p_container->data[0]);
|
||||
break;
|
||||
|
||||
case MTP_OP_GET_OBJECT_HANDLES:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_GET_OBJECT_HANDLES\n");
|
||||
break;
|
||||
|
||||
case MTP_OP_GET_OBJECT_INFO:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_GET_OBJECT_INFO\n");
|
||||
break;
|
||||
|
||||
case MTP_OP_GET_OBJECT:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_GET_OBJECT\n");
|
||||
break;
|
||||
|
||||
case MTP_OP_DELETE_OBJECT:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_DELETE_OBJECT\n");
|
||||
return mtpd_handle_cmd_delete_object();
|
||||
|
||||
case MTP_OP_GET_DEVICE_PROP_DESC:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_GET_DEVICE_PROP_DESC\n");
|
||||
break;
|
||||
|
||||
case MTP_OP_GET_DEVICE_PROP_VALUE:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_GET_DEVICE_PROP_VALUE\n");
|
||||
break;
|
||||
|
||||
case MTP_OP_SEND_OBJECT_INFO:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_SEND_OBJECT_INFO\n");
|
||||
return mtpd_handle_cmd_send_object_info();
|
||||
case MTP_OP_SEND_OBJECT:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_SEND_OBJECT\n");
|
||||
return mtpd_handle_cmd_send_object();
|
||||
case MTP_OP_FORMAT_STORE:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_FORMAT_STORE\n");
|
||||
return mtpd_handle_cmd_format_store();
|
||||
default:
|
||||
TU_LOG_DRV(" MTP command: MTP_OP_UNKNOWN_COMMAND %x!!!!\n", p_container->code);
|
||||
return false;
|
||||
break;
|
||||
}
|
||||
|
||||
tud_mtp_command_received_cb(0, &cmd_block, p_container);
|
||||
return ret;
|
||||
}
|
||||
#if 0
|
||||
|
||||
mtp_phase_type_t mtpd_handle_data(void)
|
||||
{
|
||||
@@ -614,6 +625,7 @@ mtp_phase_type_t mtpd_handle_cmd_format_store(void)
|
||||
p_container->len = MTP_CONTAINER_HEADER_LENGTH;
|
||||
return MTP_PHASE_RESPONSE;
|
||||
}
|
||||
#endif
|
||||
|
||||
//--------------------------------------------------------------------+
|
||||
// Checker
|
||||
|
Reference in New Issue
Block a user