testapp: Fix illegal TK1_SYSCALL_RESET call

This commit is contained in:
Mikael Ågren 2025-03-28 12:37:44 +01:00
parent e1e964082f
commit 12a4575911
No known key found for this signature in database
GPG Key ID: E02DA3D397792C46

View File

@ -11,6 +11,7 @@
#include <tkey/tk1_mem.h>
#include "../tk1/proto.h"
#include "../tk1/resetinfo.h"
#include "../tk1/syscall_num.h"
#include "syscall.h"
@ -258,7 +259,10 @@ int main(void)
}
if (in == '+') {
syscall(TK1_SYSCALL_RESET, 0, 0, 0);
struct reset rst;
memset(&rst, 0, sizeof(rst));
rst.type = START_DEFAULT;
syscall(TK1_SYSCALL_RESET, (uint32_t)&rst, 0, 0);
}
write(IO_CDC, &in, 1);