176
|
1 |
global Mapping, AddMenuEntries
|
|
2 |
|
|
3 |
"""
|
|
4 |
MappingDictionary for DS-302
|
|
5 |
"""
|
|
6 |
|
|
7 |
Mapping = {
|
|
8 |
0x1F20 : {"name" : "Store DCF", "struct" : rec, "need" : False, "values" :
|
198
|
9 |
[{"name" : "Number of Entries", "type" : 0x05, "access" : 'ro', "pdo" : False},
|
176
|
10 |
{"name" : "Store DCF for node %d[(sub)]", "type" : 0x0F, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]},
|
|
11 |
|
|
12 |
0x1F21 : {"name" : "Storage Format", "struct" : rec, "need" : False, "values" :
|
198
|
13 |
[{"name" : "Number of Entries", "type" : 0x05, "access" : 'ro', "pdo" : False},
|
176
|
14 |
{"name" : "Storage Format for Node %d[(sub)]", "type" : 0x02, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]},
|
|
15 |
|
|
16 |
0x1F22 : {"name" : "Concise DCF", "struct" : rec, "need" : False, "values" :
|
198
|
17 |
[{"name" : "Number of Entries", "type" : 0x05, "access" : 'ro', "pdo" : False},
|
176
|
18 |
{"name" : "Concise DCF for Node %d[(sub)]", "type" : 0x0F, "access" : 'rw', "pdo" : False, "nbmax" : 0x7F}]}
|
|
19 |
}
|
|
20 |
|
|
21 |
AddMenuEntries = [] |