Initial commit: my SECS2 project

This commit is contained in:
2026-06-12 14:19:01 +08:00
commit 2c3e2c4dc2
1138 changed files with 603966 additions and 0 deletions

14
usr/app/usr_config.h Normal file
View File

@@ -0,0 +1,14 @@
#ifndef _USR_CONFIG_H_
#define _USR_CONFIG_H_
#define USR_TRUE (1U)
#define USR_FALSE (0U)
#define USR_ENABLE (1U)
#define USR_DISENABLE (0U)
#define U64_MAX (0xffffffffffffffff)
#define U32_MAX (0xffffffff)
#define U16_MAX (0xffff)
#endif