blob: ce537663dc159798205cf75460472c62677cd26f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
* Copyright (c) 2026-present Eclipse ThreadX contributors
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/** */
/** USBX Component */
/** */
/** Device Printer Class */
/** */
/**************************************************************************/
/**************************************************************************/
#define UX_SOURCE_CODE
/* Include necessary system files. */
#include "ux_api.h"
#include "ux_device_class_printer.h"
#include "ux_device_stack.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _ux_device_class_printer_deactivate PORTABLE C */
/* 6.1.10 */
/* AUTHOR */
/* */
/* Chaoqiong Xiao, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function deactivate an instance of the printer class. */
/* */
/* INPUT */
/* */
/* command Pointer to a class command */
/* */
/* OUTPUT */
/* */
/* Completion Status */
/* */
/* CALLS */
/* */
/* (ux_device_class_printer_instance_deactivate) */
/* Notify deactivation */
/* _ux_device_class_printer_soft_reset Performs software reset */
/* */
/* CALLED BY */
/* */
/* Device Printer Class */
/* */
/**************************************************************************/
UINT _ux_device_class_printer_deactivate(UX_SLAVE_CLASS_COMMAND *command)
{
UX_DEVICE_CLASS_PRINTER *printer;
UX_SLAVE_CLASS *printer_class;
/* Get the class container. */
printer_class = command -> ux_slave_class_command_class_ptr;
/* Get the class instance in the container. */
printer = (UX_DEVICE_CLASS_PRINTER *) printer_class -> ux_slave_class_instance;
/* Terminate the transactions pending on the endpoints. */
_ux_device_class_printer_soft_reset(printer);
/* Endpoints not ready. */
printer -> ux_device_class_printer_endpoint_in = UX_NULL;
printer -> ux_device_class_printer_endpoint_out = UX_NULL;
/* Reset port status. */
printer -> ux_device_class_printer_port_status = 0;
/* If there is a deactivate function call it. */
if (printer -> ux_device_class_printer_parameter.ux_device_class_printer_instance_deactivate != UX_NULL)
{
/* Invoke the application. */
printer -> ux_device_class_printer_parameter.ux_device_class_printer_instance_deactivate(printer);
}
/* If trace is enabled, insert this event into the trace buffer. */
UX_TRACE_IN_LINE_INSERT(UX_TRACE_DEVICE_CLASS_PRINTER_DEACTIVATE, printer, 0, 0, 0, UX_TRACE_DEVICE_CLASS_EVENTS, 0, 0)
/* If trace is enabled, register this object. */
UX_TRACE_OBJECT_UNREGISTER(printer);
/* Return completion status. */
return(UX_SUCCESS);
}
|