change default TUSB_CFG_DEBUG to 0

change meaning of TUSB_CFG_DEBUG
This commit is contained in:
hathach
2014-04-17 10:33:59 +07:00
parent 5c6f8750da
commit ccc65e620a
8 changed files with 52 additions and 53 deletions

View File

@@ -110,12 +110,14 @@ tusb_error_t tusb_init(void);
@code
int main(void)
{
// some init code
your_init_code();
tusb_init();
while(1) // the mainloop
{
tusb_task_runner();
// other code
your_application_code();
tusb_task_runner(); // handle tinyusb event, task etc ...
}
}
@endcode