RP2040 support

This commit is contained in:
graham sanderson
2021-01-19 19:52:07 -06:00
parent 589dfdb0e5
commit e0aa405d19
16 changed files with 1813 additions and 4 deletions

View File

@@ -53,6 +53,8 @@ typedef void (*osal_task_func_t)( void * );
#include "osal_freertos.h"
#elif CFG_TUSB_OS == OPT_OS_MYNEWT
#include "osal_mynewt.h"
#elif CFG_TUSB_OS == OPT_OS_PICO
#include "osal_pico.h"
#elif CFG_TUSB_OS == OPT_OS_CUSTOM
#include "tusb_os_custom.h" // implemented by application
#else