2013-09-21 00:42:39 +07:00
|
|
|
/*
|
2019-03-20 16:11:42 +07:00
|
|
|
* The MIT License (MIT)
|
2013-09-21 00:42:39 +07:00
|
|
|
*
|
2019-03-20 16:11:42 +07:00
|
|
|
* Copyright (c) 2018, hathach (tinyusb.org)
|
2013-09-21 00:42:39 +07:00
|
|
|
*
|
2019-03-20 16:11:42 +07:00
|
|
|
* 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:
|
2013-09-21 00:42:39 +07:00
|
|
|
*
|
2019-03-20 16:11:42 +07:00
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
2013-09-21 00:42:39 +07:00
|
|
|
*
|
2019-03-20 16:11:42 +07:00
|
|
|
* 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.
|
2013-09-21 00:42:39 +07:00
|
|
|
*
|
2019-03-20 16:11:42 +07:00
|
|
|
* This file is part of the TinyUSB stack.
|
2013-09-21 00:42:39 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "stdlib.h"
|
|
|
|
|
#include "unity.h"
|
|
|
|
|
#include "type_helper.h"
|
2014-04-17 20:40:34 +07:00
|
|
|
#include "tusb_errors.h"
|
2013-09-21 00:42:39 +07:00
|
|
|
#include "common/common.h"
|
|
|
|
|
|
|
|
|
|
#include "hid_host.h"
|
|
|
|
|
#include "mock_osal.h"
|
|
|
|
|
#include "mock_cdc_host.h"
|
2013-09-24 15:05:11 +07:00
|
|
|
#include "mock_msc_host.h"
|
2013-10-16 11:05:33 +07:00
|
|
|
#include "mock_hub.h"
|
2013-09-24 15:05:11 +07:00
|
|
|
|
2013-09-21 00:42:39 +07:00
|
|
|
#include "mock_hcd.h"
|
2013-09-24 15:05:11 +07:00
|
|
|
#include "usbh.h"
|
2013-09-21 00:42:39 +07:00
|
|
|
#include "mock_hidh_callback.h"
|
|
|
|
|
#include "descriptor_test.h"
|
|
|
|
|
#include "host_helper.h"
|
|
|
|
|
|
|
|
|
|
|
2018-04-10 14:31:11 +07:00
|
|
|
extern hidh_interface_info_t mouseh_data[CFG_TUSB_HOST_DEVICE_MAX];
|
2013-09-21 00:42:39 +07:00
|
|
|
hidh_interface_info_t *p_hidh_mouse;
|
2013-10-25 17:28:31 +07:00
|
|
|
hid_mouse_report_t report;
|
2013-09-21 00:42:39 +07:00
|
|
|
|
2018-03-23 12:32:40 +07:00
|
|
|
tusb_desc_interface_t const *p_mouse_interface_desc = &desc_configuration.mouse_interface;
|
|
|
|
|
tusb_desc_endpoint_t const *p_mouse_endpoint_desc = &desc_configuration.mouse_endpoint;
|
2013-09-21 00:42:39 +07:00
|
|
|
|
|
|
|
|
uint8_t dev_addr;
|
|
|
|
|
|
|
|
|
|
void setUp(void)
|
|
|
|
|
{
|
|
|
|
|
helper_usbh_init_expect();
|
|
|
|
|
usbh_init();
|
|
|
|
|
|
2018-04-10 14:31:11 +07:00
|
|
|
dev_addr = RANDOM(CFG_TUSB_HOST_DEVICE_MAX)+1;
|
2013-09-21 00:42:39 +07:00
|
|
|
|
|
|
|
|
// uint16_t length;
|
|
|
|
|
// TEST_ASSERT_STATUS( hidh_open_subtask(dev_addr, p_mouse_interface_desc, &length) );
|
|
|
|
|
//
|
|
|
|
|
// p_hidh_mouse = &mouse_data[dev_addr-1];
|
|
|
|
|
//
|
2013-10-25 17:28:31 +07:00
|
|
|
// p_hidh_mouse->report_size = sizeof(hid_mouse_report_t);
|
2013-09-21 00:42:39 +07:00
|
|
|
// p_hidh_mouse->pipe_hdl = (pipe_handle_t) {
|
|
|
|
|
// .dev_addr = dev_addr,
|
|
|
|
|
// .xfer_type = TUSB_XFER_INTERRUPT,
|
|
|
|
|
// .index = 1
|
|
|
|
|
// };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void tearDown(void)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//void test_generic_init(void)
|
|
|
|
|
//{
|
|
|
|
|
// hidh_init();
|
|
|
|
|
//
|
2018-04-10 14:31:11 +07:00
|
|
|
// TEST_ASSERT_MEM_ZERO(mouse_data, sizeof(hidh_interface_info_t)*CFG_TUSB_HOST_DEVICE_MAX);
|
2013-09-21 00:42:39 +07:00
|
|
|
//}
|