mirror of
https://github.com/CopterExpress/clover.git
synced 2026-05-27 05:29:32 +00:00
15 lines
403 B
Bash
15 lines
403 B
Bash
#!/usr/bin/env bash
|
|
|
|
#
|
|
# @okalachev Oleg Kalachev
|
|
# @urpylka Artem Smirnov
|
|
#
|
|
|
|
# This script generates ros_lib library for Arduino for using with rosseial_arduino:
|
|
# http://wiki.ros.org/rosserial_arduino/Tutorials
|
|
# https://copterexpress.gitbooks.io/clever/content/docs/arduino.html
|
|
|
|
rm -rf ros_lib clever_arudino.tar.gz
|
|
rosrun rosserial_arduino make_libraries.py .
|
|
tar czf clever_arudino.tar.gz ros_lib
|