<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Software Engineering &amp; SDVs Archives | Automotive Testing Technology International</title>
	<atom:link href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/feed" rel="self" type="application/rss+xml" />
	<link>https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs</link>
	<description></description>
	<lastBuildDate>Fri, 17 Apr 2026 10:27:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/01/tem-logo-black-square-2026-150x150.jpg</url>
	<title>Software Engineering &amp; SDVs Archives | Automotive Testing Technology International</title>
	<link>https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>From code to road: The invisible tools ADAS can’t live without</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/from-code-to-road-the-invisible-tools-adas-cant-live-without.html</link>
		
		<dc:creator><![CDATA[Sjoerd van der Zwaan, CPO, Solid Sands]]></dc:creator>
		<pubDate>Fri, 17 Apr 2026 10:26:47 +0000</pubDate>
				<category><![CDATA[ADAS & CAVs]]></category>
		<category><![CDATA[Industry Opinion]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65609</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/from-code-to-road-the-invisible-tools-adas-cant-live-without.html"><img width="400" height="198" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-1-Setting-the-Scene-e1776421577430-400x198.png" alt="From code to road: The invisible tools ADAS can’t live without" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><strong><em>Sjoerd van der Zwaan, CPO at Solid Sands, discusses compilers and libraries, and how they are essential to the performance of ADAS software platforms. He details how these tools work, the unseen risks that need to be overcome, and how to ensure reliability through verification </em></strong></p>
<p>Advanced driver assistance systems bring increasingly sophisticated software into vehicles. Functions such as lane keeping, adaptive cruise control, automated emergency braking and sensor fusion rely on complex algorithms operating under tight real-time constraints.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/from-code-to-road-the-invisible-tools-adas-cant-live-without.html" rel="nofollow">Continue reading From code to road: The invisible tools ADAS can’t live without at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><strong><em><a href="https://www.linkedin.com/in/sjoerdvanderzwaan/">Sjoerd van der Zwaan,</a> CPO at <a href="https://solidsands.com/">Solid Sands</a>, discusses compilers and libraries, and how they are essential to the performance of ADAS software platforms. He details how these tools work, the unseen risks that need to be overcome, and how to ensure reliability through verification </em></strong></p>
<p>Advanced driver assistance systems bring increasingly sophisticated software into vehicles. Functions such as lane keeping, adaptive cruise control, automated emergency braking and sensor fusion rely on complex algorithms operating under tight real-time constraints. Consequently, automotive development organizations invest substantial effort to ensure that application software and hardware platforms comply with functional safety standards such as <a href="https://www.iso.org/standard/68383.html">ISO 26262.</a></p>
<p>Yet one critical layer of the software stack often receives far less attention: the compilers and libraries that silently transform our software code into reliable, high-performance executable behavior. These tools operate largely out of sight, but they play a decisive role in determining how ADAS software performs on the road. In fact, no ADAS function can exist without them.</p>
<h3><strong>The silent force behind ADAS software </strong></h3>
<p>Compilers translate high-level source code into machine instructions, while standard libraries provide essential functionality for numerical computation, data handling and timing. Together, they form the foundation on which application software is built, and their correctness is often taken for granted throughout the development lifecycle.</p>
<p>In practice, this assumption can be risky. Even when application code complies with coding guidelines and the target hardware is safety-certified, deficiencies in the toolchain can still undermine system behavior. These issues typically do not originate in the application logic itself, but in lower layers that are difficult to observe directly.</p>
<h3><strong>Unseen risks in the toolchain </strong></h3>
<p>Compiler optimization is a prominent example. Optimization is essential for meeting performance and power consumption requirements in automotive systems, but it also introduces significant complexity. Changes in optimization paths can alter control flow, numerical precision or timing in ways that are not apparent from source code inspection. As a result, a compiler update or a change in optimization options may introduce new behaviors (and even errors) while the application code remains unchanged.</p>
<p>Standard libraries present similar risks. Library functions are widely assumed to be robust and well tested, yet they are subject to implementation choices and corner cases like any other software. In ADAS, where libraries are statically or tightly linked into the final executable, subtle deviations from expected behavior can propagate directly into system-level effects.</p>
<figure id="attachment_65619" aria-describedby="caption-attachment-65619" class="wp-caption alignnone"><img fetchpriority="high" decoding="async" class="size-full wp-image-65619" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-3-The-Unseen-Threats-400x134.png" alt="Flow diagram illustrating how even with compliant source code and certified hardware, errors in compilers and libraries can still lead to unsafe system behavior." width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-65619" class="wp-caption-text">Even with compliant source code and certified hardware, errors in compilers and libraries can still lead to unsafe system behavior</figcaption></figure>
<p>Because these problems originate below the application layer, they are not easily detected using conventional testing approaches. Integration testing may expose symptoms, but it rarely provides systematic coverage of toolchain behavior. As a result, determining whether the root cause lies in the application logic, the compiler or a library implementation can require extensive investigation. When such issues surface late in development, the associated cost and disruption can be substantial. Even more concerning, if they remain undetected until deployment, they may manifest as safety-critical failures, with potentially severe consequences.</p>
<h3><strong>Ensuring reliability through verification </strong></h3>
<p>Managing these risks requires systematic verification of compilers and libraries. This involves demonstrating conformance to relevant programming language standards and consistent behavior across configurations, optimization levels and target platforms.</p>
<p>Structured test suites are central to this effort. By exercising both front-end language features and back-end optimization paths, they can reveal defects that would otherwise remain latent. Problems are not confined to parsing or semantic analysis; changes deep within the optimization pipeline or the code generator can also introduce unintended effects. Comprehensive testing helps surface these issues early, before they impact product development.</p>
<figure id="attachment_65620" aria-describedby="caption-attachment-65620" class="wp-caption alignnone"><img decoding="async" class="size-full wp-image-65620" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-5-Ensuring-Reliability-Through-Testing-400x332.png" alt="Illustration of an integrated test and qualification platform. " width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-65620" class="wp-caption-text">An integrated test and qualification platform enables efficient validation of compilers and libraries through parallelization, targeted retesting and comprehensive coverage.</figcaption></figure>
<h3><strong>Supporting qualification and long-term confidence </strong></h3>
<p>Beyond identifying defects, verification provides the objective evidence needed to support tool qualification. The ISO 26262 safety standard for automotive software requires confidence in the correct operation of the compiler and evidence that the standard library meets the requirements on which the application relies. By testing the compiler against the programming language specification, it is possible to verify that source code is translated into machine code in a well-defined and predictable manner. Likewise, requirements-based testing of the standard library demonstrates that its functionality conforms to the requirements relied upon by the software. Together, these activities provide objective evidence that the generated object code faithfully represents the source code.</p>
<p>Furthermore, the goal of qualification is not to prove that the compiler or library is completely free of errors – an unrealistic expectation for any complex software tool. Instead, the objective is to understand their limitations and known deviations, and to manage them in a controlled way so that they do not compromise functional safety. This understanding is captured in a safety manual that complements the verification results and defines the constraints, assumptions and usage rules for the compiler and library, ensuring they can be applied safely within the software development process.</p>
<figure id="attachment_65622" aria-describedby="caption-attachment-65622" class="wp-caption alignnone"><img decoding="async" class="size-full wp-image-65622" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-4-How-to-Solve-It-400x185.png" alt="Graphic showing how a structured qualification process verifies compilers and libraries." width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-65622" class="wp-caption-text">A structured qualification process verifies compilers and libraries, generating the evidence and documentation needed to support functional safety compliance</figcaption></figure>
<p>This approach also supports long-term maintainability. Automotive platforms often have lifecycles spanning decades, during which compilers and libraries inevitably evolve. Systematic validation of updates enables controlled transitions without the need to re-qualify entire systems from scratch.</p>
<p>This benefit has been demonstrated in practice, where early identification of compiler issues has significantly reduced the effort associated with toolchain updates. By understanding tool behavior upfront, organizations can make informed decisions about changes and avoid costly surprises later.</p>
<p>Standard libraries follow similar principles. When assessing a new library implementation, behavioral comparison against a known baseline helps ensure that replacements do not introduce unintended or system-relevant changes.</p>
<h3><strong>The role of collaboration </strong></h3>
<p>ADAS development involves many stakeholders: software engineers, functional safety engineers, validation teams and certification bodies. Ensuring that compilers and libraries behave as expected requires collaboration across all these roles.</p>
<p>Verification cannot be treated as an isolated activity, it must be an integral part of a broader safety strategy. When toolchain behavior is well understood and documented, communication between teams becomes clearer, assumptions are explicit and decisions can be justified with evidence rather than intuition.</p>
<p>Strong partnerships between tool providers, system integrators and safety experts further support this process. By sharing knowledge and aligning on verification practices, organizations can reduce duplication of effort and improve overall confidence in their development environment.</p>
<figure id="attachment_65618" aria-describedby="caption-attachment-65618" class="wp-caption alignnone"><img loading="lazy" decoding="async" class="size-full wp-image-65618" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-2-Meet-the-Key-Players-400x192.png" alt="Diagram illustrating the key players – software engineers, functional safety engineers and safety-critical systems – and how collaboration between software and functional safety engineers ensures safety requirements are translated into validated, safety-critical automotive systems." width="400" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-65618" class="wp-caption-text">Collaboration between software and functional safety engineers ensures safety requirements are translated into validated, safety-critical automotive systems</figcaption></figure>
<h3><strong>Conclusion </strong></h3>
<p>Compilers and libraries may operate invisibly, but their impact on ADAS safety is substantial. Treating them as implicit assumptions rather than explicit verification targets introduces avoidable risk. As ADAS functionality grows increasingly complex, this risk will only increase.</p>
<p>By recognizing the role of the toolchain early and subjecting it to the same rigor as application software, automotive developers can build a stronger foundation for safety. Verification and qualification of compilers and libraries are not optional extras; they are essential steps to ensure that software behaves as intended – from code to road.</p>
<p><em>A feature in the next issue of </em>Automotive Testing Technology International <em>will investigate the challenges of continuous testing for software, the stages of a typical DevOps pipeline, how companies are measuring software readiness, and more. <a href="https://automotivetesting.mydigitalpublication.com/march-2026-issue-/">Read the March 2026 edition here</a>. </em></p>
<p><em>Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/software-test-specialists-solid-sands-and-plum-hall-team-up.html">Software test specialists Solid Sands and Plum Hall team up</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65609</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/SOL150-Image-1-Setting-the-Scene-e1776421577430.png" medium="image" />
        	</item>
		<item>
		<title>Toyota Motor Europe opens digital hub in Wrocław</title>
		<link>https://www.automotivetestingtechnologyinternational.com/news/test-facilities/toyota-motor-europe-opens-digital-hub-in-wroclaw.html</link>
		
		<dc:creator><![CDATA[Zahra Awan]]></dc:creator>
		<pubDate>Tue, 14 Apr 2026 16:08:17 +0000</pubDate>
				<category><![CDATA[Cybersecurity]]></category>
		<category><![CDATA[Facilities]]></category>
		<category><![CDATA[R&D]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<category><![CDATA[Vehicle Development]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65595</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/news/test-facilities/toyota-motor-europe-opens-digital-hub-in-wroclaw.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/1920_dji_0692-400x224.jpg" alt="Toyota Motor Europe opens digital hub in Wrocław" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p>Toyota Motor Europe has opened the Toyota Digital Hub in Wrocław, Poland, that will focus on developing applications, cloud infrastructure and cybersecurity solutions using advanced technologies for Toyota and Lexus vehicles across Europe.</p>
<p>The hub is expected to employ around 200 technical specialists that will be responsible for enhancing the MyToyota and LexusLink+ applications, which are used by more than two million European customers to access remote vehicle functions, battery‑charge monitoring and a wide range of ownership‑convenience services.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/news/test-facilities/toyota-motor-europe-opens-digital-hub-in-wroclaw.html" rel="nofollow">Continue reading Toyota Motor Europe opens digital hub in Wrocław at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://www.toyota.co.uk/">Toyota Motor Europe</a> has opened the Toyota Digital Hub in Wrocław, Poland, that will focus on developing applications, cloud infrastructure and cybersecurity solutions using advanced technologies for Toyota and Lexus vehicles across Europe.</p>
<p>The hub is expected to employ around 200 technical specialists that will be responsible for enhancing the MyToyota and LexusLink+ applications, which are used by more than two million European customers to access remote vehicle functions, battery‑charge monitoring and a wide range of ownership‑convenience services. The team will also contribute to the development of the cloud infrastructure that enables connected services for Toyota and Lexus vehicles in Europe, while additionally providing cybersecurity support.</p>
<p>“Toyota has been present in Poland for 35 years and this project strengthens Toyota’s commitment in this market,” said <a href="https://www.linkedin.com/in/thierry-boitel-944487130/">Thierry Boitel</a>, vice president of research and development, Toyota Motor Europe. “Poland was selected as the location for the Toyota Digital Hub due to its strong pool of highly skilled specialists and the presence of leading technical universities.”</p>
<p>The establishment of the Toyota Digital Hub marks a further investment by Toyota in Wrocław. Since 2015, the Shared Services Centre has operated in the city, providing accounting and tax advisory services for all Toyota units in Europe.</p>
<p>“The Toyota Digital Hub is set to play an important role in Europe by expanding Toyota’s software development capabilities and positioning Toyota Motor Europe as a trusted partner in future global software‑defined vehicle development,” said <a href="https://www.linkedin.com/in/llopes/">Luis Lopes</a>, vice president information and technology, Toyota Motor Europe.</p>
<p>“The decision to locate Toyota Digital Hub in Poland confirms our country’s strong investment appeal and its solid position as a hub for modern technologies,” said Andrzej Domański, Polish minister of finance and economy.</p>
<p><em>Recent news, <a href="https://www.automotivetestingtechnologyinternational.com/news/vehicle-development/pony-ai-launches-self-improving-physical-ai-engine-ponyworld-2-0.html">Pony AI launches self-improving physical AI engine PonyWorld 2.0</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65595</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/1920_dji_0692.jpg" medium="image" />
        	</item>
		<item>
		<title>Agillence and Toyota Motor Europe partner on logistics optimization software</title>
		<link>https://www.automotivetestingtechnologyinternational.com/news/appointments-partnerships-investments-acquisitions/agillence-and-toyota-motor-europe-partner-on-logistics-optimization-software.html</link>
		
		<dc:creator><![CDATA[Zahra Awan]]></dc:creator>
		<pubDate>Tue, 14 Apr 2026 15:58:00 +0000</pubDate>
				<category><![CDATA[Appointments, Partnerships, Investments & Acquisitions]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65592</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/news/appointments-partnerships-investments-acquisitions/agillence-and-toyota-motor-europe-partner-on-logistics-optimization-software.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/1920_csuv0004a_251-1-400x224.jpg" alt="Agillence and Toyota Motor Europe partner on logistics optimization software" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p>Following the successful completion of an initial pilot program, Agillence has entered a long-term contract with Toyota Motor Europe (TME) to continue providing its proprietary Agillence Lean Logistics Optimizer (ALLO) software for inbound parts logistics network planning.</p>
<p>During the pilot, ALLO demonstrated its ability to improve inbound logistics planning performance across TME’s complex European logistics network, reduce planning cycle times and support TME’s carbon neutrality objectives.</p>
<p>“The results of our pilot with Agillence have exceeded expectations,” said Jean-Christophe Deville, vice president of supply chain at TME.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/news/appointments-partnerships-investments-acquisitions/agillence-and-toyota-motor-europe-partner-on-logistics-optimization-software.html" rel="nofollow">Continue reading Agillence and Toyota Motor Europe partner on logistics optimization software at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p>Following the successful completion of an initial pilot program, <a href="https://agillence.com/">Agillence</a> has entered a long-term contract with <a href="https://www.toyota-europe.com/">Toyota Motor Europe (TME)</a> to continue providing its proprietary Agillence Lean Logistics Optimizer (ALLO) software for inbound parts logistics network planning.</p>
<p>During the pilot, ALLO demonstrated its ability to improve inbound logistics planning performance across TME’s complex European logistics network, reduce planning cycle times and support TME’s carbon neutrality objectives.</p>
<p>“The results of our pilot with Agillence have exceeded expectations,” said <a href="https://www.linkedin.com/in/jean-christophe-deville-7764978/">Jean-Christophe Deville</a>, vice president of supply chain at TME. “ALLO has proven to be a strategic asset in our pursuit of a sustainable, cost-efficient logistics network across Europe. We are confident that this long-term partnership will continue to drive meaningful progress toward our carbon neutrality goals while delivering real operational value.”</p>
<p>“We are pleased to formalize our long-term relationship with Toyota Motor Europe,” said <a href="https://www.linkedin.com/in/sriniparuchuri/">Srini Paruchuri</a>, vice president of customer strategy and solutions at Agillence. “This partnership is a testament to the power of ALLO in addressing the unique logistics complexities of large-scale European automotive operations. We look forward to deepening our collaboration with TME as they continue to lead the industry in sustainable supply chain practices.”</p>
<p><em>Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/omnitrust-and-synopsys-collaboration-enables-earlier-security-validation-of-embedded-systems.html">OmniTrust and Synopsys collaboration enables earlier security validation of embedded systems</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65592</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/1920_csuv0004a_251-1.jpg" medium="image" />
        	</item>
		<item>
		<title>Pony AI launches self-improving physical AI engine PonyWorld 2.0</title>
		<link>https://www.automotivetestingtechnologyinternational.com/news/vehicle-development/pony-ai-launches-self-improving-physical-ai-engine-ponyworld-2-0.html</link>
		
		<dc:creator><![CDATA[Zahra Awan]]></dc:creator>
		<pubDate>Mon, 13 Apr 2026 13:52:24 +0000</pubDate>
				<category><![CDATA[ADAS & CAVs]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<category><![CDATA[Vehicle Development]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65588</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/news/vehicle-development/pony-ai-launches-self-improving-physical-ai-engine-ponyworld-2-0.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/20260409-182610-2048x1147-1-400x224.jpg" alt="Pony AI launches self-improving physical AI engine PonyWorld 2.0" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p>The autonomous driving industry is entering a new commercial phase. The challenge is no longer simply proving that driverless technology works, but improving performance quickly and consistently to enable broader deployment, stronger unit economics and sustained technical leadership.</p>
<p>To address this, Pony.ai has launched PonyWorld 2.0, the latest upgrade to its proprietary world model and a major advancement in the core training system behind its autonomous driving stack. The key advancement is its ability to identify its own weaknesses and guide targeted improvements.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/news/vehicle-development/pony-ai-launches-self-improving-physical-ai-engine-ponyworld-2-0.html" rel="nofollow">Continue reading Pony AI launches self-improving physical AI engine PonyWorld 2.0 at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p>The autonomous driving industry is entering a new commercial phase. The challenge is no longer simply proving that driverless technology works, but improving performance quickly and consistently to enable broader deployment, stronger unit economics and sustained technical leadership.</p>
<p>To address this, <a href="https://pony.ai/">Pony.ai</a> has launched PonyWorld 2.0, the latest upgrade to its proprietary world model and a major advancement in the core training system behind its autonomous driving stack. The key advancement is its ability to identify its own weaknesses and guide targeted improvements. The upgrade introduces three core capabilities: self-diagnosis, targeted data collection in areas where performance is still limited and more efficient training focused on the most challenging cases.</p>
<p>Since 2020, Pony.ai has developed PonyWorld not as a basic synthetic data simulation tool, but as a full reinforcement learning system spanning cloud-based training and in-vehicle deployment. As the system has matured, improving the Virtual Driver has increasingly depended on enhancing the world model that trains it, particularly its ability to accurately represent real-world dynamics and interactions.</p>
<p>“PonyWorld 2.0 is an important step toward a more self-improving approach to autonomous driving development,” said <a href="https://www.linkedin.com/in/tiancheng-lou-486bb467/">Dr Tiancheng Lou</a>, founder and CTO of Pony.ai. “As AI systems become more capable, they can play a larger role not only in learning to drive, but also in guiding their own improvement – making L4 development more scalable over time.”</p>
<p>PonyWorld 2.0 is already being applied across Pony.ai’s L4 driverless fleet and R&amp;D system.</p>
<p>After validating robotaxi unit economics in two major Chinese cities with its seventh-generation fleet, the company is accelerating commercialization across China and international markets, targeting over 3,000 vehicles and 20 cities globally by year-end, nearly half overseas.</p>
<h3><strong>New training for scalable autonomy</strong></h3>
<p>As driverless operations grow from hundreds of vehicles to thousands and beyond, it becomes both harder and more important to keep improving safety and performance without regression.</p>
<p>Pony.ai defines a true world model as more than a tool for generating virtual scenarios. It must establish what good driving means, accurately model the physical world and replicate realistic interactions between the AI driver and other road users across both edge cases and normal traffic.</p>
<p>PonyWorld 2.0 is designed to make that process more efficient. A structured intention layer enables the model to form an internal representation of why it made a decision, making large-scale self-diagnosis possible. The system can review its own decisions, compare intent with outcomes and identify the types of scenarios where additional learning is needed. It can then generate targeted data-collection tasks for human teams, which gather the relevant real-world samples, feed them back into the cloud, and help recalibrate the world model for more precise training.</p>
<p>In the early stages of autonomous driving, progress depended heavily on human engineers to design rules, label data and decide what to train next. PonyWorld 2.0 points to a different model. As AI systems become more capable, they can take over more of their own improvement cycle, while human engineers increasingly serve as operators of a directed data-collection loop shaped by the system’s own learning needs.</p>
<p>Pony.ai believes PonyWorld 2.0’s approach, combining high-accuracy world modeling, self-diagnosis and targeted improvement, could apply to broader physical AI systems that must learn safely and efficiently in real-world environments, extending beyond autonomous driving.</p>
<p><em>Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/tire-testing/pirelli-develops-bespoke-p-zero-r-tires-for-audi-rs-5-and-rs-3-competition-limited.html">Pirelli develops bespoke P Zero R tires for Audi RS 5 and RS 3 Competition Limited</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65588</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/20260409-182610-2048x1147-1.jpg" medium="image" />
        	</item>
		<item>
		<title>OmniTrust and Synopsys collaboration enables earlier security validation of embedded systems</title>
		<link>https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/omnitrust-and-synopsys-collaboration-enables-earlier-security-validation-of-embedded-systems.html</link>
		
		<dc:creator><![CDATA[Zahra Awan]]></dc:creator>
		<pubDate>Wed, 08 Apr 2026 09:04:57 +0000</pubDate>
				<category><![CDATA[Software Engineering & SDVs]]></category>
		<category><![CDATA[Vehicle Development]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65564</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/omnitrust-and-synopsys-collaboration-enables-earlier-security-validation-of-embedded-systems.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/image-11-e1775639004789-400x224.jpeg" alt="OmniTrust and Synopsys collaboration enables earlier security validation of embedded systems" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p>As embedded systems become increasingly software-driven, development workflows have shifted earlier through virtualization and electronics digital twin technologies. However, key security checks, such as secure boot and firmware integrity, are still often delayed until physical hardware is availabl, which creates risk, slows development and increases costs when issues are discovered late.</p>
<p>To address this, OmniTrust and Synopsys have partnered to help development teams identify and fix critical security issues earlier in the embedded systems lifecycle by enabling secure boot validation within virtual ECU (vECU) environments.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/omnitrust-and-synopsys-collaboration-enables-earlier-security-validation-of-embedded-systems.html" rel="nofollow">Continue reading OmniTrust and Synopsys collaboration enables earlier security validation of embedded systems at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p>As embedded systems become increasingly software-driven, development workflows have shifted earlier through virtualization and electronics digital twin technologies. However, key security checks, such as secure boot and firmware integrity, are still often delayed until physical hardware is availabl, which creates risk, slows development and increases costs when issues are discovered late.</p>
<p>To address this, <a href="https://omnitrust.com/">OmniTrust</a> and <a href="https://www.synopsys.com/">Synopsys</a> have partnered to help development teams identify and fix critical security issues earlier in the embedded systems lifecycle by enabling secure boot validation within virtual ECU (vECU) environments.</p>
<p>The collaboration aims to close this gap between software and hardware by bringing security validation into the early stages of development. By combining Synopsys’s vECU solutions with OmniTrust’s embedded trust capabilities, teams can run production firmware in virtual environments and validate both expected and tampered scenarios long before hardware is ready.</p>
<p>This approach enables developers to observe and test secure boot behavior as part of standard software workflows, including automated regression testing. As a result, teams can detect vulnerabilities sooner, reduce integration risks and accelerate time to market.</p>
<p>OmniTrust provides core embedded security capabilities such as secure boot policy validation, firmware signature verification and cryptographic trust anchor management. When integrated into Synopsys’s virtual development environments, these capabilities enable developers to treat security enforcement as a continuous, testable part of modern software development.</p>
<p>“As automotive architectures become increasingly software-defined, automotive companies must integrate security validation as part of their software development,” said <a href="https://www.linkedin.com/in/marc-serughetti-58b19a/">Marc Serughetti</a>, vice president, product management and markets group, Synopsys. “Our collaboration with OmniTrust enables development teams to leverage electronics digital twins and integrate trust validation into their software development before hardware is available. Our joint customers can accelerate time to market and innovation with greater confidence in the security of their systems.”</p>
<p>“Secure boot and firmware authenticity are essential for system integrity, yet often checked later in development,” said <a href="https://www.linkedin.com/in/albert-rooyakkers/">Albert Rooyakkers</a>, SVP of business development at OmniTrust. “Synopsys virtual ECUs enable early security validation, automated testing and authenticated software deployment in production.”</p>
<p><em>Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/adas-cavs/voluntary-safety-assessment-by-einride-ab-published-for-cab-less-autonomous-heavy-duty-trucks.html">Voluntary safety assessment by Einride published for cab-less autonomous heavy-duty trucks</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65564</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/image-11-e1775639004789.jpeg" medium="image" />
        	</item>
		<item>
		<title>Building trust in AI with deterministic engineering</title>
		<link>https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-trust-in-ai-with-deterministic-engineering.html</link>
		
		<dc:creator><![CDATA[Robert Ter Waarbeek, principal automotive industry manager EMEA, MathWorks]]></dc:creator>
		<pubDate>Wed, 01 Apr 2026 13:33:12 +0000</pubDate>
				<category><![CDATA[CAE, Simulation & Modeling]]></category>
		<category><![CDATA[Industry Opinion]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65534</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-trust-in-ai-with-deterministic-engineering.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/Mathworks_SDV-1-400x224.jpg" alt="Building trust in AI with deterministic engineering" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p><strong><em>Robert Ter Waarbeek, principal automotive industry manager EMEA at MathWorks, explains how engineers can advance automotive development with AI-enabled model-based design </em></strong></p>
<p>Automotive development is evolving as software-defined vehicle programs introduce faster feature cycles and more complex system interactions while meeting strict requirements for safety, reliability and long-term maintainability. Gen AI is now part of engineering workflows. It can help increase development speed, but its non-deterministic behavior, lack of physics awareness and limited traceability make it difficult to apply directly to safety-critical systems.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/industry-opinion/building-trust-in-ai-with-deterministic-engineering.html" rel="nofollow">Continue reading Building trust in AI with deterministic engineering at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><strong><em><a href="https://www.linkedin.com/in/robert-ter-waarbeek/?locale=en_US">Robert Ter Waarbeek</a>, principal automotive industry manager EMEA at MathWorks, explains how engineers can advance automotive development with AI-enabled model-based design </em></strong></p>
<p>Automotive development is evolving as software-defined vehicle programs introduce faster feature cycles and more complex system interactions while meeting strict requirements for safety, reliability and long-term maintainability. Gen AI is now part of engineering workflows. It can help increase development speed, but its non-deterministic behavior, lack of physics awareness and limited traceability make it difficult to apply directly to safety-critical systems. These characteristics make verification, certification and traceability challenging when outputs generated by Gen AI are introduced without constraints.</p>
<p>Model-based design addresses these issues through deterministic execution, executable specifications and physics-based simulation. <a href="https://uk.mathworks.com/">MathWorks</a> is bringing these strengths together by integrating Gen AI assistance directly into model-based design tooling, enabling engineers to benefit from accelerated workflows while preserving the rigor required for long-term reliability and certification of automotive software.</p>
<h3><strong>Simulation as the foundation of trust</strong></h3>
<p>Simulation is the foundation of trust in engineering workflows assisted by Gen AI. It provides a controlled environment where system behavior can be verified early and repeatedly. Model‑based design enables closed‑loop simulation within continuous development pipelines, enabling Gen AI‑assisted artifacts to be validated continuously in virtual environments long before software reaches hardware. Closed-loop simulation uncovers defects that emerge only from real‑time interaction between software, hardware and physical dynamics, such as instability, timing issues, saturation and integration errors. Unlike regular software tests that validate code logic in isolation, simulation validates system behavior against requirements under realistic operating conditions, catching safety‑ and performance‑critical issues much earlier.</p>
<p>In leading organizations, ‘shift left’ is not a one-time activity; virtual verification is embedded directly into continuous integration/continuous development (CI/CD) pipelines. Every change triggers automated builds and simulation runs, exercising models against representative scenarios and acceptance criteria. Verification becomes continuous, not episodic.</p>
<h3><strong>Scalable development for evolving E/E architectures</strong></h3>
<p>Automotive E/E architectures are transitioning from ECU-centric networks to zonal and centralized computing platforms. Software is no longer bound to specific hardware configurations but must now operate reliably across heterogeneous compute targets while remaining portable and scalable, from small controllers to high-performance vehicle computers.</p>
<p>Model-based design supports this requirement by separating system behavior and software intent from hardware implementation. Engineers develop executable models that serve as stable sources of truth. The models can generate production-ready code for a wide range of processors and operating systems, including platforms incorporating AI inference engines and hardware accelerators such as GPUs, DSPs and NPUs. This approach enables the development and validation of AI-enabled functions (e.g. virtual sensors) at the system level, reduces the need to reengineer algorithms for each target, and improves efficiency and consistency across platforms.</p>
<h3><strong>Improving collaboration through model-based design</strong></h3>
<p>Engineering organizations must transform their collaboration models to keep pace with increased complexity. Integrating simulation, virtualization and automated verification directly into CI/CD workflows supports rapid iteration across software, AI models and hardware acceleration strategies. This model-centric approach helps organizations operate more quickly while preserving robustness, safety and long-term maintainability in the era of software-defined and AI-driven vehicles.</p>
<h3><strong>Integrating AI into deterministic engineering workflows</strong></h3>
<p>AI is most effective in automotive development when embedded within a deterministic modeling framework. Within model-based design tools, GenAI-generated content is automatically tied to established interfaces, data definitions and architectural constraints. Model Context Protocol (MCP) capabilities empower engineers with AI assistance while preserving the rigor, repeatability and certification readiness.</p>
<p>Long-term maintainability and certification readiness require deterministic behavior, transparent audit trails and verification evidence that accumulates throughout the lifecycle. Model-based design naturally supports these goals by linking requirements, models, test suites and generated code. Continuous simulation produces verification data throughout development rather than only at the end of a program. When artifacts generated by Gen AI follow the same workflows, they inherit this structure. This ensures that productivity gains do not come at the cost of safety, quality or compliance, and that Gen AI can be adopted at scale.</p>
<h3><strong>Conclusion</strong></h3>
<p>Gen AI and model-based design offer a structured path to accelerate automotive software development while maintaining trust, safety and engineering rigor. Model-based design provides determinism, physics-based validation and traceability. Gen AI adds efficiency and supports faster iteration when integrated within these boundaries.</p>
<p>This combination enables earlier insight into system behavior and deployment across diverse hardware architectures. The model-centric approach ensures consistent collaboration across engineering teams, and promotes reuse and consistency across global programs. Gen AI-enabled model-based design provides a scalable and reliable foundation for developing robust and certifiable automotive systems.</p>
<p><a href="https://automotivetesting.mydigitalpublication.com/september-2024-issue-/page-100"><em>In the September 2024 edition of </em>ATTI<em>, Secondmind’s chief product officer, Morgan Jenkins, discusses the power and limitations of AI</em></a></p>
<p><em>In related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/cae-simulation-modeling/agentic-ai-transforms-mclaren-automotives-entire-engineering-process.html">Agentic AI transforms McLaren Automotive’s entire engineering process</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65534</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/04/Mathworks_SDV-1.jpg" medium="image" />
        	</item>
		<item>
		<title>Rivian-Volkswagen joint venture completes SDV architecture winter testing</title>
		<link>https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/rivian-volkswagen-joint-venture-completes-sdv-architecture-winter-testing.html</link>
		
		<dc:creator><![CDATA[Zahra Awan]]></dc:creator>
		<pubDate>Tue, 31 Mar 2026 14:05:27 +0000</pubDate>
				<category><![CDATA[Appointments, Partnerships, Investments & Acquisitions]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65521</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/rivian-volkswagen-joint-venture-completes-sdv-architecture-winter-testing.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/B2026CW00095-400x224.jpg" alt="Rivian-Volkswagen joint venture completes SDV architecture winter testing" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p>The Rivian and Volkswagen Group Technologies (RV Tech) joint venture has completed winter testing of its production-intent zonal architecture for the first generation of software‑defined vehicles (SDVs). Over the course of several months of testing in Phoenix, Arizona, and Arjeplog, Sweden, a joint team from Volkswagen, Audi, Scout and RV Tech validated the functionality and performance of the electronics and software.</p>
<p data-start="0" data-end="184" data-is-last-node="" data-is-only-node="">The partnership is developing SDV technology, from operating systems to zonal controllers to cloud and connectivity solutions.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/rivian-volkswagen-joint-venture-completes-sdv-architecture-winter-testing.html" rel="nofollow">Continue reading Rivian-Volkswagen joint venture completes SDV architecture winter testing at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p>The<span style="background-color: rgba(191, 230, 255, 0.23);"> <a href="https://rivian.com">Rivian</a> and Volkswagen Group Technologies (RV Tech) joint venture has completed winter testing</span> of its production-intent zonal architecture for the first generation of software‑defined vehicles (SDVs). Over the course of several months of testing in Phoenix, Arizona, and Arjeplog, Sweden, a joint team from <a href="https://www.volkswagen-group.com/en">Volkswagen</a>, <a href="https://www.audi.co.uk/en/">Audi</a>, <a href="https://www.scoutmotors.com/">Scout</a> and RV Tech validated the functionality and performance of the electronics and software.</p>
<div class="flex flex-col text-sm pb-25">
<section class="text-token-text-primary w-full focus:outline-none [--shadow-height:45px] has-data-writing-block:pointer-events-none has-data-writing-block:-mt-(--shadow-height) has-data-writing-block:pt-(--shadow-height) [&amp;:has([data-writing-block])&gt;*]:pointer-events-auto scroll-mt-[calc(var(--header-height)+min(200px,max(70px,20svh)))]" dir="auto" data-turn-id="request-69c13278-5a2c-8327-8284-e02e269fabf5-10" data-testid="conversation-turn-34" data-scroll-anchor="true" data-turn="assistant">
<div class="text-base my-auto mx-auto pb-10 [--thread-content-margin:var(--thread-content-margin-xs,calc(var(--spacing)*4))] @w-sm/main:[--thread-content-margin:var(--thread-content-margin-sm,calc(var(--spacing)*6))] @w-lg/main:[--thread-content-margin:var(--thread-content-margin-lg,calc(var(--spacing)*16))] px-(--thread-content-margin)">
<div class="[--thread-content-max-width:40rem] @w-lg/main:[--thread-content-max-width:48rem] mx-auto max-w-(--thread-content-max-width) flex-1 group/turn-messages focus-visible:outline-hidden relative flex w-full min-w-0 flex-col agent-turn">
<div class="flex max-w-full flex-col gap-4 grow">
<div class="min-h-8 text-message relative flex w-full flex-col items-end gap-2 text-start break-words whitespace-normal outline-none keyboard-focused:focus-ring [.text-message+&amp;]:mt-1" dir="auto" tabindex="0" data-message-author-role="assistant" data-message-id="917e8318-00e6-4412-b585-071ec0f12a17" data-message-model-slug="gpt-5-mini" data-turn-start-message="true">
<div class="flex w-full flex-col gap-1 empty:hidden">
<div class="markdown prose dark:prose-invert w-full wrap-break-word light markdown-new-styling">
<p data-start="0" data-end="184" data-is-last-node="" data-is-only-node="">The partnership is developing SDV technology, from operating systems to zonal controllers to cloud and connectivity solutions.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<p><a href="https://www.volkswagen-group.com/en/executive-bodies-15790#">Oliver Blume</a>, CEO of the Volkswagen Group, said, “We are accelerating toward the future. With the successful completion of the winter tests, our joint venture once again demonstrates the speed and precision of its work. The close integration between the joint venture, our brands and the group follows a clear objective: to excite people with products and technologies that set new standards. This is how we are driving development forward across the Volkswagen Group – with the ambition to become the global automotive tech driver.”</p>
<h3><strong>Winter endurance testing</strong></h3>
<p>The program consisted of two phases. In Arizona, engineering teams from the brands and the joint venture worked together to finalize key software functions and prepare the reference vehicles for the winter tests in Europe. In Sweden, the systems were then subjected to stress testing under extreme weather conditions with snow and ice. The teams examined, among other things, the interaction between hardware and software for functions such as all-wheel drive, traction control and driving performance. Over-the-air (OTA) functionality was also validated. In total, the joint venture and brands conducted hundreds of tests and validation cycles. Individual approval drives in Germany and Sweden, led by the brands’ development teams, marked the completion of the winter testing program.</p>
<p>The results show the SDV architecture operates reliably in harsh winter and dynamic driving conditions. This milestone also lays the foundation for the next development phases across the joint venture and individual group brands. The Volkswagen Group will deploy this SDV architecture in electric vehicles across Western Hemisphere markets, delivering highly automated driving features and advanced infotainment, with continuous updates delivered over the air.</p>
<h3><strong>Qualification program</strong></h3>
<p>In parallel, the Volkswagen Group brands are strengthening their software capabilities for the SDV. Volkswagen Passenger Cars is expected to rapidly launch a long‑planned qualification program at the beginning of May where software specialists will spend several months at RV Tech locations, including Palo Alto, California, to deepen their knowledge of the joint venture’s architecture and code. Upon returning to Wolfsburg, these specialists will serve as internal experts and bring this expertise back into their development departments as multipliers. This will help to integrate brand-specific functions more quickly into future production models. Audi and Porsche are also preparing to launch similar training programs.</p>
<p><em>Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/adas-cavs/voluntary-safety-assessment-by-einride-ab-published-for-cab-less-autonomous-heavy-duty-trucks.html">Voluntary safety assessment by Einride published for cab-less autonomous heavy-duty trucks</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65521</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/B2026CW00095.jpg" medium="image" />
        	</item>
		<item>
		<title>Interoperability and cross‑domain collaboration take center stage at ASAM’s Technical Seminar 2026</title>
		<link>https://www.automotivetestingtechnologyinternational.com/news/vehicle-development/interoperability-and-cross-domain-collaboration-take-center-stage-at-asams-technical-seminar-2026.html</link>
		
		<dc:creator><![CDATA[Charlotte Iggulden]]></dc:creator>
		<pubDate>Tue, 31 Mar 2026 12:39:44 +0000</pubDate>
				<category><![CDATA[CAE, Simulation & Modeling]]></category>
		<category><![CDATA[R&D]]></category>
		<category><![CDATA[Safety and crash testing]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<category><![CDATA[Vehicle Development]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65525</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/news/vehicle-development/interoperability-and-cross-domain-collaboration-take-center-stage-at-asams-technical-seminar-2026.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/csm_20260318_090448_d589c7b3f5-e1774945435518-400x224.jpg" alt="Interoperability and cross‑domain collaboration take center stage at ASAM’s Technical Seminar 2026" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p>ASAM’s 2026 Technical Seminar took place on March 18 in Munich, Germany, and offered insight into automotive standardization amid rapid technological change.</p>
<p>The agenda covered simulation, data management, diagnostics and test automation, with discussions underscoring interoperability, simulation credibility and data‑centric development. These themes emerged across sessions on ASAM standards OpenDrive, OpenScenario, OSI, ODS, SOVD, XIL, OTX, CMP, and digital‑twin integration through the Asset Administration Shell (AAS).</p>
<p>Cross-standard harmonization and the need to align toolchains across domains, suppliers and development stages remain priorities, with speakers citing inconsistent interpretations of ASAM specifications as a cause of fragmentation.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/news/vehicle-development/interoperability-and-cross-domain-collaboration-take-center-stage-at-asams-technical-seminar-2026.html" rel="nofollow">Continue reading Interoperability and cross‑domain collaboration take center stage at ASAM’s Technical Seminar 2026 at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p>ASAM’s 2026 <a href="https://www.asam.net/conferences-events/detail/asam-general-assembly-technical-seminar/event-details-483a366625/">Technical Seminar</a> took place on March 18 in Munich, Germany, and offered insight into automotive standardization amid rapid technological change.</p>
<p>The agenda covered simulation, data management, diagnostics and test automation, with discussions underscoring interoperability, simulation credibility and data‑centric development. These themes emerged across sessions on ASAM standards OpenDrive, OpenScenario, OSI, ODS, SOVD, XIL, OTX, CMP, and digital‑twin integration through the Asset Administration Shell (AAS).</p>
<p>Cross-standard harmonization and the need to align toolchains across domains, suppliers and development stages remain priorities, with speakers citing inconsistent interpretations of ASAM specifications as a cause of fragmentation. Updates included co‑simulation workflows, higher‑fidelity OpenX modeling, interoperable data management, modular measurement architectures, digital‑twin concepts, ODD taxonomies and simulation‑quality assessment.</p>
<h3><strong>Regional updates and roadmap </strong></h3>
<p>Updates from ASAM’s ambassadors in China, Korea, Japan and the USA were shared by CATARC technical director <a href="https://www.linkedin.com/in/bolin-zhou-2b0b68175/">Bolin Zhou</a>, IVH CEO <a href="https://www.linkedin.com/in/daeoh-kang-a3a8411b6/">Daeoh Kang</a> and ASAM Japan representative <a href="https://www.asam.net/about-asam/asam-in-person/yoshiaki-shoi/">Yoshiaki Shoi</a>. Priorities included co-simulation and merging standards in China; sensor simulation and ASAM SOVD in Japan; and study groups in South Korea supporting global application of standards, such as ASAM OpenDrive.</p>
<p>BMW IT specialist <a href="https://www.linkedin.com/in/michael-schwarzbach-32822a3/">Michael Schwarzbach</a> outlined the 2026 <a href="https://www.asam.net/active-projects/technical-steering/">Technical Steering Committee</a> roadmap, highlighting ODD-based testing, collaboration improvements, harmonized standards and a common ontology.</p>
<h3><strong><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-23725" src="https://www.autonomousvehicleinternational.com/wp-content/uploads/2026/03/csm_DSC01096_8ff667ae4c.jpg" alt="" width="730" style="display:block;margin:10px auto;max-width:400px;max-width:100%;">OpenX updates</strong></h3>
<p>ASAM technology managers <a href="https://www.linkedin.com/in/ahmedsadek89/">Ahmed Sadek</a> and <a href="https://www.linkedin.com/in/shahyash0611/">Yash Shah</a> (<em>below</em>) presented ASAM OpenX updates. Previous OpenX models defined traffic participants independently, creating toolchain inconsistencies. New concepts for ASAM’s simulation standards include combining ASAM OpenDrive with the Quantifying Simulation Quality (QSQ) initiative, and ASAM OSI adding high-fidelity sensor simulation support, such as spectral irradiance and radar waveforms. “No standard is developed in a silo,” Shah said. “We think feature-based, then collect standards experts for harmonization.”</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-23738" src="https://www.autonomousvehicleinternational.com/wp-content/uploads/2026/03/shared-image-1-1-1024x771.jpeg" alt="Yash and Ahmed's presentation on simulation quality at at ASAM’s Technical Seminar 2026. They are standing at a lectern in front of a large projector screen in front of rows of attendees. " width="722" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"></p>
<h3><strong>Simulation integration</strong></h3>
<p><a href="https://www.linkedin.com/in/clemens-linnhoff/">Clemens Linnhoff</a>, founder and CTO at Persival, demonstrated co-simulation between Scenario Player and Sensor Model, with all assets linked in ASAM OpenScenario as a single source of truth.</p>
<h3><strong>ASAM ODS, MDF, CMP and digital twins</strong></h3>
<p>Technica Engineering technical fellow and head of media relations <a href="https://www.linkedin.com/in/lars-voelker/">Lars Völker</a> outlined Capture Module Protocol (ASAM CMP) improvements. “Before 2022, in‑vehicle DAQ was vendor‑specific and non‑modular. CMP 1.0 introduced modular DAQ and support for heterogeneous technologies. New use cases support raw Ethernet and define message transport across the vehicle system. Scaling HIL and test setups enables an elastic measurement infrastructure.”</p>
<p>Using slides from the <a href="https://industrialdigitaltwin.org/en/">Industrial Digital Twin Association</a> (IDTA), <a href="https://www.linkedin.com/in/stefan-romainczyk-694a56146/">Stefan Romainczyk</a>, senior product manager at Peak Solution, said, “Today’s digital twins are proprietary and one lifecycle element, whereas future twins have a complete lifecycle with efficient scaling. With ASAM ODS, AAS can create a comprehensive data profile for digital twins – standardized interoperability improves predictive maintenance, time and cost.”</p>
<h3><strong>SDV diagnostics updates</strong></h3>
<p>Following the <a href="https://www.linkedin.com/feed/update/urn:li:activity:7434541852831244288/">launch of ASAM SOVD 1.2 in February</a> with 29 global OEMs and suppliers, Vector Informatik manager <a href="https://www.linkedin.com/in/tobias-weidmann-aba01b213/">Tobias Weidmann</a> presented at the seminar the latest activities in the development of the standard. ISO 17978-4 Remote Access covers how to access vehicle information via authorization and defining the access path; possibilities include functional communication, new access methods to log information via a streaming interface, and large file handling via third-party service providers.</p>
<h3><strong>ODD taxonomy and AV deployment </strong></h3>
<p><a href="https://www.linkedin.com/in/aricht/">Andreas Richter</a> (<em>below</em>), engineering program manager – Operational Design Domains, Volkswagen Commercial Vehicles, outlined ASAM OpenODD implementation within MOIA America, VW’s autonomous‑mobility affiliate, formerly known as ADMT. VW Commercial Vehicles is the first group brand to introduce SAE Level 4 autonomous driving using the ID Buzz platform with integrated third‑party automated‑driving systems. Testing is underway in Hamburg and Munich in Germany, Oslo in Norway, and in Austin, Texas.</p>
<p><img loading="lazy" decoding="async" class="aligncenter size-large wp-image-23737" src="https://www.autonomousvehicleinternational.com/wp-content/uploads/2026/03/shared-image-1-1024x771.jpeg" alt="Andreas Richter, engineering program manager at Volkswagen, gives a presentation at ASAM’s Technical Seminar 2026. He is standing at a lectern in front of a large projector screen in front of rows of attendees. " width="722" style="display:block;margin:10px auto;max-width:400px;max-width:100%;">Richter noted that the industry is not always clear on ‘ODD’, ‘taxonomy’, ‘service area’ and ‘scenarios’. “To bring autonomous driving to life, we have to agree on the same terms,” he said, calling for ODD definitions that are unambiguously readable by humans and machines, supported by geodata analysis and enterprise‑ready tools for ODD and scenario management.</p>
<p>“ASAM OpenODD offers a taxonomy-agnostic, modular model to represent ODDs in different technical formats, [and] <span data-olk-copy-source="MessageBody">support </span>development, storage and processing in a machine and human-readable way,” he explained. “Originally intended for scenario-based testing, ODD definition is now required in more process steps for developing, testing, approving and operating ADS. The ODD as a single point of knowledge ensures OEMs and authorities share definitions.”</p>
<p>VW’s internal <span data-olk-copy-source="MessageBody">elaborated </span>ODD taxonomy demonstrates how modular definitions support understanding across organizations and regulators. The ODD management <span data-olk-copy-source="MessageBody">tool</span>chain validates taxonomies <span data-olk-copy-source="MessageBody">and module definitions</span>, supports multilingual concepts and connects to scenario‑creation and requirements‑management workflows. Using STIEF (scenario-accompanied, text-base, iterative evaluation of automated driving functions), engineers can preload scenario definitions via natural‑language inputs, while geodata analysis identifies new operational areas and generates challenging test routes.</p>
<h3><strong><img loading="lazy" decoding="async" class="aligncenter size-full wp-image-23726" src="https://www.autonomousvehicleinternational.com/wp-content/uploads/2026/03/csm_TS_17_07896d0aee.jpg" alt="" width="730" style="display:block;margin:10px auto;max-width:400px;max-width:100%;">Simulation credibility </strong></h3>
<p>In an ASAM QSQ update, Automotive Artificial Intelligence’s general manager <a href="https://www.linkedin.com/in/basit-khan-abdul/">Basit Khan</a> highlighted the challenge of trusting simulation for virtual homologation.</p>
<p>“No standardized quality metrics exist for simulation frameworks, especially ADAS/AD sensors,” he said. “Many contributors – OEMs, suppliers, research and tool vendors – have different priorities and vocabulary. Through working groups spanning use cases, camera, lidar, radar and vehicle dynamics, our goal is to drive cross-sector innovation by building a unified standard upon proven, existing components. By harmonizing established concepts, we can create a practical framework that ensures simulation reliability without reinventing the wheel.”</p>
<h3><strong>Research and collaborations</strong></h3>
<p>Fraunhofer IOSB’s research group leader <a href="https://www.linkedin.com/in/jrziehn/">Jens Ziehn</a> reported on how ASAM helps scale R&amp;D results, for example where ASAM’s OpenDrive, OpenLabel and OpenScenario are used to deliver interoperability and reusable data across diverse acquisition sources in the AVEAS Brave10K project to scale automated driving in public transportation.</p>
<p>SAE’s <a href="https://www.linkedin.com/in/edwardstraub/">Ed Straub</a> outlined ASAM’s collaboration with <a href="https://www.sae.org/standards/j3259-taxonomy-definitions-operational-design-domain-odd-driving-automation-systems">SAE J3259</a> (ODD taxonomy), while ASCS’s Alexander Walsh emphasized the complementary role of ASCS and ASAM in simulation, AI and HPC.</p>
<figure id="attachment_23739" aria-describedby="caption-attachment-23739" class="wp-caption aligncenter" style="display:block;margin:0 auto;max-width:400px;max-width:100%;"><img loading="lazy" decoding="async" class="wp-image-23739 size-full" src="https://www.autonomousvehicleinternational.com/wp-content/uploads/2026/03/csm_DSC00994_f25e93d20e.jpg" alt="UKi brand manager – automotive, Charlotte Iggulden gives a presentation at ASAM's 2026 Technical Seminar. She is wearing a black suit and holding a microphone. " width="730" style="display:block;margin:10px auto;max-width:400px;max-width:100%;"><figcaption id="caption-attachment-23739" class="wp-caption-text">UKi brand manager for automotive events Charlotte Iggulden</figcaption></figure>
<h3><strong>Industry collaboration continues at Vehicle Tech Week Europe</strong></h3>
<p><a href="https://www.vehicletechweek-europe.com/">Vehicle Tech Week Europe</a>, represented by <a href="https://www.autonomousvehicleinternational.com/"><em>ADAS &amp; Autonomous Vehicle International</em></a>, <a href="https://www.automotivetestingtechnologyinternational.com/"><em>Automotive Testing Technology International</em></a> and <a href="https://www.automotiveinteriorsworld.com/"><em>Automotive Interiors World</em></a>, served as ASAM’s media partner.</p>
<p>Launching this June in Stuttgart, Germany, the three-day ‘festival of engineering’ will unite the full vehicle‑technology ecosystem – from EV and battery testing to autonomous‑vehicle development, UX/HMI, materials engineering and in‑cabin innovation – creating cross‑disciplinary value at a time when the industry faces intense technological and regulatory pressure.</p>
<p>ASAM is an association partner of <a href="https://www.vehicletechweek-europe.com/">Vehicle Tech Week Europe</a>, and Yash Shah and Andreas Richter will continue their discussions about ASAM OpenX evolution and ODDs at the event.</p>
<p><a href="https://www.autonomousvehicleinternational.com/news/expo/vehicle-tech-week-europe-announces-strategic-partnerships-with-pave-europe-asam-and-fisita.html">Learn about Vehicle Tech Week’s partnerships here</a>.</p>
<p>Find out more about <a href="https://www.asam.net/conferences-events/detail/asam-international-conference-2026/">ASAM’s International Conference</a>, which will take place on November 4 and 5, 2026.</p>
<p><em style="font-size: 14px;">Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/automotive-testing-expo/expo-review-automotive-testing-expo-korea-2026.html">EXPO REVIEW: Automotive Testing Expo Korea 2026</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65525</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/csm_20260318_090448_d589c7b3f5-e1774945435518.jpg" medium="image" />
        	</item>
		<item>
		<title>Eclipse Trustable Software Framework linked to ISO 26262</title>
		<link>https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/eclipse-trustable-software-framework-linked-to-iso-26262.html</link>
		
		<dc:creator><![CDATA[Rachel Evans]]></dc:creator>
		<pubDate>Wed, 18 Mar 2026 11:19:09 +0000</pubDate>
				<category><![CDATA[EMC & Electronics Testing]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65396</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/eclipse-trustable-software-framework-linked-to-iso-26262.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/AdobeStock_339985341-400x224.jpeg" alt="Eclipse Trustable Software Framework linked to ISO 26262" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p class="x_MsoNormal">Codethink has provided early access to its mapping between the Eclipse Trustable Software Framework (TSF) and IEC 61508. The mapping establishes a transparent relationship between the engineering principles of the TSF and the objectives defined in IEC 61508, which forms the foundation of many domain-specific safety standards, specifically ISO 26262 for automotive systems. </p>
<p class="x_MsoNormal">By making this work available as an early preview, Codethink is inviting organizations interested in applying open source approaches to functional safety to review and begin working with the mapping while the work continues to mature. </p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/eclipse-trustable-software-framework-linked-to-iso-26262.html" rel="nofollow">Continue reading Eclipse Trustable Software Framework linked to ISO 26262 at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p class="x_MsoNormal"><span lang="EN"><a href="https://www.codethink.co.uk/">Codethink</a> has provided early access to its mapping between the <a href="https://projects.eclipse.org/proposals/eclipse-trustable-software-framework">Eclipse Trustable Software Framework (TSF)</a> and <a href="https://webstore.iec.ch/en/publication/5515">IEC 61508</a>. </span><span lang="EN">The mapping establishes a transparent relationship between the engineering principles of the TSF and the objectives defined in IEC 61508, which forms the foundation of many domain-specific safety standards, specifically <a href="https://www.iso.org/standard/68383.html">ISO 26262</a> for automotive systems. </span></p>
<p class="x_MsoNormal"><span lang="EN">By making this work available as an early preview, Codethink is inviting organizations interested in applying open source approaches to functional safety to review and begin working with the mapping while the work continues to mature. </span></p>
<p class="x_MsoNormal"><span lang="EN">“This preview release reflects our belief that trust in software must be engineered in the open. We want organizations working at the cutting edge of safety-critical software to be able to review, evaluate and begin applying these mappings as they evolve,” said <a href="https://www.linkedin.com/in/devcurmudgeon/">Paul Sherwood</a>, chairman of Codethink. </span></p>
<p class="x_MsoNormal"><span lang="EN">The Eclipse Trustable Software Framework defines six tenets – provenance, construction, changes, expectations, results and confidence – each aligned to the objectives of IEC 61508. This structure enables organizations to connect everyday software development practices with the rigor expected in safety-critical systems. </span></p>
<p class="x_MsoNormal"><span lang="EN">Codethink plans to contribute the mapping to the Eclipse Trustable Software project once the company has achieved a successful functional safety assessment of CTRL OS using the TSF. This future contribution will build on the baseline assessment achieved last year and represents the next step in validating the framework in a production software environment. </span></p>
<p class="x_MsoNormal"><span lang="EN">Until that milestone is reached, the mapping is being made available as an early preview for those interested in exploring open, transparent approaches to safety and compliance. </span></p>
<p class="x_MsoNormal"><span lang="EN">“Our goal is simple, by demonstrating compliance with the Trustable Software Framework, organizations should be able to demonstrate alignment with the world’s most important safety and regulatory standards. Open collaboration is the fastest way to get there,” said Sherwood.  </span></p>
<p><em>The June edition of </em>ATTI – <a href="https://www.automotivetestingtechnologyinternational.com/online-magazines">read online here</a> – <em>will include a software feature investigating the latest in integrated testing, continuous integration and continuous development (CI/CD) and predictive testing</em></p>
<p><em>Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/software-engineering-sdvs/codethinks-eclipse-trustable-software-framework-achieves-positive-functional-safety-assessment.html">Codethink’s Eclipse Trustable Software Framework achieves positive functional safety assessment</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65396</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/AdobeStock_339985341.jpeg" medium="image" />
        	</item>
		<item>
		<title>Kvaser releases CanKing 7.4.0 with real-time Signal Plot extension</title>
		<link>https://www.automotivetestingtechnologyinternational.com/uncategorized/kvaser-releases-canking-7-4-0-with-real-time-signal-plot-extension.html</link>
		
		<dc:creator><![CDATA[Zahra Awan]]></dc:creator>
		<pubDate>Mon, 16 Mar 2026 16:45:27 +0000</pubDate>
				<category><![CDATA[CAE, Simulation & Modeling]]></category>
		<category><![CDATA[R&D]]></category>
		<category><![CDATA[Software Engineering & SDVs]]></category>
		<category><![CDATA[Test equipment]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<guid isPermaLink="false">https://www.automotivetestingtechnologyinternational.com/?p=65356</guid>

					<description><![CDATA[<a href="https://www.automotivetestingtechnologyinternational.com/uncategorized/kvaser-releases-canking-7-4-0-with-real-time-signal-plot-extension.html"><img width="400" height="224" src="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/CanKing_signalplot2_3840x2160-400x224.png" alt="Kvaser releases CanKing 7.4.0 with real-time Signal Plot extension" align="left" style="margin: 0 20px 20px 0;max-width:100%" /></a><p>Kvaser has released CanKing 7.4.0, the latest update to its free CAN/LIN analysis environment, which introduces several features, most notably the Signal Plot extension, which enables real-time plotting of CAN and LIN signal values for fast and lightweight system visualization.</p>
<p>Signal Plot is a free, downloadable extension for CanKing 7.4.0 or later that allows engineers to track multiple signals simultaneously, zoom into events, compare values using cursors and switch between live and pause modes.</p>
<p><a href="https://www.automotivetestingtechnologyinternational.com/uncategorized/kvaser-releases-canking-7-4-0-with-real-time-signal-plot-extension.html" rel="nofollow">Continue reading Kvaser releases CanKing 7.4.0 with real-time Signal Plot extension at Automotive Testing Technology International.</a></p>
]]></description>
										<content:encoded><![CDATA[<p><a href="https://kvaser.com/?srsltid=AfmBOoq5BF2trNZ3XQlmCmBJSNYHHb-pMLiSJssGS2KDGNeLJ1rQQNAF">Kvaser</a> has released CanKing 7.4.0, the latest update to its free CAN/LIN analysis environment, which introduces several features, most notably the Signal Plot extension, which enables real-time plotting of CAN and LIN signal values for fast and lightweight system visualization.</p>
<p>Signal Plot is a free, downloadable extension for CanKing 7.4.0 or later that allows engineers to track multiple signals simultaneously, zoom into events, compare values using cursors and switch between live and pause modes. The extension provides engineering-unit graphing directly within the CanKing workspace, making it particularly useful for HIL bench bring-up and on-site debugging.</p>
<p>“Our goal with Kvaser CanKing has always been to give engineers the clarity they need with as little friction as possible. Signal Plot does exactly this; turning raw CAN and LIN data into clear, meaningful visuals in real time. It’s a simple yet powerful upgrade that delivers an immediate boost in understanding and efficiency,” said <a href="https://www.linkedin.com/in/martin-sventen-2384135/">Martin Sventén</a>, CEO of Kvaser.</p>
<p>The update is designed to provide engineers with faster, more intuitive insights into system behavior, making real-time monitoring and debugging of automotive networks simpler and more efficient.</p>
<p>The extension is the first built on Kvaser’s CanKing Extensions SDK, which was launched last year, to enable users to create web-based GUI extensions such as dashboards, gauges and custom interpreters without modifying the core application. The SDK leverages React and is compatible with both Windows and Linux systems.</p>
<p>CanKing 7.4.0 also adds support for LIN message logging and replay using MDF4.x files. Improved MDF4.x compatibility ensures that LIN data frames are correctly recognised, enabling the Message Logger and Message Replay nodes to function seamlessly across both CAN and LIN traffic.</p>
<p>CanKing 7.4.0 was unveiled at at Embedded World 2026 in Nuremberg, Germany.</p>
<p><em>Related news, <a href="https://www.automotivetestingtechnologyinternational.com/news/nvh/kia-focuses-on-nvh-reduction-in-ev2-development.html">Kia focuses on NVH reduction in EV2 development</a></em></p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">65356</post-id>		        		  <media:content url="https://www.automotivetestingtechnologyinternational.com/wp-content/uploads/2026/03/CanKing_signalplot2_3840x2160.png" medium="image" />
        	</item>
	</channel>
</rss>
