-
Notifications
You must be signed in to change notification settings - Fork 315
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
2de28ca
commit e5ac3e8
Showing
3 changed files
with
63 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,31 @@ | ||
|
||
# Kconfig file for package Adafruit-Si5351 | ||
menuconfig PKG_USING_ARDUINO_ADAFRUIT_SI5351 | ||
bool "Adafruit Si5351 Clock Generator Breakout" | ||
select PKG_USING_RTDUINO | ||
select RTDUINO_USING_WIRE | ||
select PKG_USING_ARDUINO_ADAFRUIT_BUSIO | ||
default n | ||
|
||
if PKG_USING_ARDUINO_ADAFRUIT_SI5351 | ||
|
||
config PKG_ARDUINO_ADAFRUIT_SI5351_PATH | ||
string | ||
default "/packages/arduino/other/Adafruit-Si5351" | ||
|
||
choice | ||
prompt "Version" | ||
default PKG_USING_ARDUINO_ADAFRUIT_SI5351_LATEST_VERSION | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_ARDUINO_ADAFRUIT_SI5351_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_ARDUINO_ADAFRUIT_SI5351_VER | ||
string | ||
default "latest" if PKG_USING_ARDUINO_ADAFRUIT_SI5351_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,31 @@ | ||
{ | ||
"name": "Adafruit-Si5351", | ||
"description": "Adafruit Si5351: Clock Generator Breakout", | ||
"description_zh": "Adafruit Si5351 时钟发生器", | ||
"enable": "PKG_USING_ARDUINO_ADAFRUIT_SI5351", | ||
"keywords": [ | ||
"Adafruit-Si5351", | ||
"Adafruit", | ||
"Si5351", | ||
"Clock Generator" | ||
], | ||
"category": "arduino/other", | ||
"author": { | ||
"name": "adafruit", | ||
"email": "info@adafruit.com", | ||
"github": "adafruit" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"repository": "https://github.com/adafruit/Adafruit_Si5351_Library", | ||
"icon": "unknown", | ||
"homepage": "https://github.com/adafruit/Adafruit_Si5351_Library#readme", | ||
"doc": "unknown", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/adafruit/Adafruit_Si5351_Library.git", | ||
"filename": "", | ||
"VER_SHA": "master" | ||
} | ||
] | ||
} |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
menu "Other" | ||
|
||
source "$PKGS_DIR/packages/arduino/other/Adafruit-MFRC630/Kconfig" | ||
source "$PKGS_DIR/packages/arduino/other/Adafruit-Si5351/Kconfig" | ||
|
||
endmenu |