mirror of https://github.com/ARMmbed/mbed-os.git
Tests: USB: Use astyle to format the test class
parent
38032453a5
commit
4a4dcdb5b8
|
@ -37,14 +37,38 @@ public:
|
||||||
const char *get_serial_desc_string();
|
const char *get_serial_desc_string();
|
||||||
void start_ep_in_abort_test();
|
void start_ep_in_abort_test();
|
||||||
|
|
||||||
uint32_t get_cnt_cb_set_conf() const { return _cnt_cb_set_conf; }
|
uint32_t get_cnt_cb_set_conf() const
|
||||||
uint32_t get_cnt_cb_set_intf() const { return _cnt_cb_set_intf; }
|
{
|
||||||
uint32_t get_cnt_cb_bulk_out() const { return _cnt_cb_bulk_out; }
|
return _cnt_cb_set_conf;
|
||||||
uint32_t get_cnt_cb_bulk_in() const { return _cnt_cb_bulk_in; }
|
}
|
||||||
uint32_t get_cnt_cb_int_out() const { return _cnt_cb_int_out; }
|
uint32_t get_cnt_cb_set_intf() const
|
||||||
uint32_t get_cnt_cb_int_in() const { return _cnt_cb_int_in; }
|
{
|
||||||
uint32_t get_cnt_cb_iso_out() const { return _cnt_cb_iso_out; }
|
return _cnt_cb_set_intf;
|
||||||
uint32_t get_cnt_cb_iso_in() const { return _cnt_cb_iso_in; }
|
}
|
||||||
|
uint32_t get_cnt_cb_bulk_out() const
|
||||||
|
{
|
||||||
|
return _cnt_cb_bulk_out;
|
||||||
|
}
|
||||||
|
uint32_t get_cnt_cb_bulk_in() const
|
||||||
|
{
|
||||||
|
return _cnt_cb_bulk_in;
|
||||||
|
}
|
||||||
|
uint32_t get_cnt_cb_int_out() const
|
||||||
|
{
|
||||||
|
return _cnt_cb_int_out;
|
||||||
|
}
|
||||||
|
uint32_t get_cnt_cb_int_in() const
|
||||||
|
{
|
||||||
|
return _cnt_cb_int_in;
|
||||||
|
}
|
||||||
|
uint32_t get_cnt_cb_iso_out() const
|
||||||
|
{
|
||||||
|
return _cnt_cb_iso_out;
|
||||||
|
}
|
||||||
|
uint32_t get_cnt_cb_iso_in() const
|
||||||
|
{
|
||||||
|
return _cnt_cb_iso_in;
|
||||||
|
}
|
||||||
|
|
||||||
struct ep_config_t {
|
struct ep_config_t {
|
||||||
bool dir_in;
|
bool dir_in;
|
||||||
|
|
Loading…
Reference in New Issue