-
Notifications
You must be signed in to change notification settings - Fork 321
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[touch][cst816x]add: driver of cst816x (#1616)
- Loading branch information
Showing
2 changed files
with
56 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
|
||
# Kconfig file for package cst816x | ||
menuconfig PKG_USING_CST816X | ||
bool "Please add description of cst816x in English." | ||
default n | ||
|
||
if PKG_USING_CST816X | ||
|
||
config PKG_CST816X_PATH | ||
string | ||
default "/packages/peripherals/cst816x" | ||
|
||
choice | ||
prompt "Version" | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_CST816X_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_CST816X_VER | ||
string | ||
default "latest" if PKG_USING_CST816X_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": "cst816x", | ||
"description": "cst816x drivers for RT-Thread", | ||
"description_zh": "cst816x 触摸芯片的驱动包。", | ||
"enable": "PKG_USING_CST816X", | ||
"keywords": [ | ||
"cst816x", | ||
"touch" | ||
], | ||
"category": "peripherals", | ||
"author": { | ||
"name": "Z8MAN8", | ||
"email": "1468559561@qq.com", | ||
"github": "Z8MAN8" | ||
}, | ||
"license": "Apache-2.0", | ||
"repository": "https://github.com/Z8MAN8/cst816x", | ||
"icon": "unknown", | ||
"homepage": "https://github.com/Z8MAN8/cst816x#readme", | ||
"doc": "unknown", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/Z8MAN8/cst816x.git", | ||
"filename": "", | ||
"VER_SHA": "master" | ||
} | ||
] | ||
} |