objdictgen/config/DS-419.prf
author gabriele at naustech dot com
Thu, 12 Jun 2014 14:07:16 +0200
changeset 791 7740ac6fdedc
parent 0 4472ee7c6c3e
permissions -rw-r--r--
Fix : libcanfestival_unix.a not built if examples are not compiled

Problem: when building Canfestival with unix timers 'libcanfestiva_unix.a'
is built only if you build examples too.

Test case:

$ ./configure --timers=unix --can=socket --target=unix
$ make canfestival

...

no errors but 'libcanfestival_unix.a' is not built:
$ find . -name "*.a"
./src/libcanfestival.a

Changing line 90 of 'drivers/unix/Makefile.in' to:
#driver: $(OBJS)
driver: libcanfestival_$(TARGET).a

solves the problem:

$ ./configure --timers=unix --can=socket --target=unix
$ make canfestival

...

$ find . -name "*.a"
./drivers/unix/libcanfestival_unix.a
./src/libcanfestival.a
global Mapping, AddMenuEntries

"""
MappingDictionary for DS-419
"""

Mapping = {
    0x6000 : {"name" : "Battery status", "struct" : var, "need" : True, "values" :
                [{"name" : "battery_status", "type" : 0x05, "access" : 'rw', "pdo" : True}]},

    0x6001 : {"name" : "Charger status", "struct" : var, "need" : True, "values" :
                [{"name" : "charger_status", "type" : 0x06, "access" : 'rw', "pdo" : True}]},

    0x6052 : {"name" : "Ah returned during last charge", "struct" : var, "need" : False, "values" :
                [{"name" : "ah_returned_during_last_charge", "type" : 0x06, "access" : 'ro', "pdo" : True}]},

    0x6060 : {"name" : "Battery voltage", "struct" : var, "need" : False, "values" :
                [{"name" : "battery_voltage", "type" : 0x07, "access" : 'rw', "pdo" : True}]},

    0x6070 : {"name" : "Charge current requested", "struct" : var, "need" : False, "values" :
                [{"name" : "charge_current_requested", "type" : 0x06, "access" : 'rw', "pdo" : True}]},

    0x6080 : {"name" : "Charger state of charge", "struct" : var, "need" : False, "values" :
                [{"name" : "charge_state_of_charge", "type" : 0x05, "access" : 'ro', "pdo" : True}]},

    0x6081 : {"name" : "Battery state of charge", "struct" : var, "need" : False, "values" :
                [{"name" : "battery_state_of_charge", "type" : 0x05, "access" : 'rw', "pdo" : True}]}

}

AddMenuEntries = []