[cc2650] remove example platform (#6398)

This commit is contained in:
Jonathan Hui
2021-04-02 18:50:37 -07:00
committed by GitHub
parent 09c95f9a32
commit b7751460e0
251 changed files with 8 additions and 125561 deletions
-7
View File
@@ -51,12 +51,6 @@ build_cc2538()
make -f examples/Makefile-cc2538 "${options[@]}"
}
build_cc2650()
{
reset_source
make -f examples/Makefile-cc2650
}
build_jn5189()
{
local options=(
@@ -213,7 +207,6 @@ main()
if [[ $# == 0 ]]; then
build_cc2538
build_cc2650
build_jn5189
build_k32w061
build_nrf52811
-7
View File
@@ -59,12 +59,6 @@ build_cc2538()
"$(dirname "$0")"/cmake-build cc2538 "${OT_COMMON_OPTIONS[@]}" "${OT_BASIC_CHECK_OPTIONS[@]}" "${options[@]}"
}
build_cc2650()
{
reset_source
"$(dirname "$0")"/cmake-build cc2650 "${OT_COMMON_OPTIONS[@]}"
}
build_nrf52811()
{
reset_source
@@ -89,7 +83,6 @@ main()
if [[ $# == 0 ]]; then
build_cc2538
build_cc2650
# UART transport
build_nrf52840 UART_trans
# USB transport with bootloader e.g. to support PCA10059 dongle
+1 -5
View File
@@ -79,7 +79,7 @@ set -euxo pipefail
OT_CMAKE_NINJA_TARGET=${OT_CMAKE_NINJA_TARGET:-}
readonly OT_SRCDIR="$(pwd)"
readonly OT_PLATFORMS=(cc2538 cc2650 efr32mg1 efr32mg12 efr32mg13 efr32mg21 nrf52811 nrf52833 nrf52840 simulation posix)
readonly OT_PLATFORMS=(cc2538 efr32mg1 efr32mg12 efr32mg13 efr32mg21 nrf52811 nrf52833 nrf52840 simulation posix)
readonly OT_NRF528XX_BUILD_TYPES=(UART_trans USB_trans_bl SPI_trans_NCP soft_crypto soft_crypto_threading)
readonly OT_POSIX_SIM_COMMON_OPTIONS=(
"-DOT_BORDER_AGENT=ON"
@@ -228,10 +228,6 @@ main()
local_options=("-DOT_LINK_RAW=ON")
options+=("${OT_POSIX_SIM_COMMON_OPTIONS[@]}" "${local_options[@]}")
;;
cc2650)
OT_CMAKE_NINJA_TARGET=("ot-cli-mtd" "ot-ncp-mtd")
options+=("-DCMAKE_TOOLCHAIN_FILE=examples/platforms/${platform}/arm-none-eabi.cmake" "-DCMAKE_BUILD_TYPE=MinSizeRel")
;;
cc2538)
options+=("-DCMAKE_TOOLCHAIN_FILE=examples/platforms/${platform}/arm-none-eabi.cmake" "-DCMAKE_BUILD_TYPE=MinSizeRel")
;;