msg: templates: add 'ids' to the Context documentation

This commit is contained in:
TSC21 2018-09-24 15:03:48 +01:00 committed by Beat Küng
parent 0227ea3835
commit 1cc3d95ff7
17 changed files with 18 additions and 1 deletions

View File

@ -15,6 +15,7 @@
@# - file_name_in (String) Source file
@# - spec (msggen.MsgSpec) Parsed specification of the .msg file
@# - md5sum (String) MD5Sum of the .msg specification
@# - ids (List) list of all RTPS msg ids
@###############################################
/****************************************************************************
*

View File

@ -15,6 +15,7 @@
@# - file_name_in (String) Source file
@# - spec (msggen.MsgSpec) Parsed specification of the .msg file
@# - md5sum (String) MD5Sum of the .msg specification
@# - ids (List) list of all RTPS msg ids
@###############################################
/****************************************************************************
*

View File

@ -15,6 +15,7 @@
@# - md5sum (String) MD5Sum of the .msg specification
@# - search_path (dict) search paths for genmsg
@# - topics (List of String) multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
/****************************************************************************
*

View File

@ -15,6 +15,7 @@
@# - md5sum (String) MD5Sum of the .msg specification
@# - search_path (dict) search paths for genmsg
@# - topics (List of String) multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
/****************************************************************************
*

View File

@ -9,6 +9,7 @@
@# Context:
@# - msgs (List) list of all msg files
@# - multi_topics (List) list of all multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
/****************************************************************************
*

View File

@ -8,6 +8,7 @@
@# Context:
@# - msgs (List) list of all msg files
@# - multi_topics (List) list of all multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
@{
import os

View File

@ -15,6 +15,7 @@
@# - md5sum (String) MD5Sum of the .msg specification
@# - search_path (dict) search paths for genmsg
@# - topics (List of String) multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
/****************************************************************************
*

View File

@ -15,6 +15,7 @@
@# - md5sum (String) MD5Sum of the .msg specification
@# - search_path (dict) search paths for genmsg
@# - topics (List of String) multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
/****************************************************************************
*

View File

@ -9,6 +9,7 @@
@# Context:
@# - msgs (List) list of all msg files
@# - multi_topics (List) list of all multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
/****************************************************************************
*

View File

@ -8,6 +8,7 @@
@# Context:
@# - msgs (List) list of all msg files
@# - multi_topics (List) list of all multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
@{
import genmsg.msgs

View File

@ -8,6 +8,7 @@
@# Context:
@# - msgs (List) list of all msg files
@# - multi_topics (List) list of all multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
@{
import genmsg.msgs

View File

@ -7,6 +7,7 @@
@#
@# Context:
@# - msgs (List) list of all msg files
@# - ids (List) list of all RTPS msg ids
@###############################################
@{
import os

View File

@ -7,6 +7,7 @@
@#
@# Context:
@# - msgs (List) list of all msg files
@# - ids (List) list of all RTPS msg ids
@###############################################
@{
import os

View File

@ -8,6 +8,7 @@
@# Context:
@# - msgs (List) list of all msg files
@# - multi_topics (List) list of all multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
@{
import genmsg.msgs

View File

@ -8,6 +8,7 @@
@# Context:
@# - msgs (List) list of all msg files
@# - multi_topics (List) list of all multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
@{
import genmsg.msgs

View File

@ -8,6 +8,7 @@
@# Context:
@# - msgs (List) list of all msg files
@# - multi_topics (List) list of all multi-topic names
@# - ids (List) list of all RTPS msg ids
@###############################################
@{
import genmsg.msgs

View File

@ -260,7 +260,8 @@ def get_em_globals(filename_msg, package, includepath, ids, scope):
"spec": spec,
"topics": topics,
"ids": ids,
"scope": scope
"scope": scope,
"package": package
}
return em_globals