1 /**************************************************************************/
2 /*                                                                        */
3 /*       Copyright (c) Microsoft Corporation. All rights reserved.        */
4 /*                                                                        */
5 /*       This software is licensed under the Microsoft Software License   */
6 /*       Terms for Microsoft Azure RTOS. Full text of the license can be  */
7 /*       found in the LICENSE file at https://aka.ms/AzureRTOS_EULA       */
8 /*       and in the root directory of this software.                      */
9 /*                                                                        */
10 /**************************************************************************/
11 
12 /**************************************************************************/
13 /**************************************************************************/
14 /**                                                                       */
15 /** USBX Component                                                        */
16 /**                                                                       */
17 /**   Device DFU Class                                                    */
18 /**                                                                       */
19 /**************************************************************************/
20 /**************************************************************************/
21 
22 #define UX_SOURCE_CODE
23 
24 
25 /* Include necessary system files.  */
26 
27 #include "ux_api.h"
28 #include "ux_device_class_dfu.h"
29 #include "ux_device_stack.h"
30 
31 
32 /**************************************************************************/
33 /*                                                                        */
34 /*  FUNCTION                                               RELEASE        */
35 /*                                                                        */
36 /*    _ux_device_class_dfu_deactivate                     PORTABLE C      */
37 /*                                                           6.1.12       */
38 /*  AUTHOR                                                                */
39 /*                                                                        */
40 /*    Chaoqiong Xiao, Microsoft Corporation                               */
41 /*                                                                        */
42 /*  DESCRIPTION                                                           */
43 /*                                                                        */
44 /*    This function deactivate an instance of the dfu class.              */
45 /*                                                                        */
46 /*  INPUT                                                                 */
47 /*                                                                        */
48 /*    command                               Pointer to a class command    */
49 /*                                                                        */
50 /*  OUTPUT                                                                */
51 /*                                                                        */
52 /*    Completion Status                                                   */
53 /*                                                                        */
54 /*  CALLS                                                                 */
55 /*                                                                        */
56 /*    _ux_device_stack_transfer_all_request_abort Abort all transfers     */
57 /*                                                                        */
58 /*  CALLED BY                                                             */
59 /*                                                                        */
60 /*    DFU Class                                                           */
61 /*                                                                        */
62 /*  RELEASE HISTORY                                                       */
63 /*                                                                        */
64 /*    DATE              NAME                      DESCRIPTION             */
65 /*                                                                        */
66 /*  05-19-2020     Chaoqiong Xiao           Initial Version 6.0           */
67 /*  09-30-2020     Chaoqiong Xiao           Modified comment(s),          */
68 /*                                            resulting in version 6.1    */
69 /*  04-02-2021     Chaoqiong Xiao           Modified comment(s),          */
70 /*                                            removed endpoints aborting, */
71 /*                                            resulting in version 6.1.6  */
72 /*  07-29-2022     Chaoqiong Xiao           Modified comment(s),          */
73 /*                                            fixed parameter/variable    */
74 /*                                            names conflict C++ keyword, */
75 /*                                            resulting in version 6.1.12 */
76 /*                                                                        */
77 /**************************************************************************/
_ux_device_class_dfu_deactivate(UX_SLAVE_CLASS_COMMAND * command)78 UINT  _ux_device_class_dfu_deactivate(UX_SLAVE_CLASS_COMMAND *command)
79 {
80 
81 UX_SLAVE_CLASS_DFU          *dfu;
82 UX_SLAVE_CLASS              *class_ptr;
83 
84 
85     /* Get the class container.  */
86     class_ptr =  command -> ux_slave_class_command_class_ptr;
87 
88     /* Get the class instance in the container.  */
89     dfu = (UX_SLAVE_CLASS_DFU *) class_ptr -> ux_slave_class_instance;
90 
91     /* If there is a deactivate function call it.  */
92     if (dfu -> ux_slave_class_dfu_instance_deactivate != UX_NULL)
93     {
94         /* Invoke the application.  */
95         dfu -> ux_slave_class_dfu_instance_deactivate(dfu);
96     }
97 
98     /* If trace is enabled, insert this event into the trace buffer.  */
99     UX_TRACE_IN_LINE_INSERT(UX_TRACE_DEVICE_CLASS_DFU_DEACTIVATE, dfu, 0, 0, 0, UX_TRACE_DEVICE_CLASS_EVENTS, 0, 0)
100 
101     /* If trace is enabled, register this object.  */
102     UX_TRACE_OBJECT_UNREGISTER(dfu);
103 
104     /* Return completion status.  */
105     return(UX_SUCCESS);
106 }
107 
108