/**************************************************************************//* *//* Copyright (c) Microsoft Corporation. All rights reserved. *//* *//* This software is licensed under the Microsoft Software License *//* Terms for Microsoft Azure RTOS. Full text of the license can be *//* found in the LICENSE file at https://aka.ms/AzureRTOS_EULA *//* and in the root directory of this software. *//* */.../**************************************************************************//**************************************************************************//**************************************************************************//** *//** USBX Component *//** *//** DFU Class *//** */.../**************************************************************************//**************************************************************************//**************************************************************************//* *//* COMPONENT DEFINITION RELEASE *//* *//* ux_device_class_dfu.h PORTABLE C *//* 6.1.10 *//* AUTHOR *//* *//* Chaoqiong Xiao, Microsoft Corporation *//* *//* DESCRIPTION *//* *//* This file defines the equivalences for the USBX Device Class DFU *//* ACM component. *//* *//* RELEASE HISTORY *//* *//* DATE NAME DESCRIPTION *//* *//* 05-19-2020 Chaoqiong Xiao Initial Version 6.0 *//* 09-30-2020 Chaoqiong Xiao Modified comment(s), *//* used UX prefix to refer to *//* TX symbols instead of using *//* them directly, *//* resulting in version 6.1 *//* 04-02-2021 Chaoqiong Xiao Modified comment(s), *//* added DFU_UPLOAD support, *//* refined dfu_read prototype, *//* removed block count (it's *//* from host request wValue), *//* resulting in version 6.1.6 *//* 08-02-2021 Chaoqiong Xiao Modified comment(s), *//* added extern "C" keyword *//* for compatibility with C++, *//* resulting in version 6.1.8 *//* 01-31-2022 Chaoqiong Xiao Modified comment(s), *//* added standalone support, *//* resulting in version 6.1.10 *//* */.../**************************************************************************/#ifndefUX_DEVICE_CLASS_DFU_H#defineUX_DEVICE_CLASS_DFU_H/* Determine if a C++ compiler is being used. If so, ensure that standard C is used to process the API information. *//* ... */#ifdef__cplusplus/* Yes, C++ compiler is present. Use standard C. */extern"C"{#endif/* Define DFU class descriptor capabilities. */#defineUX_SLAVE_CLASS_DFU_CAPABILITY_WILL_DETACH0x08#defineUX_SLAVE_CLASS_DFU_CAPABILITY_MANIFESTATION_TOLERANT0x04#defineUX_SLAVE_CLASS_DFU_CAPABILITY_CAN_UPLOAD0x02#defineUX_SLAVE_CLASS_DFU_CAPABILITY_CAN_DOWNLOAD0x01/* Define DFU Class USB Class constants. */#defineUX_SLAVE_CLASS_DFU_CLASS0xFE#defineUX_SLAVE_CLASS_DFU_SUBCLASS0x01#defineUX_SLAVE_CLASS_DFU_PROTOCOL_RUNTIME0x01#defineUX_SLAVE_CLASS_DFU_PROTOCOL_DFU_MODE0x02/* Define DFU MODES signals. */#defineUX_DEVICE_CLASS_DFU_MODE_RUNTIME1#defineUX_DEVICE_CLASS_DFU_MODE_DFU2/* Device DFU Requests */#defineUX_SLAVE_CLASS_DFU_COMMAND_DETACH0#defineUX_SLAVE_CLASS_DFU_COMMAND_DOWNLOAD1#defineUX_SLAVE_CLASS_DFU_COMMAND_UPLOAD2#defineUX_SLAVE_CLASS_DFU_COMMAND_GET_STATUS3#defineUX_SLAVE_CLASS_DFU_COMMAND_CLEAR_STATUS4#defineUX_SLAVE_CLASS_DFU_COMMAND_GET_STATE5#defineUX_SLAVE_CLASS_DFU_COMMAND_ABORT6/* Device DFU Status values */#defineUX_SLAVE_CLASS_DFU_STATUS_OK0x00#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_TARGET0x01#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_FILE0x02#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_WRITE0x03#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_ERASE0x04#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_CHECK_ERASED0x05#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_PROG0x06#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_VERIFY0x07#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_ADDRESS0x08#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_NOTDONE0x09#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_FIRMWARE0x0A#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_VENDOR0x0B#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_USBR0x0C#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_POR0x0D#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_UNKNOWN0x0E#defineUX_SLAVE_CLASS_DFU_STATUS_ERROR_STALLEDPKT0x0F#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_APP_IDLE0#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_APP_DETACH1#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_IDLE2#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_DNLOAD_SYNC3#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_DNBUSY4#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_DNLOAD_IDLE5#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_MANIFEST_SYNC6#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_MANIFEST7#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_MANIFEST_WAIT_RESET8#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_UPLOAD_IDLE9#defineUX_SLAVE_CLASS_DFU_STATUS_STATE_DFU_ERROR10/* Define DFU class GET_STATUS command response. */#defineUX_SLAVE_CLASS_DFU_GET_STATUS_STATUS0#defineUX_SLAVE_CLASS_DFU_GET_STATUS_POLL_TIMEOUT1#defineUX_SLAVE_CLASS_DFU_GET_STATUS_STATE4#defineUX_SLAVE_CLASS_DFU_GET_STATUS_STRING5#defineUX_SLAVE_CLASS_DFU_GET_STATUS_LENGTH649 defines/* Status mode for DFU_GETSTATUS 0 - simple mode, status is queried from application in dfuDNLOAD-SYNC and dfuMANIFEST-SYNC state, no bwPollTimeout. 1 - status is queried from application once requested, b0-3 : media status b4-7 : bStatus b8-31: bwPollTimeout bwPollTimeout supported.*//* ... */#ifndefUX_DEVICE_CLASS_DFU_STATUS_MODE#defineUX_DEVICE_CLASS_DFU_STATUS_MODE(0)#endif/* Status mode 0 bwPollTimeout (width: 3 bytes, ~0xFFFFFF). */#ifndefUX_DEVICE_CLASS_DFU_STATUS_POLLTIMEOUT#defineUX_DEVICE_CLASS_DFU_STATUS_POLLTIMEOUT(1)#endif/* Define DFU class GET_STATE command response. */#defineUX_SLAVE_CLASS_DFU_GET_STATE_STATE0#defineUX_SLAVE_CLASS_DFU_GET_STATE_LENGTH1/* Define DFU application notification signals. */#defineUX_SLAVE_CLASS_DFU_NOTIFICATION_BEGIN_DOWNLOAD0x1u#defineUX_SLAVE_CLASS_DFU_NOTIFICATION_END_DOWNLOAD0x2u#defineUX_SLAVE_CLASS_DFU_NOTIFICATION_ABORT_DOWNLOAD0x3u#defineUX_SLAVE_CLASS_DFU_NOTIFICATION_BEGIN_UPLOAD0x5u#defineUX_SLAVE_CLASS_DFU_NOTIFICATION_END_UPLOAD0x6u#defineUX_SLAVE_CLASS_DFU_NOTIFICATION_ABORT_UPLOAD0x7u/* Define DFU application notification signals. */#defineUX_SLAVE_CLASS_DFU_MEDIA_STATUS_OK0#defineUX_SLAVE_CLASS_DFU_MEDIA_STATUS_BUSY1#defineUX_SLAVE_CLASS_DFU_MEDIA_STATUS_ERROR2/* Define DFU thread event signals. */#defineUX_DEVICE_CLASS_DFU_THREAD_EVENT_DISCONNECT0x1u#defineUX_DEVICE_CLASS_DFU_THREAD_EVENT_WAIT_RESET0x2u13 defines/* Define Slave DFU Class Calling Parameter structure */typedefstructUX_SLAVE_CLASS_DFU_PARAMETER_STRUCT{ULONGux_slave_class_dfu_parameter_will_detach;ULONGux_slave_class_dfu_parameter_capabilities;VOID(*ux_slave_class_dfu_parameter_instance_activate)(VOID*);VOID(*ux_slave_class_dfu_parameter_instance_deactivate)(VOID*);UINT(*ux_slave_class_dfu_parameter_read)(VOID*dfu,ULONGblock_number,UCHAR*data_pointer,ULONGlength,ULONG*actual_length);UINT(*ux_slave_class_dfu_parameter_write)(VOID*dfu,ULONGblock_number,UCHAR*data_pointer,ULONGlength,ULONG*media_status);UINT(*ux_slave_class_dfu_parameter_get_status)(VOID*dfu,ULONG*media_status);UINT(*ux_slave_class_dfu_parameter_notify)(VOID*dfu,ULONGnotification);#ifdefUX_DEVICE_CLASS_DFU_CUSTOM_REQUEST_ENABLEUINT(*ux_device_class_dfu_parameter_custom_request)(VOID*dfu,UX_SLAVE_TRANSFER*transfer);#endifUCHAR*ux_slave_class_dfu_parameter_framework;ULONGux_slave_class_dfu_parameter_framework_length;...}UX_SLAVE_CLASS_DFU_PARAMETER;/* Define DFU Class structure. */typedefstructUX_SLAVE_CLASS_DFU_STRUCT{UX_SLAVE_INTERFACE*ux_slave_class_dfu_interface;ULONGux_slave_class_dfu_status;VOID(*ux_slave_class_dfu_instance_activate)(VOID*);VOID(*ux_slave_class_dfu_instance_deactivate)(VOID*);UINT(*ux_slave_class_dfu_read)(VOID*dfu,ULONGblock_number,UCHAR*data_pointer,ULONGlength,ULONG*actual_length);UINT(*ux_slave_class_dfu_write)(VOID*dfu,ULONGblock_number,UCHAR*data_pointer,ULONGlength,ULONG*media_status);UINT(*ux_slave_class_dfu_get_status)(VOID*dfu,ULONG*media_status);UINT(*ux_slave_class_dfu_notify)(VOID*dfu,ULONGnotification);#ifdefUX_DEVICE_CLASS_DFU_CUSTOM_REQUEST_ENABLEUINT(*ux_device_class_dfu_custom_request)(VOID*dfu,UX_SLAVE_TRANSFER*transfer);#endif#if!defined(UX_DEVICE_STANDALONE)UX_THREADux_slave_class_dfu_thread;UCHAR*ux_slave_class_dfu_thread_stack;UX_EVENT_FLAGS_GROUPux_slave_class_dfu_event_flags_group;/* ... */#elseULONGux_device_class_dfu_flags;#endif...}UX_SLAVE_CLASS_DFU;#if!defined(UX_DEVICE_STANDALONE)#define_ux_device_class_dfu_event_flags_set(dfu,flags)do{\_ux_utility_event_flags_set(&(dfu)->ux_slave_class_dfu_event_flags_group,flags,UX_OR);\...}while(0).../* ... */#else#define_ux_device_class_dfu_event_flags_set(dfu,flags)do{\(dfu)->ux_device_class_dfu_flags|=flags;\...}while(0).../* ... */#endif/* Define Device DFU Class prototypes. */UINT_ux_device_class_dfu_activate(UX_SLAVE_CLASS_COMMAND*command);UINT_ux_device_class_dfu_control_request(UX_SLAVE_CLASS_COMMAND*command);UINT_ux_device_class_dfu_deactivate(UX_SLAVE_CLASS_COMMAND*command);UINT_ux_device_class_dfu_entry(UX_SLAVE_CLASS_COMMAND*command);UINT_ux_device_class_dfu_initialize(UX_SLAVE_CLASS_COMMAND*command);VOID_ux_device_class_dfu_thread(ULONGdfu_class);UCHAR_ux_device_class_dfu_state_get(UX_SLAVE_CLASS_DFU*dfu);VOID_ux_device_class_dfu_state_sync(UX_SLAVE_CLASS_DFU*dfu);UINT_ux_device_class_dfu_tasks_run(VOID*class_instance);/* Define Device DFU Class API prototypes. */#defineux_device_class_dfu_entry_ux_device_class_dfu_entry#defineux_device_class_dfu_state_get_ux_device_class_dfu_state_get#defineux_device_class_dfu_state_sync_ux_device_class_dfu_state_sync/* Determine if a C++ compiler is being used. If so, complete the standard C conditional started above. *//* ... */#ifdef__cplusplus}extern "C" { ... }#endif/* ... */...#endif/* UX_DEVICE_CLASS_DFU_H */
Details
Show: from
Types: Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.