Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .releaserc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
{ "type": "feat", "release": "minor" },
{ "type": "fix", "release": "patch" },
{ "type": "perf", "release": "patch" },
{ "type": "refactor", "release": "patch" },
{ "type": "delete", "release": "patch" },
{ "type": "deleted", "release": "patch" },
{ "type": "remove", "release": "patch" },
{ "type": "removed", "release": "patch" },
{ "breaking": true, "release": "major" }
]
}],
Expand Down
2 changes: 1 addition & 1 deletion firmware_p4/components/Core/kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ void safeguard_alert(const char* title, const char* message) {
}

void vApplicationStackOverflowHook(TaskHandle_t xTask, char *pcTaskName) {
ESP_LOGE(TAG, "!!! CRITICAL STACK OVERFLOW DETECTED !!!");
ESP_LOGE(TAG, "!!! CRITICAL STACKK OVERFLOW DETECTED !!!");
ESP_LOGE(TAG, "Task Name: [%s]", pcTaskName);
ESP_LOGE(TAG, "Task attempted to use more memory than was allocated.");
}
Expand Down
Loading