diff options
author | Sabeeh Khan <sabeeh-khan@ti.com> | 2024-06-21 05:52:19 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2024-07-01 08:58:02 -0500 |
commit | fb05a426a518af0ecdb489cc12881e9f52c4fb60 (patch) | |
tree | 35a96f156f4d1e898151d3fa04b292cab0c3caf2 | |
parent | 320ec92327d1f2cfa63bfd7680173bf627a3051a (diff) | |
download | meta-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.bb | 24 |
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 @@ | |||
1 | SUMMARY = "The calibrator utility for TI wireless solution based on cc33xx driver" | ||
2 | LICENSE = "BSD-3-Clause" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=d5fc448a36efe573623542dcb989afc4" | ||
4 | |||
5 | SRCREV = "89d7e55b40972cbfc84f0734c35a7a6b4f7f5b31" | ||
6 | SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-utils.git;branch=master;protocol=https" | ||
7 | |||
8 | PV = "1.0.0.50" | ||
9 | |||
10 | DEPENDS = "libnl" | ||
11 | |||
12 | S = "${WORKDIR}/git/cc33calibrator" | ||
13 | |||
14 | export CROSS_COMPILE = "${TARGET_PREFIX}" | ||
15 | |||
16 | EXTRA_OEMAKE = "CFLAGS="${CFLAGS} -I${STAGING_INCDIR}/libnl3/ -DCONFIG_LIBNL32 " \ | ||
17 | LDFLAGS="${LDFLAGS} -L${STAGING_LIBDIR}" \ | ||
18 | CC="${CC}" \ | ||
19 | NLVER=3" | ||
20 | |||
21 | do_install() { | ||
22 | install -d ${D}${bindir} | ||
23 | install -m 0755 cc33calibrator ${D}${bindir}/ | ||
24 | } | ||