summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSabeeh Khan <sabeeh-khan@ti.com>2024-06-21 05:52:19 -0500
committerRyan Eatmon <reatmon@ti.com>2024-07-01 08:58:02 -0500
commitfb05a426a518af0ecdb489cc12881e9f52c4fb60 (patch)
tree35a96f156f4d1e898151d3fa04b292cab0c3caf2
parent320ec92327d1f2cfa63bfd7680173bf627a3051a (diff)
downloadmeta-ti-fb05a426a518af0ecdb489cc12881e9f52c4fb60.tar.gz
cc33calibrator: add new cc33calibrator tool for cc33xx devices
cc33calibrator is a tool provided by TI to manually control the radio frontend of the cc33xx device. This tool can also be used for production line testing of the radio. Documentation for this tool is provided within the following link: https://www.ti.com/tool/CC33XX-SOFTWARE Signed-off-by: Sabeeh Khan <sabeeh-khan@ti.com> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb b/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb
new file mode 100644
index 00000000..cd5b7dc5
--- /dev/null
+++ b/meta-ti-extras/recipes-connectivity/cc33calibrator/cc33calibrator_git.bb
@@ -0,0 +1,24 @@
1SUMMARY = "The calibrator utility for TI wireless solution based on cc33xx driver"
2LICENSE = "BSD-3-Clause"
3LIC_FILES_CHKSUM = "file://COPYING;md5=d5fc448a36efe573623542dcb989afc4"
4
5SRCREV = "89d7e55b40972cbfc84f0734c35a7a6b4f7f5b31"
6SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-utils.git;branch=master;protocol=https"
7
8PV = "1.0.0.50"
9
10DEPENDS = "libnl"
11
12S = "${WORKDIR}/git/cc33calibrator"
13
14export CROSS_COMPILE = "${TARGET_PREFIX}"
15
16EXTRA_OEMAKE = "CFLAGS="${CFLAGS} -I${STAGING_INCDIR}/libnl3/ -DCONFIG_LIBNL32 " \
17 LDFLAGS="${LDFLAGS} -L${STAGING_LIBDIR}" \
18 CC="${CC}" \
19 NLVER=3"
20
21do_install() {
22 install -d ${D}${bindir}
23 install -m 0755 cc33calibrator ${D}${bindir}/
24}