diff --git a/peripherals/Kconfig b/peripherals/Kconfig index 7b4fe5fa96..61b795812b 100644 --- a/peripherals/Kconfig +++ b/peripherals/Kconfig @@ -3,7 +3,6 @@ menu "peripheral libraries and drivers" source "$PKGS_DIR/packages/peripherals/hal-sdk/Kconfig" source "$PKGS_DIR/packages/peripherals/sensors/Kconfig" source "$PKGS_DIR/packages/peripherals/touch/Kconfig" -source "$PKGS_DIR/packages/peripherals/realtek_ameba/Kconfig" source "$PKGS_DIR/packages/peripherals/button/Kconfig" source "$PKGS_DIR/packages/peripherals/pcf8574/Kconfig" source "$PKGS_DIR/packages/peripherals/sx12xx/Kconfig" diff --git a/peripherals/realtek_ameba/Kconfig b/peripherals/realtek_ameba/Kconfig deleted file mode 100644 index 9c9ff14f78..0000000000 --- a/peripherals/realtek_ameba/Kconfig +++ /dev/null @@ -1,31 +0,0 @@ - -# Kconfig file for package realtek_ameba -config PKG_USING_REALTEK_AMEBA - bool "realtek_ameba: ameba sdk package for rt-thread" - default n - -if PKG_USING_REALTEK_AMEBA - - config PKG_REALTEK_AMEBA_PATH - string - default "/packages/peripherals/realtek_ameba" - - choice - prompt "realtek_ameba version" - help - Select the realtek_ameba version - - config PKG_USING_REALTEK_AMEBA_LATEST_VERSION - bool "latest" - - config PKG_USING_REALTEK_AMEBA_V100 - bool "v1.0.0" - endchoice - - config PKG_REALTEK_AMEBA_VER - string - default "v1.0.0" if PKG_USING_REALTEK_AMEBA_V100 - default "latest" if PKG_USING_REALTEK_AMEBA_LATEST_VERSION - -endif - diff --git a/peripherals/realtek_ameba/package.json b/peripherals/realtek_ameba/package.json deleted file mode 100644 index dc899d4551..0000000000 --- a/peripherals/realtek_ameba/package.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "name": "realtek_ameba", - "description": "realtek_ameba package on RT-Thread", - "description_zh": "realtek 的 ameba 软件包在 RT-Thread 上的移植", - "enable": "PKG_USING_REALTEK_AMEBA", - "keywords": [ - "realtek_ameba" - ], - "category": "peripherals", - "author": { - "name": "flyingcys", - "email": "294102238@qq.com", - "github": "flyingcys" - }, - "license": "LGPL-2.1", - "repository": "https://github.com/flyingcys/realtek_ameba", - "homepage": "https://github.com/flyingcys/realtek_ameba#readme", - "site": [ - { - "version": "v1.0.0", - "URL": "https://github.com/flyingcys/realtek_ameba/archive/1.0.0.zip", - "filename": "realtek_ameba-1.0.0.zip" - }, - { - "version": "latest", - "URL": "https://github.com/flyingcys/realtek_ameba.git", - "filename": "realtek_ameba.zip", - "VER_SHA": "master" - } - ] -}