Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
usbeh/readme.c
- Committer:
- AjK
- Date:
- 2010-10-11
- Revision:
- 0:0a841b89d614
File content as of revision 0:0a841b89d614:
/****************************************************************************
* Copyright 2010 Andy Kirkham, Stellar Technologies Ltd
*
* This file is part of the Satellite Observers Workbench (SOWB).
*
* SOWB 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.
*
* SOWB 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 SOWB. If not, see <http://www.gnu.org/licenses/>.
*
* $Id: main.cpp 5 2010-07-12 20:51:11Z ajk $
*
***************************************************************************/
/**************************************************************************
The USB Embedded Host software is originally derived from the work of
Peter Barrett [1] and his BlueUSB project [2].
Although heavily re-styled, modified and revised for the SOWB project,
the "core" of the embedded host is based on Peter's work. Peter's
original copyright is acknowledge and reproduced below.
Thank you Peter for allowing others to stand on the shoulders of giants ;)
[1] http://mbed.org/users/peterbarrett1967/
[2] http://mbed.org/users/peterbarrett1967/programs/BlueUSB/5yn1q
Side note, I found some bugs that I fixed. I sent these back to Peter
to update his project. As yet I've had no reply and last time I looked
the bugs were still there. Basically, if a USB device has multiple
interfaces, in Peter's design only the even numbered interfaces will
be enumerated and assigned endpoints. All odd numbered interfaces are
skipped over and ignored.
****************************************************************************/
/*
Copyright (c) 2010 Peter Barrett
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/