换血大更新

This commit is contained in:
XerolySkinner
2023-03-06 12:44:58 +08:00
parent dcee54c50d
commit d14d2c5c95
933 changed files with 7422 additions and 2824 deletions

View File

@@ -34,12 +34,44 @@
#pragma once
//////////////////////////////////////////////////////////////////////////////////////////////////////
//<<< Use Configuration Wizard in Context Menu >>>
//<h>调试模式设置
//<e>开发人员调试模式
//</e>
//<c1>开发人员调试模式
//<i>用户需要取消设置,该选项仅供开发人员使用
#define __DEBUG__ 0 ///<调试模式开关
#define __DEBUG__ ///<调试模式开关
//</c>
//<c>使用STM32_HAL库
#define _STM32_HAL_
//</c>
// <s>版本号
#define BPS_CONFIG_VERSION "1.0.0"
//<h>演示
// <o>复选框
// <0=> 选择A
// <1=> 选择B
#define EQ_CheckBox 0
// <o>数字框
// <0-16777215>
#define EQ_NumBox 0
// <o.0..3>位选
// <0=>空
// <1=>1号
// <2=>2号
// <3=>3号
#define EQ_BITERABI 0x000
// <q.0> 复选框0
// <q.1> 复选框1
#define EQ_BITERABIS 0x00
//</h>
//<<< end of configuration section >>>
//////////////////////////////////////////////////////////////////////////////////////////////////////
#ifdef __DEBUG__
#define text(format, ...) com.print(format, ##__VA_ARGS__)
#else
#define text(format, ...)
#endif
//////////////////////////////////////////////////////////////////////////////////////////////////////