summaryrefslogtreecommitdiffstats
path: root/recipes-core
AgeCommit message (Expand)AuthorFilesLines
2023-03-23nss: Create a nss database for agl-driver userRoger Zanoni1-0/+21
2022-11-23output-udev-conf: add recipeScott Murray4-2/+26
2022-07-11dbus: Delete patch dbus-c++-threading.patch not used any longerZhou Mingying1-45/+0
2022-07-06demo-i2c-udev-conf: update for reworked agl-service-hvacScott Murray7-27/+26
2022-07-06psplash-portrait-config: add recipeScott Murray2-0/+23
2022-05-27dbus_agldemo: Fix recipe style errorduerpei1-1/+1
2022-05-16Replace "/etc" with "${sysconfidir}"duerpei1-2/+2
2021-11-03Prepare master for new framework integrationJan-Simon Möller3-48/+0
2021-08-20Convert to new override syntaxScott Murray6-13/+13
2020-12-17SPEC-3723: restructure meta-agl-demoJan-Simon Moeller24-17/+5836
2019-12-19Remove unneeded recipeicefish_8.99.4icefish/8.99.48.99.4Jan-Simon Möller1-19/+0
2019-12-14Add udev rules and scripts for demo platform configurationicefish_8.99.3icefish/8.99.38.99.3Jan-Simon Moeller8-0/+126
2018-11-15packagegroup: connectivity: remove libnfc packageraquel medina1-1/+0
2018-06-053rd part of the layer/profile rework [2/2]Jan-Simon Möller2-3/+0
2018-04-282nd part of the layer/profile rework [2/2]Jan-Simon Möller2-47/+0
2018-01-23libdbus-c++:Fix build error in GCC-7Changhyeok Bae2-0/+47
2018-01-23libdbus-c++: Remove bbappend fileChanghyeok Bae1-1/+0
2017-12-27add recipes for identity, data persistence and nfcLoïc Collignon3-0/+18
2017-11-14Check audiomanager before add virtual/pulseaudio-configRonan Le Martret1-1/+1
2017-11-12Introduce new 4A audio framework conditionnaly to feature 'agl-audio-4a-frame...Stephane Desneux1-1/+0
2017-11-03Rework PulseAudio / audiomanager config setup to allow over-ridesScott Murray1-1/+1
2017-09-06Upgrade to pyroChanghyeok Bae8-303/+1
2016-12-27Integrate GENIVI Audio Manager Plugins for CES2017 demo.Toshiaki Isogai1-0/+4
2016-12-22Backport libdbusc++ from poky upstreamNaoto Yamaguchi7-0/+303
2015-08-22The starting point of layers for AGL Demo PlatformTadao Tanikawa1-0/+0
rning(f"interval_ms attribute ignored for {expanded_name}") mapping_entry = VSSMapping(expanded_name, dbc_name, transform, interval, on_change, - node["datatype"], node["description"]) + node["type"], node["datatype"], node["description"]) if dbc_name not in self.val2dbc_mapping: self.val2dbc_mapping[expanded_name] = [] self.val2dbc_mapping[expanded_name].append(mapping_entry) @@ -380,9 +381,12 @@ class Mapper: """Return a set of all dbc names used for reception""" return self.dbc2val_mapping.keys() - def get_val2dbc_entries(self) -> KeysView: + def get_val2dbc_entries(self) -> Dict[str, str]: """Return a set of all vss names used for reception""" - return self.val2dbc_mapping.keys() + entries: Dict[str, str] = {} + for name, mappings in self.val2dbc_mapping.items(): + entries[name] = mappings[0].signal_type + return entries def get_vss_names(self) -> Set[str]: """Get all VSS names used in mappings, both vss2dbc and dbc2vss""" diff --git a/dbc2val/dbcfeederlib/serverclientwrapper.py b/dbc2val/dbcfeederlib/serverclientwrapper.py index 63bc12e..ca11daf 100644 --- a/dbc2val/dbcfeederlib/serverclientwrapper.py +++ b/dbc2val/dbcfeederlib/serverclientwrapper.py @@ -125,6 +125,6 @@ class ServerClientWrapper(clientwrapper.ClientWrapper): log.info("Feature not implemented") return False - async def subscribe(self, vss_names: List[str], callback): + async def subscribe(self, vss_entries: dict[str, str], callback): log.error("Feature not implemented") return -- 2.34.1