Home
last modified time | relevance | path

Searched refs:MSC_GOTO_ON_ERROR (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/src/
Dmsc_host.c294 MSC_GOTO_ON_ERROR( usb_host_client_register(&client_config, &driver->client_handle) ); in msc_host_install()
358MSC_GOTO_ON_ERROR( usb_host_device_open(s_msc_driver->client_handle, device_address, &msc_device->… in msc_host_install_device()
359 MSC_GOTO_ON_ERROR( usb_host_get_active_config_descriptor(msc_device->handle, &config_desc) ); in msc_host_install_device()
360 MSC_GOTO_ON_ERROR( extract_config_from_descriptor(config_desc, &msc_device->config) ); in msc_host_install_device()
361 MSC_GOTO_ON_ERROR( usb_host_transfer_alloc(transfer_size, 0, &msc_device->xfer) ); in msc_host_install_device()
362 MSC_GOTO_ON_ERROR( usb_host_interface_claim(s_msc_driver->client_handle, in msc_host_install_device()
366 MSC_GOTO_ON_ERROR( msc_get_max_lun(msc_device, &lun) ); in msc_host_install_device()
367 MSC_GOTO_ON_ERROR( scsi_cmd_inquiry(msc_device) ); in msc_host_install_device()
368 MSC_GOTO_ON_ERROR( msc_wait_for_ready_state(msc_device, WAIT_FOR_READY_TIMEOUT_MS) ); in msc_host_install_device()
369 MSC_GOTO_ON_ERROR( scsi_cmd_read_capacity(msc_device, &block_size, &block_count) ); in msc_host_install_device()
[all …]
Dmsc_host_vfs.c75 MSC_GOTO_ON_ERROR( ff_diskio_get_drive(&pdrv) ); in msc_host_vfs_register()
85 MSC_GOTO_ON_ERROR( esp_vfs_fat_register(base_path, drive, mount_config->max_files, &fs) ); in msc_host_vfs_register()
92 MSC_GOTO_ON_ERROR( msc_format_storage(block_size, alloc_size, drive) ); in msc_host_vfs_register()
/hal_espressif-3.6.0/examples/peripherals/usb/host/msc/components/msc/private_include/
Dmsc_common.h49 #define MSC_GOTO_ON_ERROR(exp) ESP_GOTO_ON_ERROR(exp, fail, TAG, "") macro