{"id":7819,"date":"2025-11-29T06:19:00","date_gmt":"2025-11-29T05:19:00","guid":{"rendered":"https:\/\/web-dev-weissblau.de\/microconsult\/?p=7819"},"modified":"2026-02-13T11:31:20","modified_gmt":"2026-02-13T10:31:20","slug":"software-design-for-the-autosar-adaptive-platform","status":"publish","type":"post","link":"https:\/\/www.microconsult.de\/en\/software-design-fuer-die-autosar-adaptive-platform\/","title":{"rendered":"Software design for the AUTOSAR Adaptive Platform"},"content":{"rendered":"<h2>Novel optimization tools for parallel POSIX software<\/h2>\n<p style=\"text-align: left;\" align=\"center\">Author: Maximilian Odendahl, Silexica GmbH<\/p>\n<h3>Contribution \u2013 Embedded Software Engineering Congress 2017<\/h3>\n<p><strong>Developing software for the new AUTOSAR Adaptive Platform will present developers with unprecedented challenges. Compared to existing single-core systems, and even to the existing AUTOSAR Classic Platform, distributing the software across the various processor cores of the target platform will become an increasingly significant challenge. This involves not only considering timing and functional requirements, but ideally also minimizing performance and energy consumption. Even for simpler algorithms and target systems, this results in a multitude of potential solutions, the development and evaluation of which push existing development approaches to their limits. Novel algorithms and tools from the field of software design automation can provide a solution.<\/strong><\/p>\n<h2>Multicore programming and its challenges<\/h2>\n<p>The development of software for novel multi- and many-core systems presents numerous industries with new challenges. This is due to the increasing complexity of available hardware systems, where, in addition to high performance for a wide range of application scenarios, minimal power consumption is often required. This problem is further exacerbated by ever-shorter development cycles and increased security requirements. The resulting &quot;efficiency gap&quot; between the outstanding capabilities of modern hardware and the ability to efficiently utilize these capabilities through software cannot be economically closed using the currently common manual system design and programming methods.<\/p>\n<p>The challenges here, besides parallelizing existing C\/C++ code, primarily involve optimally distributing already parallelized software while considering temporal and functional constraints. This requires taking into account not only the necessary and available computing power, but also, increasingly, the communication between processor cores, which is becoming a bottleneck for system performance. Therefore, to meet all temporal and functional constraints, a combined consideration of computing power and communication is necessary.<\/p>\n<h2>AUTOSAR Adaptive Platform<\/h2>\n<p>In order to serve new application areas, the car of the future will take on more and more computationally intensive tasks, including...<\/p>\n<ul>\n<li>Automated driving<\/li>\n<li>Vehicle-to-X (V2X) networking with the surrounding road traffic<\/li>\n<li>Applications with permanent &quot;over-the-air&quot; updates<\/li>\n<\/ul>\n<p>For this reason, the AUTOSAR consortium jointly specified the Adaptive Platform to enable more flexible software development for new types of central computers. However, the introduction of the AUTOSAR Adaptive Platform will bring about fundamental changes for developers. A brief technical overview of the two platforms is provided in the following table:<\/p>\n<table class=\"Gitternetztabelle1hell1\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<tbody>\n<tr>\n<td valign=\"top\" width=\"282\">\n<p align=\"center\"><strong>Classic Platform<\/strong><\/p>\n<\/td>\n<td valign=\"top\" width=\"283\">\n<p align=\"center\"><strong>Adaptive Platform<\/strong><\/p>\n<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"282\">Based on OSEK<\/td>\n<td valign=\"top\" width=\"283\">Based on POSIX ()<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"282\">Static task configuration<\/td>\n<td valign=\"top\" width=\"283\">Support for dynamic scheduling<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"282\">Same address space for all applications<\/td>\n<td valign=\"top\" width=\"283\">Each application has its own (virtual) address space.<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"282\">Optimized for event-based communication (e.g., CAN, FlexRay)<\/td>\n<td valign=\"top\" width=\"283\">Service-oriented communication<\/td>\n<\/tr>\n<tr>\n<td valign=\"top\" width=\"282\">Running the application from the ROM<\/td>\n<td valign=\"top\" width=\"283\">The application is loaded from RAM.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>POSIX (Portable Operating System Interface) is a standardized programming interface between the application and the operating system and was not originally developed for the automotive industry. However, POSIX operating systems make software development for vehicles significantly more flexible and allow the use of numerous existing libraries from the fields of high-performance computing, embedded vision, and machine learning.<\/p>\n<p>A key difference will be the support for dynamic scheduling. Many different strategies are conceivable here, depending on the operating system used, such as round-robin or priority-based scheduling. Dynamic scheduling can theoretically increase application performance, but it significantly complicates the predictability of timing behavior. A developer can very rarely predict all potential thread interactions in complex, parallel systems. Furthermore, it is often difficult to identify the true culprit behind system effects and performance bottlenecks. Adaptive AUTOSAR also allows the dynamic creation of additional threads at runtime, which further impairs predictability.<\/p>\n<h2>Solutions through innovative software design tools<\/h2>\n<p>For the problems mentioned above, manual design and programming are no longer economically viable. Manual approaches, such as repeatedly running an application and subsequently comparing detailed traces, will become impossible in the future due to increasing complexity. We are already seeing increased costs for verification and testing, as well as more frequent project delays.<\/p>\n<p>A new generation of automated development tools attempts to solve these problems through compiler-based static and dynamic data flow analysis, automatic runtime estimation, and the calculation of Affinity masks. The goal is automatic software optimization and automatic distribution across homogeneous and heterogeneous target architectures. Throughout the entire development process, the target platform is directly integrated, enabling combined software and hardware optimization.<\/p>\n<p>For sequential C\/C++ programming and for the AUTOSAR Classic Platform, such a toolchain is already available from Silexica. For the Adaptive Platform, it is currently under development and consists of, as shown in Figure 1 (see below).\u00a0<a title=\"Technical information_ESE_autosar-adaptive-platform_silexica_odendahl\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_autosar-adaptive-platform_silexica_odendahl.pdf\" target=\"_blank\" rel=\"noopener\">PDF<\/a>) indicated, consisting of several elements.<\/p>\n<p>Thread analysis is the most difficult part:<\/p>\n<ul>\n<li>The program flow must be abstracted and replaced by events that include their source code properties and represent semantic properties that affect both the execution flow and the global state of the application.<\/li>\n<li>Fast algorithms must be used to calculate and extract the dependencies regarding the order and data consistency of these events.<\/li>\n<\/ul>\n<p>Possible events for the abstract representation of an application include the operating system&#039;s thread management, process\/library loading (e.g., via vma_link), signals (e.g., via SIGSEGV), Pthreads calls for mutexes (e.g., pthread_mutex_lock), barriers, and shared access to the same memory area. Semantic analysis then requires different heuristics to understand the various effects. For example, two dependencies between two mutex events must be evaluated completely differently than the dependencies between two barrier events.<\/p>\n<p>(see Fig. 2,\u00a0<a title=\"Technical information_ESE_autosar-adaptive-platform_silexica_odendahl\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_autosar-adaptive-platform_silexica_odendahl.pdf\" target=\"_blank\" rel=\"noopener\">PDF<\/a>)<\/p>\n<h2>Full-System Simulation<\/h2>\n<p>Applications based on the AUTOSAR Adaptive Platform have the advantage that they are integrated into the system at runtime, allowing them to be developed, tested, distributed, and updated independently of each other.<\/p>\n<p>Service-oriented communication also makes it possible to integrate applications into the overall system at any time. It is compatible with the AUTOSAR Classic Platform&#039;s SOME\/IP. This will allow multiple systems to run in parallel in the central supercomputer of the car of the future, as indicated in Figure 3 (see Figure 3).\u00a0<a title=\"Technical information_ESE_autosar-adaptive-platform_silexica_odendahl\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_autosar-adaptive-platform_silexica_odendahl.pdf\" target=\"_blank\" rel=\"noopener\">PDF<\/a>).<\/p>\n<p>This further exacerbates the previously described, growing difficulties in understanding the overall system in terms of timing. New tools will also be necessary in the near future to manage the increasing complexity of the car of the future.<\/p>\n<h2>Summary<\/h2>\n<p>The increasing complexity of modern multiprocessor systems, combined with shortened development cycles and rising application requirements, has led to an efficiency gap: Efficient use of modern multiprocessor systems can only be achieved to a limited extent economically with manual system design and programming. With increasing platform and software complexity, this problem will only worsen in the future.<\/p>\n<p>The introduction of the AUTOSAR Adaptive Platform presents software developers with additional challenges. Besides the switch from OSEK to POSIX, the possibility of dynamic scheduling is particularly noteworthy. This newfound flexibility is both a blessing and a curse, as the predictability of the system&#039;s temporal behavior is severely limited.<\/p>\n<p>Novel software design automation tools can be used to make data-driven decisions, to better understand one&#039;s overall system, and to close the gap between software and hardware innovations of recent years.<\/p>\n<h2>author<\/h2>\n<p><strong>Maximilian Odendahl<\/strong>\u00a0He studied computer engineering at RWTH Aachen University and, after graduating, worked as a research assistant at the Institute for Communication Technologies and Embedded Systems (ICE), focusing on tool development for heterogeneous multicore systems. From January 2013 to December 2014, he also served as senior engineer at ICE. Today, he is the managing partner of Silexica GmbH and a regular speaker at conferences.<\/p>\n<p><a title=\"Technical information_ESE_autosar-adaptive-platform_silexica_odendahl\" href=\"https:\/\/www.microconsult.de\/wp-content\/uploads\/2025\/12\/fachinfo_ese_autosar-adaptive-platform_silexica_odendahl.pdf\" target=\"_blank\" rel=\"noopener\"><strong>Download the article as a PDF<\/strong><\/a><\/p>\n<hr \/>\n<h2>Automotive \u2013 our training &amp; coaching<\/h2>\n<p><strong>Do you want to bring yourself up to date with the latest technology?<\/strong><\/p>\n<p>Then find out more\u00a0<a title=\"MicroConsult Training\" href=\"https:\/\/www.microconsult.de\/en\/all-training-dates-complete-overview\/\" target=\"_blank\" rel=\"noopener\"><strong>here<\/strong>\u00a0<\/a>MircoConsult offers training courses\/seminars\/workshops and individual coaching on the topic of automotive\/embedded and real-time software development.<\/p>\n<p><strong>Training &amp; coaching on the other topics in our portfolio can be found here.\u00a0<a title=\"Training &amp; Consulting - all topics\" href=\"https:\/\/www.microconsult.de\/en\/training-beratung\/\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/strong><\/p>\n<hr \/>\n<h2>Automotive \u2013 Expertise<\/h2>\n<p>Valuable expertise in automotive\/embedded and real-time software development is available.\u00a0<a title=\"Embedded and Real-Time Software Engineering\" href=\"https:\/\/www.microconsult.de\/en\/embedded-and-real-time-software-development\/\" target=\"_blank\" rel=\"noopener\"><strong>here\u00a0<\/strong><\/a>Available for you to download free of charge.<\/p>\n<p><a title=\"Embedded and Real-Time Software Engineering\" href=\"https:\/\/www.microconsult.de\/en\/embedded-and-real-time-software-development\/\" target=\"_blank\" rel=\"noopener\"><strong>To the specialist information<\/strong><\/a><\/p>\n<p><strong>You can find expertise on other topics in our portfolio here. <a title=\"MicroConsult Expertise\" href=\"https:\/\/www.microconsult.de\/en\/specialist-knowledge\/\" target=\"_blank\" rel=\"noopener\">here<\/a><\/strong><\/p>","protected":false},"excerpt":{"rendered":"<p>Neuartige Optimierungstools f\u00fcr parallele POSIX-Software Autor: Maximilian Odendahl, Silexica GmbH Beitrag &#8211; Embedded Software Engineering Kongress 2017 Die Entwicklung von Software f\u00fcr die neue AUTOSAR Adaptive Platform wird Entwickler vor neuartige Herausforderungen stellen. Im Vergleich zu bestehenden Singlecore-Systemen, aber auch im Vergleich zur existierenden AUTOSAR Classic Platform, wird die Verteilung der Software auf die verschiedenen [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-7819","post","type-post","status-publish","format-standard","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Software-Design f\u00fcr die AUTOSAR Adaptive Platform - MicroConsult Academy GmbH<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.microconsult.de\/en\/software-design-for-the-autosar-adaptive-platform\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Software-Design f\u00fcr die AUTOSAR Adaptive Platform - MicroConsult Academy GmbH\" \/>\n<meta property=\"og:description\" content=\"Neuartige Optimierungstools f\u00fcr parallele POSIX-Software Autor: Maximilian Odendahl, Silexica GmbH Beitrag &#8211; Embedded Software Engineering Kongress 2017 Die Entwicklung von Software f\u00fcr die neue AUTOSAR Adaptive Platform wird Entwickler vor neuartige Herausforderungen stellen. Im Vergleich zu bestehenden Singlecore-Systemen, aber auch im Vergleich zur existierenden AUTOSAR Classic Platform, wird die Verteilung der Software auf die verschiedenen [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.microconsult.de\/en\/software-design-for-the-autosar-adaptive-platform\/\" \/>\n<meta property=\"og:site_name\" content=\"MicroConsult Academy GmbH\" \/>\n<meta property=\"article:published_time\" content=\"2025-11-29T05:19:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-13T10:31:20+00:00\" \/>\n<meta name=\"author\" content=\"weissblau media\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"weissblau media\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/\"},\"author\":{\"name\":\"weissblau media\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\"},\"headline\":\"Software-Design f\u00fcr die AUTOSAR Adaptive Platform\",\"datePublished\":\"2025-11-29T05:19:00+00:00\",\"dateModified\":\"2026-02-13T10:31:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/\"},\"wordCount\":1370,\"commentCount\":0,\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/\",\"url\":\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/\",\"name\":\"Software-Design f\u00fcr die AUTOSAR Adaptive Platform - MicroConsult Academy GmbH\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#website\"},\"datePublished\":\"2025-11-29T05:19:00+00:00\",\"dateModified\":\"2026-02-13T10:31:20+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/software-design-fuer-die-autosar-adaptive-platform\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.microconsult.de\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Software-Design f\u00fcr die AUTOSAR Adaptive Platform\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#website\",\"url\":\"https:\\\/\\\/www.microconsult.de\\\/\",\"name\":\"MicroConsult Academy GmbH\",\"description\":\"Professionelle Schulungen, Beratung und Projektunterst\u00fctzung\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.microconsult.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.microconsult.de\\\/#\\\/schema\\\/person\\\/b6d4c4ae959b068fbe8d9416ed019a0a\",\"name\":\"weissblau media\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g\",\"caption\":\"weissblau media\"},\"sameAs\":[\"https:\\\/\\\/www.microconsult.de\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Software design for the AUTOSAR Adaptive Platform - MicroConsult Academy GmbH","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.microconsult.de\/en\/software-design-for-the-autosar-adaptive-platform\/","og_locale":"en_GB","og_type":"article","og_title":"Software-Design f\u00fcr die AUTOSAR Adaptive Platform - MicroConsult Academy GmbH","og_description":"Neuartige Optimierungstools f\u00fcr parallele POSIX-Software Autor: Maximilian Odendahl, Silexica GmbH Beitrag &#8211; Embedded Software Engineering Kongress 2017 Die Entwicklung von Software f\u00fcr die neue AUTOSAR Adaptive Platform wird Entwickler vor neuartige Herausforderungen stellen. Im Vergleich zu bestehenden Singlecore-Systemen, aber auch im Vergleich zur existierenden AUTOSAR Classic Platform, wird die Verteilung der Software auf die verschiedenen [&hellip;]","og_url":"https:\/\/www.microconsult.de\/en\/software-design-for-the-autosar-adaptive-platform\/","og_site_name":"MicroConsult Academy GmbH","article_published_time":"2025-11-29T05:19:00+00:00","article_modified_time":"2026-02-13T10:31:20+00:00","author":"weissblau media","twitter_card":"summary_large_image","twitter_misc":{"Written by":"weissblau media","Estimated reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/#article","isPartOf":{"@id":"https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/"},"author":{"name":"weissblau media","@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a"},"headline":"Software-Design f\u00fcr die AUTOSAR Adaptive Platform","datePublished":"2025-11-29T05:19:00+00:00","dateModified":"2026-02-13T10:31:20+00:00","mainEntityOfPage":{"@id":"https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/"},"wordCount":1370,"commentCount":0,"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/","url":"https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/","name":"Software design for the AUTOSAR Adaptive Platform - MicroConsult Academy GmbH","isPartOf":{"@id":"https:\/\/www.microconsult.de\/#website"},"datePublished":"2025-11-29T05:19:00+00:00","dateModified":"2026-02-13T10:31:20+00:00","author":{"@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a"},"breadcrumb":{"@id":"https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.microconsult.de\/software-design-fuer-die-autosar-adaptive-platform\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.microconsult.de\/"},{"@type":"ListItem","position":2,"name":"Software-Design f\u00fcr die AUTOSAR Adaptive Platform"}]},{"@type":"WebSite","@id":"https:\/\/www.microconsult.de\/#website","url":"https:\/\/www.microconsult.de\/","name":"MicroConsult Academy GmbH","description":"Professional training, consulting and project support","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.microconsult.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Person","@id":"https:\/\/www.microconsult.de\/#\/schema\/person\/b6d4c4ae959b068fbe8d9416ed019a0a","name":"weissblau media","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/bbb409da4970da9446f6c49465d453cb8a0dae301e4d4f465b5c4e62408daa2e?s=96&d=mm&r=g","caption":"weissblau media"},"sameAs":["https:\/\/www.microconsult.de"]}]}},"post_mailing_queue_ids":[],"_links":{"self":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7819","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/comments?post=7819"}],"version-history":[{"count":6,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7819\/revisions"}],"predecessor-version":[{"id":11735,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/posts\/7819\/revisions\/11735"}],"wp:attachment":[{"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/media?parent=7819"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/categories?post=7819"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.microconsult.de\/en\/wp-json\/wp\/v2\/tags?post=7819"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}