From patchwork Wed Apr 22 10:46:46 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Fitzmayer X-Patchwork-Id: 86633 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6F392F9B614 for ; Wed, 22 Apr 2026 10:47:08 +0000 (UTC) Received: from mailserv.regfish.com (mailserv.regfish.com [52.57.101.90]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.79823.1776854817953379611 for ; Wed, 22 Apr 2026 03:46:58 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=none, err=permanent DNS error (domain: michael-fitzmayer.de, ip: 52.57.101.90, mailfrom: mail@michael-fitzmayer.de) Received: by mailserv.regfish.com (Postfix, from userid 706) id 0F71B61FE8; Wed, 22 Apr 2026 10:46:56 +0000 (UTC) Received: from NB10174-DEV.jetter.local (unknown [217.78.170.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: 46272-0001) by mailserv.regfish.com (Postfix) with ESMTPSA id 00B4360714; Wed, 22 Apr 2026 10:46:55 +0000 (UTC) From: Michael Fitzmayer To: openembedded-devel@lists.openembedded.org Cc: Michael Fitzmayer Subject: [meta-oe][PATCH] canopenterm: update to version 2.02+git Date: Wed, 22 Apr 2026 12:46:46 +0200 Message-ID: <20260422104646.7769-1-mail@michael-fitzmayer.de> X-Mailer: git-send-email 2.53.0 MIME-Version: 1.0 List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 22 Apr 2026 10:47:08 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/126548 - Introduced a new API function: print_result() - Added support for configuring a dynamic number of filters when executing replay.lua - Added script to interact with the STM32 CAN bootloader (stm32.lua) - Add Unified Diagnostic Services (ISO 14229-1) script written in Lua (uds.lua) - Various updates and fixes required by the Debian package and to be able to get certified by Microsoft - Added manpages Signed-off-by: Michael Fitzmayer --- .../canopenterm/canopenterm_2.02.bb | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 meta-oe/recipes-extended/canopenterm/canopenterm_2.02.bb diff --git a/meta-oe/recipes-extended/canopenterm/canopenterm_2.02.bb b/meta-oe/recipes-extended/canopenterm/canopenterm_2.02.bb new file mode 100644 index 0000000000..b544fc4a9f --- /dev/null +++ b/meta-oe/recipes-extended/canopenterm/canopenterm_2.02.bb @@ -0,0 +1,31 @@ + +SUMMARY = "CANopenTerm is a versatile software tool to analyse and \ + configure CANopen devices. \ + " +DESCRIPTION = "CANopenTerm is an open-source software tool designed for the \ + development, testing, and analysis of CANopen CC networks and \ + devices. It extends its capabilities to support other CAN CC \ + protocols, including SAE J1939 and OBD-II. \ + " +HOMEPAGE = "https://canopenterm.de" +BUGTRACKER = "https://github.com/CANopenTerm/CANopenTerm/issues" + +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://LICENSE.md;md5=bd2edc721b4a0289efe949bdbe7dda79" + +DEPENDS = "canvenient cjson isocline libinih libsdl3 lua pocketpy" + +PV = "v2.02+git${SRCPV}" + +SRC_URI = "git://github.com/CANopenTerm/CANopenTerm.git;branch=main;protocol=https" + +SRCREV = "7a9466029a6e88345e65e794ff1779f778c9358a" + + +inherit cmake ptest + +EXTRA_OECMAKE += "-DUSE_SYSTEM_LIBS=ON" + +FILES:${PN} += "${bindir}/CANopenTerm ${bindir}/codb2json ${datadir}" + +RDEPENDS:${PN} = "canvenient cjson libinih libsdl3 lua pocketpy"