summaryrefslogtreecommitdiff
path: root/digital/mimot/tools/mimot/init.py
blob: 1900de6769a147cdc0fdbbf09c498eb6de500e75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
"""Default parameters for asserv."""
host_marcel = dict (
        scale = 0.0395840674352314, f = 0xdd1,
        tkp = 1, tkd = 16,
        ta = 0.75, tsm = 0x20, tss = 0x10,
        akp = 2, akd = 16,
        aa = 0.25, asm = 0x20, ass = 0x10,
        E = 0x3ff, D = 0x1ff,
        l = 0x1000,
        )
host = {
        'tazg': host_marcel,
        'giboulee': host_marcel,
        'marcel': host_marcel,
        }
target_marcel = dict (
        scale = 0.0415178942124, f = 0xcef,
        c = float (0x00ffbabf) / (1 << 24),
        tkp = 1, tkd = 16,
        ta = 0.75, tsm = 0x20, tss = 0x10,
        akp = 2, akd = 16,
        aa = 0.25, asm = 0x20, ass = 0x10,
        E = 0x3ff, D = 0x1ff,
        l = 0x1000,
        w = 0x00,
        )
target = {
        'tazg': target_marcel,
        'giboulee': target_marcel,
        'marcel': target_marcel,
        }