Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
cmake_minimum_required(VERSION 3.5)

# Set proyect name
project(uros_agent)
project(micro_ros_agent)


set(CMAKE_C_CLANG_TIDY clang-tidy -checks=*)
Expand Down
676 changes: 676 additions & 0 deletions micro_ros_agent/CMakeLists.txt.user

Large diffs are not rendered by default.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from rosidl_cmake import read_generator_arguments
from rosidl_parser import UnknownMessageType
from uros_agent import generate_XML
from micro_ros_agent import generate_XML


def main(argv=sys.argv[1:]):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

sys.path.append(os.path.join(os.path.dirname(os.path.realpath(__file__)),'..'))

from uros_agent import *
from micro_ros_agent import *

def main(argv=sys.argv[1:]):
parser = argparse.ArgumentParser(
Expand All @@ -23,4 +23,4 @@ def main(argv=sys.argv[1:]):
return 0

if __name__ == '__main__':
sys.exit(main())
sys.exit(main())
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>micro-ros_agent</name>
<name>micro_ros_agent</name>
<version>0.0.1</version>
<description>DDS-XCRE agent implementation </description>
<maintainer email="[email protected]">Borja Outerelo</maintainer>
Expand Down
File renamed without changes.