Skip to content

Commit fb2b28b

Browse files
authored
Merge pull request #577 from adafruit/fix-edpt-race
update tinyusb core to commit 2afb2320e03e26c765aaeb51d430325b8adcdbf9
2 parents f13a416 + 072f842 commit fb2b28b

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

cores/nRF5/sysview/Config/SEGGER_SYSVIEW_Config_FreeRTOS.c

+6-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ extern const SEGGER_SYSVIEW_OS_API SYSVIEW_X_OS_TraceAPI;
6363
**********************************************************************
6464
*/
6565
// The application name to be displayed in SystemViewer
66-
#define SYSVIEW_APP_NAME "Adafruit Bluefruit"
66+
#define SYSVIEW_APP_NAME "Adafruit_nRF52_Arduino"
6767

6868
// The target device name
6969
#define SYSVIEW_DEVICE_NAME "nRF52"
@@ -87,6 +87,11 @@ extern const SEGGER_SYSVIEW_OS_API SYSVIEW_X_OS_TraceAPI;
8787
static void _cbSendSystemDesc(void) {
8888
SEGGER_SYSVIEW_SendSysDesc("N="SYSVIEW_APP_NAME",D="SYSVIEW_DEVICE_NAME",O=FreeRTOS");
8989
SEGGER_SYSVIEW_SendSysDesc("I#15=SysTick");
90+
SEGGER_SYSVIEW_SendSysDesc("I#33=RTC1_IRQn");
91+
SEGGER_SYSVIEW_SendSysDesc("I#55=USBD_IRQn");
92+
93+
// extern uint32_t usbd_get_queue(void);
94+
// SEGGER_SYSVIEW_NameResource((U32)usbd_get_queue(), "USBD queue task");
9095
}
9196

9297
/*********************************************************************

0 commit comments

Comments
 (0)