AUTOSAR ARXML处理 - C#的解析代码(二)

4.2.4 配置模版:参数类

参数容器(ECUCPARAMCONFCONTAINERDEF)的PARAMETERS集合类由以下参数类实例构成。

4.2.4.1 配置模版:枚举参数(ECUCENUMERATIONPARAMDEF )

配置一个下拉选项,如PORT中一个pin可以配置SPI, CAN, PWM

cs 复制代码
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(TypeName="ECUC-ENUMERATION-PARAM-DEF", Namespace="http://autosar.org/schema/r4.0")]
    public partial class ECUCENUMERATIONPARAMDEF {      
        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute("DEFAULT-VALUE")]
        public IDENTIFIER DEFAULTVALUE {
            get {
                return this.dEFAULTVALUEField;
            }
            set {
                this.dEFAULTVALUEField = value;
            }
        }
        
        /// <remarks/>
        [System.Xml.Serialization.XmlArrayItemAttribute(IsNullable=false)]
        public ECUCENUMERATIONLITERALDEF[] LITERALS {
            get {
                return this.lITERALSField;
            }
            set {
                this.lITERALSField = value;
            }
        }

    }

DEFAULTVALUE :默认值,其他参数类也有该属性

LITERALS : 枚举列表

4.2.4.2 配置模版:整型参数 (ECUCINTEGERPARAMDEF)

整数参数,如CanIfRxPduId可以配成3。

cs 复制代码
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(TypeName="ECUC-INTEGER-PARAM-DEF", Namespace="http://autosar.org/schema/r4.0")]
    public partial class ECUCINTEGERPARAMDEF {
        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute("WITH-AUTO")]
        public BOOLEAN WITHAUTO {
            get {
                return this.wITHAUTOField;
            }
            set {
                this.wITHAUTOField = value;
            }
        }

        /// <remarks/>
        public UNLIMITEDINTEGERVALUEVARIATIONPOINT MAX {
            get {
                return this.mAXField;
            }
            set {
                this.mAXField = value;
            }
        }
        
        /// <remarks/>
        public UNLIMITEDINTEGERVALUEVARIATIONPOINT MIN {
            get {
                return this.mINField;
            }
            set {
                this.mINField = value;
            }
        }

    }

MAX: 整型的可配置最大值

MIN: 整型的可配置最小值

WITHAUTO :参数类基本都有,在整型里可以设置为TRUE,这样可以让配置工具自动对一些属性编号,如非常常见的 HandleId

4.2.4.3 配置模版:浮点参数(ECUCFLOATPARAMDEF)

cs 复制代码
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(TypeName="ECUC-FLOAT-PARAM-DEF", Namespace="http://autosar.org/schema/r4.0")]
    public partial class ECUCFLOATPARAMDEF {
        /// <remarks/>
        public FLOATVALUEVARIATIONPOINT MAX {
            get {
                return this.mAXField;
            }
            set {
                this.mAXField = value;
            }
        }
        
        /// <remarks/>
        public FLOATVALUEVARIATIONPOINT MIN {
            get {
                return this.mINField;
            }
            set {
                this.mINField = value;
            }
        }
    }

MAX: 浮点的可配置最大值

MIN: 浮点的可配置最小值

4.2.4.4 配置模版:布尔参数(ECUCBOOLEANPARAMDEF)

如CanIfVersionInfoApi,可以设置TRUE为使能

cs 复制代码
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(TypeName="ECUC-BOOLEAN-PARAM-DEF", Namespace="http://autosar.org/schema/r4.0")]
    public partial class ECUCBOOLEANPARAMDEF {


    }

4.2.4.5 配置模版:函数参数(ECUCFUNCTIONNAMEDEF)

常用来自定义回调函数名,字符串类型;ECUCSTRINGPARAMDEF, ECUCLINKERSYMBOLDEF用法类似

cs 复制代码
    /// <remarks/>
    [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
    [System.SerializableAttribute()]
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.ComponentModel.DesignerCategoryAttribute("code")]
    [System.Xml.Serialization.XmlTypeAttribute(TypeName="ECUC-FUNCTION-NAME-DEF", Namespace="http://autosar.org/schema/r4.0")]
    public partial class ECUCFUNCTIONNAMEDEF {

        /// <remarks/>
        [System.Xml.Serialization.XmlElementAttribute("SHORT-NAME")]
        public IDENTIFIER SHORTNAME {
            get {
                return this.sHORTNAMEField;
            }
            set {
                this.sHORTNAMEField = value;
            }
    }

SHORTNAME : 这个属性基本很多类里面都有,后续会经常使用到这个信息。

相关推荐
老猿讲编程9 天前
AUTOSAR 规范中的设计模式:传感器执行器模式
设计模式·autosar
老猿讲编程13 天前
AUTOSAR CP 中 BswM 模块功能与使用介绍(2/2)
autosar·车载软件
经纬恒润17 天前
经纬恒润AUTOSAR成功适配芯钛科技Alioth TTA8车规级芯片
软件开发·autosar
车载诊断技术19 天前
电子电气架构---符合ASPICE 4.0 之软件开发流程(SWE)
网络·人工智能·架构·汽车·软件工程·autosar
车载诊断技术23 天前
电子电气架构---软件定义汽车,产业变革
网络·架构·汽车·软件工程·autosar·电子电器架构
汽车电子工具智慧库23 天前
LSL常见应用场景及示例培训笔记<一>
汽车·autosar·lsl
十六宿舍24 天前
【AUTOSAR 基础软件】PduR模块详解(通信路由)
单片机·汽车·autosar·嵌入式开发·车载·pdur·基础软件
车载诊断技术25 天前
智能汽车智能网联
网络·架构·汽车·软件工程·autosar
Trump. yang1 个月前
AutoSar CP 通信服务核心—Com模块详解
嵌入式硬件·can·autosar·通信原理
逸埃1 个月前
[AutoSar]BSW_Diagnostic_006 RoutineControl (0x31)的配置和实现
autosar·uds·dcm·rid