diff options
author | Sabeeh Khan <sabeeh-khan@ti.com> | 2024-06-21 05:52:18 -0500 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2024-07-01 08:58:02 -0500 |
commit | 320ec92327d1f2cfa63bfd7680173bf627a3051a (patch) | |
tree | 80be5491bb1f38da3b422dd375a2b363c67fbb27 | |
parent | 5cda7e9f4a0d9c7746adcaadefb1c8423f0e3568 (diff) | |
download | meta-ti-320ec92327d1f2cfa63bfd7680173bf627a3051a.tar.gz |
cc33conf: add new cc33conf tool for cc33xx devices
cc33conf is a tool provided by TI to configure
cc33xx WLAN devices. It can be used to change
the RF parameters and other features of the target.
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/cc33conf/cc33conf_git.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb b/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb new file mode 100644 index 00000000..096bf9bc --- /dev/null +++ b/meta-ti-extras/recipes-connectivity/cc33conf/cc33conf_git.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "Configuration utility for TI CC33xx wireless devices" | ||
2 | LICENSE = "BSD-3-Clause" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=d5fc448a36efe573623542dcb989afc4" | ||
4 | |||
5 | SRCREV = "a2f84140b8d67cfc94472cf92676a409d1e47d86" | ||
6 | SRC_URI = "git://git.ti.com/git/cc33xx-wlan/cc33xx-utils.git;branch=master;protocol=https" | ||
7 | |||
8 | PV = "1.7.0.120" | ||
9 | |||
10 | S = "${WORKDIR}/git/cc33conf" | ||
11 | |||
12 | EXTRA_OEMAKE = "CC="${CC}"" | ||
13 | |||
14 | do_install() { | ||
15 | install -d ${D}${sbindir} | ||
16 | install -d ${D}${sbindir}/cc33conf/ | ||
17 | |||
18 | install -m 0755 cc33xxconf ${D}${sbindir}/cc33conf/ | ||
19 | install -m 0755 dictionary.txt ${D}${sbindir}/cc33conf/ | ||
20 | install -m 0755 default.conf ${D}${sbindir}/cc33conf/ | ||
21 | install -m 0755 README ${D}${sbindir}/cc33conf/ | ||
22 | install -m 0755 cc33xx-conf.conf ${D}${sbindir}/cc33conf/ | ||
23 | install -m 0755 cc33xx-conf.ini ${D}${sbindir}/cc33conf/ | ||
24 | install -m 0755 conf.h ${D}${sbindir}/cc33conf/ | ||
25 | } | ||
26 | |||
27 | FILES:${PN} += " \ | ||
28 | ${sbindir}/cc33conf \ | ||
29 | " | ||