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.
Merge pull request RT-Thread#1200 from kylepengchn/kmulti_rtimer
release kmulti_rtimer
- Loading branch information
Showing
3 changed files
with
64 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,36 @@ | ||
|
||
# Kconfig file for package kmulti_rtimer | ||
menuconfig PKG_USING_KMULTI_RTIMER | ||
bool "a multi timer for rt-thread." | ||
default n | ||
|
||
if PKG_USING_KMULTI_RTIMER | ||
|
||
config PKG_KMULTI_RTIMER_HWTIMER_DEV_NAME | ||
string "The hwtimer device name for multi rtimer" | ||
default "hwtimer1" | ||
|
||
config PKG_USING_KMULTI_RTIMER_DEMO | ||
bool "Use demo" | ||
default n | ||
|
||
config PKG_KMULTI_RTIMER_PATH | ||
string | ||
default "/packages/system/kmulti_rtimer" | ||
|
||
choice | ||
prompt "Version" | ||
default PKG_USING_KMULTI_RTIMER_LATEST_VERSION | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_KMULTI_RTIMER_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_KMULTI_RTIMER_VER | ||
string | ||
default "latest" if PKG_USING_KMULTI_RTIMER_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,27 @@ | ||
{ | ||
"name": "kmulti_rtimer", | ||
"description": "a multi timer for rt-thread", | ||
"enable": "PKG_USING_KMULTI_RTIMER", | ||
"keywords": [ | ||
"kmulti_rtimer" | ||
], | ||
"category": "system", | ||
"author": { | ||
"name": "kylepengchn", | ||
"email": "[email protected]", | ||
"github": "kylepengchn" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": "https://github.com/kylepengchn/kmulti_rtimer.git", | ||
"icon": "unknown", | ||
"homepage": "unknown", | ||
"doc": "unknown", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/kylepengchn/kmulti_rtimer.git", | ||
"filename": "", | ||
"VER_SHA": "master" | ||
} | ||
] | ||
} |