This demo is developed as part of TI Design on Protection Relaysi HMI. A protection relay is a smart device that receives inputs, compares them to set points, and provides outputs. Inputs can be current, voltage, resistance, or temperature. Outputs can include visual feedback in the form of indicator lights and/or an alphanumeric display, communications, control warnings, alarms, and turning power off and on.
Signed-off-by: Manisha Agrawal <[email protected]> --- .../protection-relays-hmi_git.bb | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb diff --git a/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb b/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb new file mode 100755 index 0000000..7ef73e6 --- /dev/null +++ b/recipes-apps/protection-relays-hmi/protection-relays-hmi_git.bb @@ -0,0 +1,23 @@ +SUMMARY = "HMI demo for Prectection Relays using QT QWidget tools" +LICENSE = "BSD-3-Clause" +LIC_FILES_CHKSUM = "file://main.cpp;beginline=1;endline=33;md5=a9cde3921a8be42ed79ab74661799104" + +inherit qt-provider + +PV = "1.0" +PR = "r0" + +BRANCH = "master" +SRC_URI = "git://git.ti.com/sitara-linux/protection-relays-hmi.git;protocol=git;branch=${BRANCH}" + +SRCREV = "c8764aaba365302090179b6720cbfc994e169842" + +S = "${WORKDIR}/git" + +CREATE_SRCIPK = "1" +SRCIPK_INSTALL_DIR = "example-applications/${PN}-${PV}" + +do_install() { + install -d ${D}${bindir} + install -m 755 protection_relays_hmi ${D}${bindir} +} -- 2.13.0 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
