Rename furi to tactility-core (#10)

* renamed module

* renamed code

* more renames

* cleanup
This commit is contained in:
Ken Van Hoeylandt
2024-01-13 22:12:40 +01:00
committed by GitHub
parent 64a01df750
commit 069416eee5
106 changed files with 2992 additions and 3347 deletions
+22
View File
@@ -0,0 +1,22 @@
#pragma once
#include <stdio.h>
#include <stdbool.h>
#ifndef TT_CRITICAL_ENTER
#define TT_CRITICAL_ENTER() __TtCriticalInfo __tt_critical_info = __tt_critical_enter();
#endif
#ifndef TT_CRITICAL_EXIT
#define TT_CRITICAL_EXIT() __tt_critical_exit(__tt_critical_info);
#endif
typedef struct {
uint32_t isrm;
bool from_isr;
bool kernel_running;
} __TtCriticalInfo;
__TtCriticalInfo __tt_critical_enter(void);
void __tt_critical_exit(__TtCriticalInfo info);