blob: a7c5104274222115acffa8aef39d1c4173fe42e0 (
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
/***************************************************************************
* 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 */
/** */
/** HID Remote Control Class */
/** */
/**************************************************************************/
/**************************************************************************/
/* Include necessary system files. */
#define UX_SOURCE_CODE
#include "ux_api.h"
#include "ux_host_class_hid.h"
#include "ux_host_class_hid_remote_control.h"
#include "ux_host_stack.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _ux_host_class_hid_remote_control_entry PORTABLE C */
/* 6.1.10 */
/* AUTHOR */
/* */
/* Chaoqiong Xiao, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function is the entry point of the HID Remote Control client. */
/* This function is called by the HID class after it has parsed a new */
/* HID report descriptor and is searching for a HID client. */
/* */
/* INPUT */
/* */
/* command Pointer to command */
/* */
/* OUTPUT */
/* */
/* Completion Status */
/* */
/* CALLS */
/* */
/* _ux_host_class_hid_remote_control_activate */
/* Activate HID RC class */
/* _ux_host_class_hid_remote_control_deactivate */
/* Deactivate HID RC class */
/* */
/* CALLED BY */
/* */
/* Host Stack */
/* */
/**************************************************************************/
UINT _ux_host_class_hid_remote_control_entry(UX_HOST_CLASS_HID_CLIENT_COMMAND *command)
{
UINT status;
/* The command request will tell us we need to do here, either a enumeration
query, an activation or a deactivation. */
switch (command -> ux_host_class_hid_client_command_request)
{
case UX_HOST_CLASS_COMMAND_QUERY:
/* The query command is used to let the HID class know if we want to own
this device or not */
if ((command -> ux_host_class_hid_client_command_page == UX_HOST_CLASS_HID_PAGE_CONSUMER) &&
(command -> ux_host_class_hid_client_command_usage == UX_HOST_CLASS_HID_CONSUMER_REMOTE_CONTROL))
return(UX_SUCCESS);
else
return(UX_NO_CLASS_MATCH);
case UX_HOST_CLASS_COMMAND_ACTIVATE:
/* The activate command is used by the HID class to start the HID client. */
status = _ux_host_class_hid_remote_control_activate(command);
/* Return completion status. */
return(status);
case UX_HOST_CLASS_COMMAND_DEACTIVATE:
/* The deactivate command is used by the HID class when it received a deactivate
command from the USBX stack and there was a HID client attached to the HID instance */
status = _ux_host_class_hid_remote_control_deactivate(command);
/* Return completion status. */
return(status);
#if defined(UX_HOST_STANDALONE)
case UX_HOST_CLASS_COMMAND_ACTIVATE_WAIT:
/* Nothing to do, just next state. */
return(UX_STATE_NEXT);
#endif
default:
break;
}
/* Return error status. */
return(UX_ERROR);
}
|