Revert "MPU Hal (#1492)"

This reverts commit eed4296890.
This commit is contained in:
MX
2022-08-04 05:02:23 +03:00
parent db5c232f50
commit 43345ba0bb
29 changed files with 62 additions and 238 deletions

View File

@@ -36,8 +36,10 @@ void* calloc(size_t count, size_t size) {
}
char* strdup(const char* s) {
// arg s marked as non-null, so we need hack to check for NULL
furi_check(((uint32_t)s << 2) != 0);
const char* s_null = s;
if(s_null == NULL) {
return NULL;
}
size_t siz = strlen(s) + 1;
char* y = pvPortMalloc(siz);