Browse Source
This reduces flash size for v5 by ~110KB, the topic listener now only adds about 1.2KB.master
Beat Küng
3 years ago
16 changed files with 330 additions and 347 deletions
@ -1,135 +0,0 @@
@@ -1,135 +0,0 @@
|
||||
#!/usr/bin/python |
||||
|
||||
import glob |
||||
import os |
||||
import sys |
||||
import re |
||||
|
||||
# This script is run from Build/<target>_default.build/$(PX4_BASE)/Firmware/src/systemcmds/topic_listener |
||||
|
||||
# argv[1] must be the full path of the top Firmware dir |
||||
# argv[2] - argv[n] is the full list of msg files |
||||
|
||||
raw_messages = sys.argv[2:] |
||||
|
||||
messages = [] |
||||
topics = [] |
||||
message_elements = [] |
||||
|
||||
for index,m in enumerate(raw_messages): |
||||
topic_list = [] |
||||
|
||||
msg_path = sys.argv[1]+ '/msg/' + m |
||||
|
||||
if os.path.isfile(msg_path): |
||||
# first try opening file in msg/ directory |
||||
f = open(msg_path,'r') |
||||
else: |
||||
# otherwise try opening directly (could be an external module msg) |
||||
f = open(m,'r') |
||||
|
||||
for line in f.readlines(): |
||||
items = re.split('\s+', line.strip()) |
||||
|
||||
if '# TOPICS' == ' '.join(items[:2]): |
||||
for topic in items[2:]: |
||||
topic_list.append(topic) |
||||
|
||||
f.close() |
||||
|
||||
(m_head, m_tail) = os.path.split(m) |
||||
message = m_tail.split('.')[0] |
||||
|
||||
if len(topic_list) == 0: |
||||
topic_list.append(message) |
||||
|
||||
for topic in topic_list: |
||||
messages.append(message) |
||||
topics.append(topic) |
||||
|
||||
num_messages = len(messages); |
||||
|
||||
print(""" |
||||
|
||||
/**************************************************************************** |
||||
* |
||||
* Copyright (c) 2015 PX4 Development Team. All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions |
||||
* are met: |
||||
* |
||||
* 1. Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* 2. Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in |
||||
* the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* 3. Neither the name PX4 nor the names of its contributors may be |
||||
* used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
||||
* POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
****************************************************************************/ |
||||
|
||||
/** |
||||
* @file topic_listener.cpp |
||||
* |
||||
* Autogenerated by Tools/generate_listener.py |
||||
* |
||||
* Tool for listening to topics when running flight stack on linux. |
||||
*/ |
||||
|
||||
#include <drivers/drv_hrt.h> |
||||
#include <px4_platform_common/app.h> |
||||
#include <px4_platform_common/px4_config.h> |
||||
#include <px4_platform_common/log.h> |
||||
#include <uORB/uORB.h> |
||||
#include <string.h> |
||||
#include <stdint.h> |
||||
#include <stdio.h> |
||||
#include <stdlib.h> |
||||
#include <inttypes.h> |
||||
|
||||
#include <topic_listener.hpp> |
||||
#include <topic_listener_generated.hpp> |
||||
|
||||
""") |
||||
for m in set(messages): |
||||
print("#include <uORB/topics/%s.h>" % m) |
||||
|
||||
print (""" |
||||
\nvoid listener_generated(char * topic_name, int topic_instance, int topic_rate, int num_msgs) { |
||||
""") |
||||
|
||||
print(""" |
||||
unsigned topic_interval = 0; |
||||
if (topic_rate != 0) { |
||||
topic_interval = 1000 / topic_rate; |
||||
} |
||||
""") |
||||
|
||||
for index, (m, t) in enumerate(zip(messages, topics)): |
||||
if index == 0: |
||||
print("\tif (strcmp(topic_name,\"%s\") == 0) {" % (t)) |
||||
else: |
||||
print("\t} else if (strcmp(topic_name,\"%s\") == 0) {" % (t)) |
||||
print("\t\tlistener(listener_print_topic<%s_s>, ORB_ID(%s), num_msgs, topic_instance, topic_interval);" % (m, t)) |
||||
|
||||
print("\t} else {") |
||||
print("\t\t PX4_INFO_RAW(\" Topic did not match any known topics\\n\");") |
||||
print("\t}") |
||||
|
||||
print("}\n") |
@ -1,36 +0,0 @@
@@ -1,36 +0,0 @@
|
||||
/****************************************************************************
|
||||
* |
||||
* Copyright (c) 2018 PX4 Development Team. All rights reserved. |
||||
* |
||||
* Redistribution and use in source and binary forms, with or without |
||||
* modification, are permitted provided that the following conditions |
||||
* are met: |
||||
* |
||||
* 1. Redistributions of source code must retain the above copyright |
||||
* notice, this list of conditions and the following disclaimer. |
||||
* 2. Redistributions in binary form must reproduce the above copyright |
||||
* notice, this list of conditions and the following disclaimer in |
||||
* the documentation and/or other materials provided with the |
||||
* distribution. |
||||
* 3. Neither the name PX4 nor the names of its contributors may be |
||||
* used to endorse or promote products derived from this software |
||||
* without specific prior written permission. |
||||
* |
||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
||||
* POSSIBILITY OF SUCH DAMAGE. |
||||
* |
||||
****************************************************************************/ |
||||
|
||||
#pragma once |
||||
|
||||
void listener_generated(char *topic_name, int topic_instance, int topic_rate, int num_msgs); |
Loading…
Reference in new issue