-
Notifications
You must be signed in to change notification settings - Fork 350
feat:添加bt24s软件包 #1945
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat:添加bt24s软件包 #1945
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,67 @@ | ||||||
|
|
||||||
| # Kconfig file for package bt24s | ||||||
| menuconfig PKG_USING_BT24S | ||||||
| bool "bt24s: BT24S Bluetooth Module Support based on UART | ||||||
| default n | ||||||
| select PKG_USING_UAT | ||||||
|
||||||
| select PKG_USING_UAT | |
| select PKG_USING_UART |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
观察了一下 .config文件写的 名字是UAT # CONFIG_PKG_USING_UAT is not set
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这个没问题,AI误报
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| { | ||
| "name": "bt24s", | ||
| "description": "bt24s driver based on UART", | ||
| "description_zh": "基于串口驱动bt24s蓝牙模组", | ||
| "enable": "PKG_USING_BT24S", | ||
| "keywords": [ | ||
| "ble", | ||
| "bt24s" | ||
| ], | ||
| "category": "peripherals", | ||
| "author": { | ||
| "name": "龚金华", | ||
| "email": "782730309@qq.com", | ||
| "github": "GKoSon" | ||
| }, | ||
| "license": "MIT", | ||
| "repository": "https://github.com/GKoSon/bt24s", | ||
| "homepage": "https://github.com/GKoSon/bt24s#readme", | ||
| "site": [ | ||
| { | ||
| "version": "v1.0.0", | ||
| "URL": "https://github.com/GKoSon/bt24s/archive/refs/tags/v1.0.0.zip", | ||
| "filename": "bt24s-1.0.0.zip" | ||
| }, | ||
| { | ||
| "version": "latest", | ||
| "URL": "https://github.com/GKoSon/bt24s.git", | ||
| "filename": "bt24s.zip", | ||
| "VER_SHA": "main" | ||
| } | ||
| ] | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing closing double quote after "UART". The string should end with a closing quote.