Conversation
Why: 消除代码中的“魔法数字”返回值(如 -1, -2 等),提升代码可读性、可维护性及调试效率,并修复了组合按键配置检查的遗漏。 What: as follows: 1. 引入 bits_btn_error_t 枚举,定义所有错误码(0 至 -8); 2. 更新 bits_button_init 实现,使用枚举常量替代所有硬编码的错误返回值; 3. 新增 BITS_BTN_ERR_COMBO_KEYS_INVALID (-8) 错误码,用于检查组合按键的 keys 配置有效性; 4. 新增 test_combo_button_keys_invalid 测试用例,并完善现有测试断言; 5. 更新 API 文档及使用指南,补充错误码枚举说明及错误处理示例代码。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why: 消除代码中的“魔法数字”返回值(如 -1, -2 等),提升代码可读性、可维护性及调试效率,并修复了组合按键配置检查的遗漏。
What: as follows: