Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tools/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ source "$PKGS_DIR/packages/tools/zdebug/Kconfig"
source "$PKGS_DIR/packages/tools/RVBacktrace/Kconfig"
source "$PKGS_DIR/packages/tools/hpatchlite-wrapper/Kconfig"
source "$PKGS_DIR/packages/tools/thread-metric/Kconfig"
source "$PKGS_DIR/packages/tools/uORB/Kconfig"
endmenu
28 changes: 28 additions & 0 deletions tools/uORB/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

# Kconfig file for package uORB
menuconfig PKG_USING_UORB
bool "uORB is a light-weight and powerful IPC library based on the publisher/subscriber model."
Copy link

Copilot AI Oct 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Corrected spelling of 'light-weight' to 'lightweight'.

Suggested change
bool "uORB is a light-weight and powerful IPC library based on the publisher/subscriber model."
bool "uORB is a lightweight and powerful IPC library based on the publisher/subscriber model."

Copilot uses AI. Check for mistakes.
default n

if PKG_USING_UORB

config PKG_UORB_PATH
string
default "/packages/tools/uORB"

choice
prompt "Version"
default PKG_USING_UORB_LATEST_VERSION
help
Select the package version

config PKG_USING_UORB_LATEST_VERSION
bool "latest"
endchoice

config PKG_UORB_VER
string
default "latest" if PKG_USING_UORB_LATEST_VERSION

endif

28 changes: 28 additions & 0 deletions tools/uORB/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
{
"name": "uORB",
"description": "uORB is a light-weight and powerful IPC module based on the publisher/subscriber model.",
"description_zh": "uORB是一个基于发布者/订阅者模式的轻量级且功能强大的跨线程/进程通信模块。",
"enable": "PKG_USING_UORB",
"keywords": [
"uORB"
],
"category": "tools",
"author": {
"name": "Solonix-Chu",
"email": "[email protected]",
"github": "Solonix-Chu"
},
"license": "Apache-2.0",
"repository": "https://github.com/Solonix-Chu/uORB_RTT",
"icon": "unknown",
"homepage": "unknown",
"doc": "unknown",
Copy link

Copilot AI Oct 12, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The placeholder values 'unknown' for icon, homepage, and doc fields should be replaced with actual URLs or removed if not available. This improves package discoverability and user experience.

Suggested change
"doc": "unknown",

Copilot uses AI. Check for mistakes.
"site": [
{
"version": "latest",
"URL": "https://github.com/Solonix-Chu/uORB_RTT.git",
"filename": "uORB_RTT.zip",
"VER_SHA": "main"
}
]
}