esp32-s2_dfu/src/tusb.c

145 lines
3.6 KiB
C
Raw Normal View History

/*
* The MIT License (MIT)
*
2019-05-14 06:48:05 +02:00
* Copyright (c) 2019 Ha Thach (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-12 08:01:38 +01:00
#include "tusb_option.h"
#if TUSB_OPT_HOST_ENABLED || TUSB_OPT_DEVICE_ENABLED
2014-03-12 08:01:38 +01:00
#include "tusb.h"
static bool _initialized = false;
2018-12-05 12:58:30 +01:00
// TODO clean up
#if TUSB_OPT_DEVICE_ENABLED
#include "device/usbd_pvt.h"
#endif
bool tusb_init(void)
2014-03-12 08:01:38 +01:00
{
// skip if already initialized
if (_initialized) return true;
#if TUSB_OPT_HOST_ENABLED
2019-10-23 16:18:46 +02:00
TU_ASSERT( usbh_init() ); // init host stack
2014-03-12 08:01:38 +01:00
#endif
2018-07-23 10:25:45 +02:00
#if TUSB_OPT_DEVICE_ENABLED
2019-10-30 17:26:34 +01:00
TU_ASSERT ( tud_init() ); // init device stack
2014-03-12 08:01:38 +01:00
#endif
_initialized = true;
2014-03-12 08:01:38 +01:00
return TUSB_ERROR_NONE;
}
bool tusb_inited(void)
{
return _initialized;
}
2018-03-28 08:41:00 +02:00
/*------------------------------------------------------------------*/
/* Debug
*------------------------------------------------------------------*/
2018-04-10 09:31:11 +02:00
#if CFG_TUSB_DEBUG
2019-10-23 16:18:46 +02:00
#include <ctype.h>
char const* const tusb_strerr[TUSB_ERROR_COUNT] = { ERROR_TABLE(ERROR_STRING) };
2019-10-23 16:18:46 +02:00
static void dump_str_line(uint8_t const* buf, uint16_t count)
{
// each line is 16 bytes
for(uint16_t i=0; i<count; i++)
2019-10-23 16:18:46 +02:00
{
const char ch = buf[i];
tu_printf("%c", isprint(ch) ? ch : '.');
}
}
// size : item size in bytes
// count : number of item
// print offet or not (handfy for dumping large memory)
void tu_print_mem(void const *buf, uint8_t size, uint16_t count)
{
if ( !buf || !count )
{
2019-10-24 07:00:06 +02:00
tu_printf("NULL\r\n");
2019-10-23 16:18:46 +02:00
return;
}
uint8_t const *buf8 = (uint8_t const *) buf;
char format[] = "%00lX";
format[2] += 2*size;
const uint8_t item_per_line = 16 / size;
for(uint32_t i=0; i<count; i++)
{
uint32_t value=0;
if ( i%item_per_line == 0 )
{
// Print Ascii
if ( i != 0 )
{
tu_printf(" | ");
dump_str_line(buf8-16, 16);
2019-10-24 07:00:06 +02:00
tu_printf("\r\n");
2019-10-23 16:18:46 +02:00
}
// print offset or absolute address
tu_printf("%03lX: ", 16*i/item_per_line);
}
memcpy(&value, buf8, size);
buf8 += size;
tu_printf(" ");
tu_printf(format, value);
}
// fill up last row to 16 for printing ascii
const uint16_t remain = count%16;
uint8_t nback = (remain ? remain : 16);
if ( remain )
{
for(uint16_t i=0; i< 16-remain; i++)
2019-10-23 16:18:46 +02:00
{
tu_printf(" ");
for(int j=0; j<2*size; j++) tu_printf(" ");
}
}
tu_printf(" | ");
dump_str_line(buf8-nback, nback);
2019-10-24 07:00:06 +02:00
tu_printf("\r\n");
2019-10-23 16:18:46 +02:00
}
2018-03-28 08:41:00 +02:00
#endif
#endif // host or device enabled