Replies: 1 comment
-
Hi @rcd09, Yes, it's indeed very hard to find the specification. On autosar.org you find it hidden away inside a file called The reference file I use for all my development is named In the XSD there is a valid element called TRACE which I have not yet implemented. This would need further investigation and most likely need moderate refactoring of the code base to add that support. I would not recommend trying to add it by yourself but you are of course welcome to try. I struggled a lot with implementing the documentation elements due to its recursive definition. |
Beta Was this translation helpful? Give feedback.
-
I am working with 0.5.3 reading in a platform base type arxml and it is causing reader.read_file to throw an exception:
PlatformBase_Types.arxml(88): Unprocessed element <TRACE> TypeError: MultiLanguageReferrable.__init__() got an unexpected keyword argument 'introduction'
The offending ARXML:
Question 1: I have searched for a good guide to an AUTOSAR ARXML specification without a lot of success. The closest I've found is AUTOSAR_TPS_SoftwareComponentTemplate.pdf and its tough to find what I need there. What's a good doc to look at when researching ARXML syntax?
Question 2: When I take out the INTRODUCTION elements with the TRACE subs all is good - file is read in just fine. Is TRACE a left over from an older ARXML version? Maybe an extension used by our SIP supplier? Or something that needs to be supported here? I'd be happy to add it if it should be supported.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions