forked from RT-Thread/packages
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ba65bf8
commit 20e6bb5
Showing
3 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Kconfig file for package bouffalolab_sdk | ||
|
||
menuconfig PKG_USING_BL_MCU_SDK | ||
bool "bouffalolab: bl_mcu_sdk" | ||
default n | ||
|
||
if PKG_USING_BL_MCU_SDK | ||
|
||
config PKG_BL_MCU_SDK_PATH | ||
string | ||
default "/packages/peripherals/bouffalolab_sdk" | ||
|
||
choice | ||
prompt "Version" | ||
default PKG_USING_BL_MCU_SDK_LATEST_VERSION | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_BL_MCU_SDK_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_BL_MCU_SDK_VER | ||
string | ||
default "latest" if PKG_USING_BL_MCU_SDK_LATEST_VERSION | ||
|
||
endif |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
{ | ||
"name": "bouffalolab_sdk", | ||
"description": "bouffalolab: bl_mcu_sdk", | ||
"description_zh": "博流 处理器对应的外设驱动包", | ||
"enable": "PKG_USING_BL_MCU_SDK", | ||
"keywords": [ | ||
"bouffalolab", | ||
"bl602", | ||
"riscv", | ||
"IoT" | ||
], | ||
"category": "peripherals", | ||
"author": { | ||
"name": "BalanceTWK", | ||
"email": "[email protected]", | ||
"github": "balanceTWK" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": "https://github.com/balanceTWK/bouffalolab_sdk.git", | ||
"homepage": "https://github.com/balanceTWK/bouffalolab_sdk.git", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/balanceTWK/bouffalolab_sdk.git", | ||
"filename": "bouffalolab_sdk.zip", | ||
"VER_SHA": "master" | ||
} | ||
] | ||
} |