Update docs and fix bugs (#149)

Improved the docs for the 3 main Tactility projects. I also fixed some inaccuracies and bugs in certain APIs as I went through the code.
This commit is contained in:
Ken Van Hoeylandt
2025-01-07 20:45:23 +01:00
committed by GitHub
parent ff4287e2ce
commit 415096c3b2
62 changed files with 503 additions and 517 deletions
+5 -2
View File
@@ -2,7 +2,6 @@
#include "PanicHandler.h"
#include <esp_rom_sys.h>
#include <esp_debug_helpers.h>
#include <esp_attr.h>
#include <esp_memory_utils.h>
@@ -10,6 +9,10 @@
extern "C" {
/**
* This static variable survives a crash reboot.
* It is reset by the Boot app.
*/
static RTC_NOINIT_ATTR CrashData crashData;
void __real_esp_panic_handler(void* info);
@@ -61,6 +64,6 @@ void __wrap_esp_panic_handler(void* info) {
}
const CrashData* getRtcCrashData() { return &crashData; }
const CrashData& getRtcCrashData() { return crashData; }
#endif