VSF Documented
vsf_usbh_xb1.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Copyright(C)2009-2022 by VSF Team *
3 * *
4 * Licensed under the Apache License, Version 2.0 (the "License"); *
5 * you may not use this file except in compliance with the License. *
6 * You may obtain a copy of the License at *
7 * *
8 * http://www.apache.org/licenses/LICENSE-2.0 *
9 * *
10 * Unless required by applicable law or agreed to in writing, software *
11 * distributed under the License is distributed on an "AS IS" BASIS, *
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
13 * See the License for the specific language governing permissions and *
14 * limitations under the License. *
15 * *
16 ****************************************************************************/
17
18#ifndef __VSF_USBH_XB1_H__
19#define __VSF_USBH_XB1_H__
20
21
22/*============================ INCLUDES ======================================*/
24
25#if VSF_USE_USB_HOST == ENABLED && VSF_USBH_USE_XB1 == ENABLED
26
28#if VSF_USE_INPUT == ENABLED && VSF_INPUT_USE_XB1 == ENABLED
30#endif
31
32#if defined(__VSF_USBH_XB1_CLASS_IMPLEMENT)
33# undef __VSF_USBH_XB1_CLASS_IMPLEMENT
34# define __VSF_CLASS_IMPLEMENT__
35#endif
36#include "utilities/ooc_class.h"
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
42/*============================ MACROS ========================================*/
43
44#if VSF_USBH_USE_HID != ENABLED
45# error "XB1 driver need VSF_USBH_USE_HID"
46#endif
47
48/*============================ MACROFIED FUNCTIONS ===========================*/
49/*============================ TYPES =========================================*/
50
51#if VSF_USE_INPUT == ENABLED && VSF_INPUT_USE_XB1 == ENABLED
52enum {
54};
55
56typedef struct vk_input_xb1_t {
60#endif
61
62// xb1 controller is not HID class, but almost compatible with HID class
64
65 implement(vk_usbh_hid_teda_t)
66#if VSF_USE_INPUT == ENABLED && VSF_INPUT_USE_XB1 == ENABLED
67 implement(vk_input_xb1_t)
68#endif
69
70 private_member(
71 uint8_t out_idle : 1;
72 uint8_t home_got : 1;
73 uint8_t home_seq;
74 uint8_t shake_id;
76 )
77};
78
79/*============================ GLOBAL VARIABLES ==============================*/
80
81#if VSF_USE_INPUT == ENABLED && VSF_INPUT_USE_XB1 == ENABLED
83#endif
84
86
87/*============================ PROTOTYPES ====================================*/
88
89#if VSF_USE_INPUT == ENABLED && VSF_INPUT_USE_XB1 == ENABLED
91extern void vk_xb1_new_dev(vk_input_xb1_t *dev);
92extern void vk_xb1_free_dev(vk_input_xb1_t *dev);
93
94#endif
95
96#ifdef __cplusplus
97}
98#endif
99
100#endif
101#endif
Definition vsf_usbh.h:268
Definition vsf_usbh_HID.h:105
Definition vsf_usbh_xb1.h:63
struct ieee80211_ext_chansw_ie data
Definition ieee80211.h:80
#define vsf_class(__name)
Definition ooc_class.h:48
unsigned char uint8_t
Definition stdint.h:5
Definition vsf_input.h:67
Definition vsf_usbh_xb1.h:56
vsf_usb_xb1_gamepad_in_report_t data
Definition vsf_usbh_xb1.h:57
vk_input_timestamp_t timestamp
Definition vsf_usbh_xb1.h:58
Definition vsf_usb_xb1.h:34
Definition vsf_usb_xb1.h:64
uint32_t vk_input_timestamp_t
Definition vsf_input.h:65
@ GAMEPAD_ID_NUM
Definition vsf_input_gamepad.h:99
#define VSF_INPUT_USER_TYPE
Definition vsf_input_get_type_1bit.h:103
void vk_xb1_process_input(vk_input_xb1_t *dev, vsf_usb_xb1_gamepad_in_report_t *data)
Definition vsf_usbh_xb1.c:144
void vk_xb1_new_dev(vk_input_xb1_t *dev)
Definition vsf_usbh_xb1.c:133
const vk_input_item_info_t vk_xb1_gamepad_item_info[GAMEPAD_ID_NUM]
Definition vsf_usbh_xb1.c:66
@ VSF_INPUT_TYPE_XB1
Definition vsf_usbh_xb1.h:53
void vk_xb1_free_dev(vk_input_xb1_t *dev)
Definition vsf_usbh_xb1.c:139
const vk_usbh_class_drv_t vk_usbh_xb1_drv
Definition vsf_usbh_xb1.c:91