Skip to content

Commit

Permalink
Removal public Thread support for QPG6095/QPG6100
Browse files Browse the repository at this point in the history
  • Loading branch information
tima-q committed Aug 23, 2023
1 parent 1d534aa commit ada1e3d
Show file tree
Hide file tree
Showing 53 changed files with 8 additions and 6,015 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ jobs:
- name: Build
run: |
export PATH=/tmp/${{ matrix.gcc_extract_dir }}/bin:$PATH
script/test qpg6095
script/test qpg6100
script/test qpg6105
gcc-arm-none-linux-gnueabihf:
name: gcc-arm-none-linux-gnueabihf-${{ matrix.gcc_ver }}
Expand Down
4 changes: 1 addition & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,7 @@ project(ot-qorvo VERSION 0.1.0)

set(QORVO_PLATFORM_VALUES
"gp712"
"qpg6095"
"qpg6100"
"qpg6105"
. "qpg6105"
"qpg7015m"
)
set_property(CACHE QORVO_PLATFORM PROPERTY STRINGS ${QORVO_PLATFORM_VALUES})
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@

# OpenThread on Qorvo Example

This repo contains example platform drivers for [Qorvo GP712][gp712], [Qorvo QPG6095][qpg6095], [Qorvo QPG6100][qpg6100], [Qorvo QPG6105][qpg6105] and [Qorvo QPG7015M][qpg7015m].
This repo contains example platform drivers for [Qorvo GP712][gp712], [Qorvo QPG6105][qpg6105] and [Qorvo QPG7015M][qpg7015m].

[gp712]: https://www.qorvo.com/products/p/GP712
[qpg6095]: https://www.qorvo.com/products/p/QPG6095
[qpg6100]: https://www.qorvo.com/products/p/QPG6100
[qpg6105]: https://www.qorvo.com/products/p/QPG6105
[qpg7015m]: https://www.qorvo.com/products/p/QPG7015M

Expand Down
6 changes: 3 additions & 3 deletions script/build
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ set -euxo pipefail

OT_CMAKE_NINJA_TARGET=${OT_CMAKE_NINJA_TARGET:-}

QORVO_PLATFORMS=(gp712 qpg6095 qpg6100 qpg6105 qpg7015m)
QORVO_PLATFORMS=(gp712 qpg6105 qpg7015m)
readonly QORVO_PLATFORMS

OT_SRCDIR="$(pwd)"
Expand Down Expand Up @@ -87,7 +87,7 @@ main()
OT_CMAKE_NINJA_TARGET=("ot-rcp" "ot-cli-ftd" "ot-cli-mtd")
options+=("-DCMAKE_TOOLCHAIN_FILE=src/${platform}/arm-linux-gnueabihf.cmake")
;;
qpg6095 | qpg6100 | qpg6105)
qpg6105)
OT_CMAKE_NINJA_TARGET=("ot-cli-ftd" "ot-cli-mtd")
options+=("-DCMAKE_TOOLCHAIN_FILE=src/${platform}/arm-none-eabi.cmake")
;;
Expand All @@ -96,7 +96,7 @@ main()
build -DQORVO_PLATFORM="${platform}" "${options[@]}" "${cmdline_options[@]}"

case "${platform}" in
qpg6095 | qpg6100 | qpg6105)
qpg6105)
find "${builddir}/bin" -type f -executable -not -name '*.*' -not -name "${platform}-*" \
-execdir sh -c 'x="$1"; arm-none-eabi-objcopy -O ihex "$1" "$2-$(basename ${x}).hex"' _ {} "${platform}" \;
;;
Expand Down
2 changes: 1 addition & 1 deletion script/test
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

set -euxo pipefail

QORVO_PLATFORMS=(gp712 qpg6095 qpg6100 qpg6105 qpg7015m)
QORVO_PLATFORMS=(gp712 qpg6105 qpg7015m)
readonly QORVO_PLATFORMS

OT_BUILDDIR="$(pwd)/build"
Expand Down
146 changes: 0 additions & 146 deletions src/qpg6095/CMakeLists.txt

This file was deleted.

87 changes: 0 additions & 87 deletions src/qpg6095/alarm.c

This file was deleted.

Loading

0 comments on commit ada1e3d

Please sign in to comment.