esp-idf/tools/test_idf_monitor/dummy.c

14 lines
188 B
C
Raw Normal View History

2020-12-28 21:00:45 -05:00
/* Produces a minimal ELF file for espcoredump tests */
typedef struct {
char stuff[TASK_NAME_OFFSET];
char pcTaskName[16];
} TCB_t;
TCB_t foo;
int main(void)
{
return 0;
}