Skip to content

Commit

Permalink
Merge pull request #27 from MiRON-project/fix_gitignore
Browse files Browse the repository at this point in the history
Fix gitignore
  • Loading branch information
renan028 authored May 5, 2020
2 parents abc0115 + 789c26f commit 92fc09b
Show file tree
Hide file tree
Showing 9 changed files with 421 additions and 3 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,4 @@ datasheet-gen/
src-gen/
__pycache__/
/*/bin/
.settings
predeploy*
startstop*
.settings
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/bin/bash
#
# This script is run prior to deployment of component PersonRecogn
# The working directory of this script is the deployment project folder.
#

#--------------------------------------------------------------------------
# Code generated by the SmartSoft MDSD Toolchain
# The SmartSoft Toolchain has been developed by:
#
# Service Robotics Research Center
# University of Applied Sciences Ulm
# Prittwitzstr. 10
# 89075 Ulm (Germany)
#
# Information about the SmartSoft MDSD Toolchain is available at:
# www.servicerobotik-ulm.de
#
# This file is generated once. Modify this file to your needs.
# If you want the toolchain to re-generate this file, please
# delete it before running the code generator.
#--------------------------------------------------------------------------

# uncomment to enable predeploy script delivered by component
source $REFERENCED_PROJECT_ComponentWebotsPersonRecognition/smartsoft/src/predeploy.sh

# Add SmartSoft libraries that shall be deployed to the target device where this
# component is to be deployed.
# These libraries will be searched in $SMART_ROOT/lib and then deployed
# Add one file per line.
#DEPLOY_LIBRARIES="$DEPLOY_LIBRARIES
#libSmartSickInterface.so
#"


# add custom code here. E.g. use this script to collect data-files and
# copy them to src/<COMPONENT>_data, etc.

Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/bin/bash
#
# This script is run prior to deployment of component SmartJoystickNavigation
# The working directory of this script is the deployment project folder.
#

#--------------------------------------------------------------------------
# Code generated by the SmartSoft MDSD Toolchain
# The SmartSoft Toolchain has been developed by:
#
# Service Robotics Research Center
# University of Applied Sciences Ulm
# Prittwitzstr. 10
# 89075 Ulm (Germany)
#
# Information about the SmartSoft MDSD Toolchain is available at:
# www.servicerobotik-ulm.de
#
# This file is generated once. Modify this file to your needs.
# If you want the toolchain to re-generate this file, please
# delete it before running the code generator.
#--------------------------------------------------------------------------

# uncomment to enable predeploy script delivered by component
source $REFERENCED_PROJECT_SmartJoystickNavigation/smartsoft/src/predeploy.sh

# Add SmartSoft libraries that shall be deployed to the target device where this
# component is to be deployed.
# These libraries will be searched in $SMART_ROOT/lib and then deployed
# Add one file per line.
#DEPLOY_LIBRARIES="$DEPLOY_LIBRARIES
#libSmartSickInterface.so
#"


# add custom code here. E.g. use this script to collect data-files and
# copy them to src/<COMPONENT>_data, etc.

Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/bin/bash
#
# This script is run prior to deployment of component SmartJoystickServer
# The working directory of this script is the deployment project folder.
#

#--------------------------------------------------------------------------
# Code generated by the SmartSoft MDSD Toolchain
# The SmartSoft Toolchain has been developed by:
#
# Service Robotics Research Center
# University of Applied Sciences Ulm
# Prittwitzstr. 10
# 89075 Ulm (Germany)
#
# Information about the SmartSoft MDSD Toolchain is available at:
# www.servicerobotik-ulm.de
#
# This file is generated once. Modify this file to your needs.
# If you want the toolchain to re-generate this file, please
# delete it before running the code generator.
#--------------------------------------------------------------------------

# uncomment to enable predeploy script delivered by component
source $REFERENCED_PROJECT_SmartJoystickServer/smartsoft/src/predeploy.sh

# Add SmartSoft libraries that shall be deployed to the target device where this
# component is to be deployed.
# These libraries will be searched in $SMART_ROOT/lib and then deployed
# Add one file per line.
#DEPLOY_LIBRARIES="$DEPLOY_LIBRARIES
#libSmartSickInterface.so
#"


# add custom code here. E.g. use this script to collect data-files and
# copy them to src/<COMPONENT>_data, etc.

Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#!/bin/bash
#
# Start-Stop-Hooks for component PersonRecogn
#
# This script provides methods to call custom commands pre/post of
# starting/stoping the component during launch on the device.
# This script is being executed on the target device where this
# component is running.
#

#--------------------------------------------------------------------------
# Code generated by the SmartSoft MDSD Toolchain
# The SmartSoft Toolchain has been developed by:
#
# Service Robotics Research Center
# University of Applied Sciences Ulm
# Prittwitzstr. 10
# 89075 Ulm (Germany)
#
# Information about the SmartSoft MDSD Toolchain is available at:
# www.servicerobotik-ulm.de
#
# This file is generated once. Modify this file to your needs.
# If you want the toolchain to re-generate this file, please
# delete it before running the code generator.
#--------------------------------------------------------------------------

case "$1" in

pre-start)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-ComponentWebotsPersonRecognition.sh pre-start

# ...then call user/deployment specific hook:
echo "Triggering pre-start hooks ..."
;;

post-start)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-ComponentWebotsPersonRecognition.sh post-start

# ...then call user/deployment specific hook:
echo "Triggering post-start hooks ..."
;;

pre-stop)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-ComponentWebotsPersonRecognition.sh pre-stop

# ...then call user/deployment specific hook:
echo "Triggering pre-stop hooks ..."
;;

post-stop)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-ComponentWebotsPersonRecognition.sh post-stop

# ...then call user/deployment specific hook:
echo "Triggering post-stop hooks ..."
;;

*)
echo "ERROR in $0: no such hook '$1'. Usage: $0 pre-start|post-start|pre-stop|post-stop"
;;

esac

Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#!/bin/bash
#
# Start-Stop-Hooks for component SmartJoystickNavigation
#
# This script provides methods to call custom commands pre/post of
# starting/stoping the component during launch on the device.
# This script is being executed on the target device where this
# component is running.
#

#--------------------------------------------------------------------------
# Code generated by the SmartSoft MDSD Toolchain
# The SmartSoft Toolchain has been developed by:
#
# Service Robotics Research Center
# University of Applied Sciences Ulm
# Prittwitzstr. 10
# 89075 Ulm (Germany)
#
# Information about the SmartSoft MDSD Toolchain is available at:
# www.servicerobotik-ulm.de
#
# This file is generated once. Modify this file to your needs.
# If you want the toolchain to re-generate this file, please
# delete it before running the code generator.
#--------------------------------------------------------------------------

case "$1" in

pre-start)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-SmartJoystickNavigation.sh pre-start

# ...then call user/deployment specific hook:
echo "Triggering pre-start hooks ..."
;;

post-start)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-SmartJoystickNavigation.sh post-start

# ...then call user/deployment specific hook:
echo "Triggering post-start hooks ..."
;;

pre-stop)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-SmartJoystickNavigation.sh pre-stop

# ...then call user/deployment specific hook:
echo "Triggering pre-stop hooks ..."
;;

post-stop)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-SmartJoystickNavigation.sh post-stop

# ...then call user/deployment specific hook:
echo "Triggering post-stop hooks ..."
;;

*)
echo "ERROR in $0: no such hook '$1'. Usage: $0 pre-start|post-start|pre-stop|post-stop"
;;

esac

Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
#!/bin/bash
#
# Start-Stop-Hooks for component SmartJoystickServer
#
# This script provides methods to call custom commands pre/post of
# starting/stoping the component during launch on the device.
# This script is being executed on the target device where this
# component is running.
#

#--------------------------------------------------------------------------
# Code generated by the SmartSoft MDSD Toolchain
# The SmartSoft Toolchain has been developed by:
#
# Service Robotics Research Center
# University of Applied Sciences Ulm
# Prittwitzstr. 10
# 89075 Ulm (Germany)
#
# Information about the SmartSoft MDSD Toolchain is available at:
# www.servicerobotik-ulm.de
#
# This file is generated once. Modify this file to your needs.
# If you want the toolchain to re-generate this file, please
# delete it before running the code generator.
#--------------------------------------------------------------------------

case "$1" in

pre-start)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-SmartJoystickServer.sh pre-start

# ...then call user/deployment specific hook:
echo "Triggering pre-start hooks ..."
;;

post-start)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-SmartJoystickServer.sh post-start

# ...then call user/deployment specific hook:
echo "Triggering post-start hooks ..."
;;

pre-stop)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-SmartJoystickServer.sh pre-stop

# ...then call user/deployment specific hook:
echo "Triggering pre-stop hooks ..."
;;

post-stop)
# first, trigger hooks as delivered from component ...
bash startstop-hooks-component-SmartJoystickServer.sh post-stop

# ...then call user/deployment specific hook:
echo "Triggering post-stop hooks ..."
;;

*)
echo "ERROR in $0: no such hook '$1'. Usage: $0 pre-start|post-start|pre-stop|post-stop"
;;

esac

Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
#!/bin/bash
#
# This script is run prior to deployment of component PersonRecognition
# The working directory of this script is the deployment project folder.
#

#--------------------------------------------------------------------------
# Code generated by the SmartSoft MDSD Toolchain
# The SmartSoft Toolchain has been developed by:
#
# Service Robotics Research Center
# University of Applied Sciences Ulm
# Prittwitzstr. 10
# 89075 Ulm (Germany)
#
# Information about the SmartSoft MDSD Toolchain is available at:
# www.servicerobotik-ulm.de
#
# This file is generated once. Modify this file to your needs.
# If you want the toolchain to re-generate this file, please
# delete it before running the code generator.
#--------------------------------------------------------------------------

# uncomment to enable predeploy script delivered by component
source $REFERENCED_PROJECT_ComponentWebotsPersonRecognition/smartsoft/src/predeploy.sh

# Add SmartSoft libraries that shall be deployed to the target device where this
# component is to be deployed.
# These libraries will be searched in $SMART_ROOT/lib and then deployed
# Add one file per line.
#DEPLOY_LIBRARIES="$DEPLOY_LIBRARIES
#libSmartSickInterface.so
#"


# add custom code here. E.g. use this script to collect data-files and
# copy them to src/<COMPONENT>_data, etc.

Loading

0 comments on commit 92fc09b

Please sign in to comment.