2019-03-20 16:11:42 +07:00
|
|
|
/*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018, hathach (tinyusb.org)
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* This file is part of the TinyUSB stack.
|
|
|
|
*/
|
2014-03-05 21:37:53 +07:00
|
|
|
|
|
|
|
#ifndef _TUSB_H_
|
|
|
|
#define _TUSB_H_
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// INCLUDE
|
|
|
|
//--------------------------------------------------------------------+
|
2018-03-12 22:45:35 +07:00
|
|
|
#include "common/tusb_common.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
#include "osal/osal.h"
|
2018-11-02 17:26:35 +07:00
|
|
|
#include "common/tusb_fifo.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
|
|
|
|
//------------- HOST -------------//
|
2018-12-07 23:38:52 +07:00
|
|
|
#if TUSB_OPT_HOST_ENABLED
|
2014-03-05 21:37:53 +07:00
|
|
|
#include "host/usbh.h"
|
|
|
|
|
|
|
|
#if HOST_CLASS_HID
|
2018-03-06 17:26:34 +07:00
|
|
|
#include "class/hid/hid_host.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
#endif
|
|
|
|
|
2018-12-06 22:24:31 +07:00
|
|
|
#if CFG_TUH_MSC
|
2018-03-06 17:26:34 +07:00
|
|
|
#include "class/msc/msc_host.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
#endif
|
|
|
|
|
2018-12-06 22:24:31 +07:00
|
|
|
#if CFG_TUH_CDC
|
2018-03-06 17:26:34 +07:00
|
|
|
#include "class/cdc/cdc_host.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
#endif
|
|
|
|
|
2018-04-10 14:31:11 +07:00
|
|
|
#if CFG_TUSB_HOST_CUSTOM_CLASS
|
2018-06-17 14:21:26 +07:00
|
|
|
#include "class/custom_host.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//------------- DEVICE -------------//
|
2018-07-23 15:25:45 +07:00
|
|
|
#if TUSB_OPT_DEVICE_ENABLED
|
2014-03-05 21:37:53 +07:00
|
|
|
#include "device/usbd.h"
|
|
|
|
|
2018-07-28 12:38:45 +07:00
|
|
|
#if CFG_TUD_HID
|
2018-03-06 17:26:34 +07:00
|
|
|
#include "class/hid/hid_device.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
#endif
|
|
|
|
|
2018-04-12 13:23:52 +07:00
|
|
|
#if CFG_TUD_CDC
|
2018-03-06 17:26:34 +07:00
|
|
|
#include "class/cdc/cdc_device.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
#endif
|
|
|
|
|
2018-04-12 13:23:52 +07:00
|
|
|
#if CFG_TUD_MSC
|
2018-03-06 17:26:34 +07:00
|
|
|
#include "class/msc/msc_device.h"
|
2014-03-05 21:37:53 +07:00
|
|
|
#endif
|
2018-06-16 12:30:10 +07:00
|
|
|
|
2018-11-16 17:03:33 -08:00
|
|
|
#if CFG_TUD_MIDI
|
|
|
|
#include "class/midi/midi_device.h"
|
|
|
|
#endif
|
|
|
|
|
2018-06-16 12:30:10 +07:00
|
|
|
#if CFG_TUD_CUSTOM_CLASS
|
|
|
|
#include "class/custom/custom_device.h"
|
|
|
|
#endif
|
2014-03-05 21:37:53 +07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// APPLICATION API
|
|
|
|
//--------------------------------------------------------------------+
|
2014-03-25 13:00:37 +07:00
|
|
|
/** \ingroup group_application_api
|
2014-03-18 16:10:25 +07:00
|
|
|
* @{ */
|
|
|
|
|
2018-12-13 14:51:37 +07:00
|
|
|
// Initialize device/host stack
|
2018-12-05 17:30:04 +07:00
|
|
|
bool tusb_init(void);
|
2014-03-05 21:37:53 +07:00
|
|
|
|
2019-01-29 19:05:07 +07:00
|
|
|
// Check if stack is initialized
|
|
|
|
bool tusb_inited(void);
|
|
|
|
|
2018-12-13 14:51:37 +07:00
|
|
|
// TODO
|
|
|
|
// bool tusb_teardown(void);
|
2018-12-13 13:49:09 +07:00
|
|
|
|
2014-04-17 10:33:59 +07:00
|
|
|
|
2018-12-13 14:51:37 +07:00
|
|
|
// backward compatible only. TODO remove later
|
2018-12-14 13:08:21 +07:00
|
|
|
ATTR_DEPRECATED("Please use either tud_task() or tuh_task()")
|
2018-12-13 14:51:37 +07:00
|
|
|
static inline void tusb_task(void)
|
|
|
|
{
|
|
|
|
#if TUSB_OPT_HOST_ENABLED
|
|
|
|
tuh_task();
|
|
|
|
#endif
|
2018-12-13 13:49:09 +07:00
|
|
|
|
2018-12-13 14:51:37 +07:00
|
|
|
#if TUSB_OPT_DEVICE_ENABLED
|
|
|
|
tud_task();
|
|
|
|
#endif
|
|
|
|
}
|
2014-03-05 21:37:53 +07:00
|
|
|
|
2014-03-18 16:10:25 +07:00
|
|
|
/** @} */
|
|
|
|
|
2014-03-05 21:37:53 +07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _TUSB_H_ */
|