Satellite Observers Workbench. NOT yet complete, just published for forum posters to \"cherry pick\" pieces of code as requiered as an example.

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers readme.c Source File

readme.c

00001 /****************************************************************************
00002  *    Copyright 2010 Andy Kirkham, Stellar Technologies Ltd
00003  *    
00004  *    This file is part of the Satellite Observers Workbench (SOWB).
00005  *
00006  *    SOWB is free software: you can redistribute it and/or modify
00007  *    it under the terms of the GNU General Public License as published by
00008  *    the Free Software Foundation, either version 3 of the License, or
00009  *    (at your option) any later version.
00010  *
00011  *    SOWB is distributed in the hope that it will be useful,
00012  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
00013  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00014  *    GNU General Public License for more details.
00015  *
00016  *    You should have received a copy of the GNU General Public License
00017  *    along with SOWB.  If not, see <http://www.gnu.org/licenses/>.
00018  *
00019  *    $Id: main.cpp 5 2010-07-12 20:51:11Z ajk $
00020  *    
00021  ***************************************************************************/
00022  /**************************************************************************
00023  
00024  The USB Embedded Host software is originally derived from the work of
00025  Peter Barrett [1] and his BlueUSB project [2].
00026  
00027  Although heavily re-styled, modified and revised for the SOWB project,
00028  the "core" of the embedded host is based on Peter's work. Peter's
00029  original copyright is acknowledge and reproduced below.
00030  
00031  Thank you Peter for allowing others to stand on the shoulders of giants ;)
00032  
00033  [1] http://mbed.org/users/peterbarrett1967/
00034  [2] http://mbed.org/users/peterbarrett1967/programs/BlueUSB/5yn1q
00035  
00036  Side note, I found some bugs that I fixed. I sent these back to Peter
00037  to update his project. As yet I've had no reply and last time I looked
00038  the bugs were still there. Basically, if a USB device has multiple
00039  interfaces, in Peter's design only the even numbered interfaces will
00040  be enumerated and assigned endpoints. All odd numbered interfaces are
00041  skipped over and ignored.
00042 
00043 ****************************************************************************/
00044 /*
00045 Copyright (c) 2010 Peter Barrett
00046 
00047 Permission is hereby granted, free of charge, to any person obtaining a copy
00048 of this software and associated documentation files (the "Software"), to deal
00049 in the Software without restriction, including without limitation the rights
00050 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
00051 copies of the Software, and to permit persons to whom the Software is
00052 furnished to do so, subject to the following conditions:
00053 
00054 The above copyright notice and this permission notice shall be included in
00055 all copies or substantial portions of the Software.
00056 
00057 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
00058 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
00059 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
00060 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
00061 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
00062 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
00063 THE SOFTWARE.
00064 */
00065