实现读取nand的id,正在编写坏块管理算法

This commit is contained in:
ranchuan
2023-06-12 18:32:55 +08:00
parent ed44e2b9dd
commit 64db6e94bc
1385 changed files with 791640 additions and 92 deletions

27
source/soft/mystdlib.h Normal file
View File

@@ -0,0 +1,27 @@
#ifndef mystdlib_h__
#define mystdlib_h__
#include "stdint.h"
void mem_init(void);
int mem_perused(void);
void tempptr_init(void);
void *tmalloc(uint32_t size);
void *tappend(void *p,void *del);
#endif