增加stm32f1支持,并完成真实硬件测试

This commit is contained in:
zhangzheng
2023-09-26 23:40:54 +08:00
parent 20d3da94a8
commit 92dba05d2f
235 changed files with 126802 additions and 387 deletions

View File

@@ -23,8 +23,8 @@ int main(int argc, char *args[])
rpc_test();
ns_test();
#endif
fs_test();
irq_test();
fs_test();
task_unmap(TASK_THIS, vpage_create_raw3(KOBJ_DELETE_RIGHT, 0, TASK_THIS));
ulog_write_str(u_get_global_env()->log_hd, "Error.\n");
return 0;

View File

@@ -1,6 +1,6 @@
#include <malloc.h>
#include <string.h>
#include <assert.h>
void malloc_test(void)
{
void *mem = malloc(1024);