objdictgen/config/DS-302.prf
author Christian Taedcke <hacking@taedcke.com>
Tue, 08 Nov 2011 08:27:29 +0000
changeset 683 a3ff0e3e9829
parent 537 9abbda25a18b
permissions -rw-r--r--
Win32 IXXAT driver:
FIXED: - A return value of 0 from VCI_ResetCan() and VCI_StartCan() indicates an error, too.
CHANGED: - The return values of VCI_ResetCan() and VCI_StartCan() are logged in case of an error.
global Mapping, AddMenuEntries

"""
MappingDictionary for DS-302
"""

Mapping = {
    0x1F20 : {"name" : "Store DCF", "struct" : rec, "need" : False, "values" :
                [{"name" : "Number of Entries", "type" : 0x05, "access" : 'ro', "pdo" : False},
                 {"name" : "Store DCF for node %d[(sub)]", "type" : 0x0F, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]},
    
    0x1F21 : {"name" : "Storage Format", "struct" : rec, "need" : False, "values" :
                [{"name" : "Number of Entries", "type" : 0x05, "access" : 'ro', "pdo" : False},
                 {"name" : "Storage Format for Node %d[(sub)]", "type" : 0x02, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]},
    
    0x1F22 : {"name" : "Concise DCF", "struct" : rec, "need" : False, "values" :
                [{"name" : "Number of Entries", "type" : 0x05, "access" : 'ro', "pdo" : False},
                 {"name" : "Concise DCF for Node %d[(sub)]", "type" : 0x0F, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]} ,  

    0x1F50 : {"name" : "Download Program Data", "struct" : rec, "need" : False, "values" :
                [{"name" : "Number of different programs supported on the node", "type" : 0x05, "access" : 'ro', "pdo" : False},
                 {"name" : "Program Number %d[(sub)]", "type" : 0x0F, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]},
    
    0x1F51 : {"name" : "Program Control", "struct" : rec, "need" : False, "values" :
                [{"name" : "Number of different programs on the node", "type" : 0x05, "access" : 'ro', "pdo" : False},
                 {"name" : "Program Number %d[(sub)]", "type" : 0x05, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]},
    
    0x1F52 : {"name" : "Verify Application Software", "struct" : array, "need" : False, "values" :
                [{"name" : "Number of Entries", "type" : 0x05, "access" : 'ro', "pdo" : False},
                 {"name" : "Application software date", "type" : 0x07, "access" : 'rw', "pdo" : False},  
                 {"name" : "Application sofware time", "type" : 0x07, "access" : 'rw', "pdo" : False}]},

    0x1F53 : {"name" : "Expected Application SW Date", "struct" : rec, "need" : False, "values" :
                [{"name" : "Number of different programs on the node", "type" : 0x05, "access" : 'ro', "pdo" : False},
                 {"name" : "Program number %d[(sub)]", "type" : 0x07, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]},

    0x1F55 : {"name" : "Expected Application SW Time", "struct" : rec, "need" : False, "values" :
                [{"name" : "Number of different programs on the node", "type" : 0x05, "access" : 'ro', "pdo" : False},
                 {"name" : "Program number %d[(sub)]", "type" : 0x07, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]}
}

AddMenuEntries = []