From b7d211177a334b611f551fb3f020413b8888565a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20K=C3=B6gl?= Date: Tue, 2 Oct 2012 18:02:16 +0200 Subject: [PATCH] adding meta info --- AUTHORS | 1 + LICENSE | 14 +++ README.html | 328 ++++++++++++++++++++++++++++++++++++++++++++++++++++ README.rst | 15 +++ 4 files changed, 358 insertions(+) create mode 100644 AUTHORS create mode 100644 LICENSE create mode 100644 README.html create mode 100644 README.rst diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..c071cac --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Stefan Kögl diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..c8a8be7 --- /dev/null +++ b/LICENSE @@ -0,0 +1,14 @@ +This file is part of reflowctl. + +reflowctl is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +reflowctl is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with reflowctl. If not, see . diff --git a/README.html b/README.html new file mode 100644 index 0000000..4a9a889 --- /dev/null +++ b/README.html @@ -0,0 +1,328 @@ + + + + + + +reflowctl howto + + + +
+

reflowctl howto

+

Installation

+ +

You can use the reflowctl sketch as is in arduino IDE, or as we prefer with the editor of choice and a sane build environment.

+

Then you have to install cmake, for the serialmon.py script python and pyserial. The complete workflow to crosscompile and upload our sketch is decribed below:

+
+cd reflow
+mkdir build
+cmake ..
+make
+make reflowctl-upload
+
+
+ + diff --git a/README.rst b/README.rst new file mode 100644 index 0000000..4870e79 --- /dev/null +++ b/README.rst @@ -0,0 +1,15 @@ +reflowctl howto +=============== + +Installation +------------ + +You can use the reflowctl sketch as is in arduino IDE, or as we prefer with the editor of choice and a sane build environment. + +Then you have to install cmake, for the serialmon.py script python and pyserial. The complete workflow to crosscompile and upload our sketch is decribed below:: + + cd reflow + mkdir build + cmake .. + make + make reflowctl-upload