├── .gitignore ├── COPYING ├── README.md ├── config ├── config.yaml ├── freertos-events.yaml └── freertos-types.yaml ├── image └── task-states.png ├── include └── freertos-trace.h ├── makefile └── scripts ├── freertos-stack-usage.js └── freertos-task-states.js /.gitignore: -------------------------------------------------------------------------------- 1 | config/metadata 2 | include/barectf* 3 | source/* 4 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/README.md -------------------------------------------------------------------------------- /config/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/config/config.yaml -------------------------------------------------------------------------------- /config/freertos-events.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/config/freertos-events.yaml -------------------------------------------------------------------------------- /config/freertos-types.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/config/freertos-types.yaml -------------------------------------------------------------------------------- /image/task-states.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/image/task-states.png -------------------------------------------------------------------------------- /include/freertos-trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/include/freertos-trace.h -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/makefile -------------------------------------------------------------------------------- /scripts/freertos-stack-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/scripts/freertos-stack-usage.js -------------------------------------------------------------------------------- /scripts/freertos-task-states.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gpollo/freertos-barectf/HEAD/scripts/freertos-task-states.js --------------------------------------------------------------------------------