just deleted useless files
authortheStack <sebastian.falbesoner@gmail.com>
Wed, 23 Sep 2009 18:46:23 +0000 (20:46 +0200)
committertheStack <sebastian.falbesoner@gmail.com>
Wed, 23 Sep 2009 18:46:23 +0000 (20:46 +0200)
usb/uclibusb/ft232.c [deleted file]
usb/uclibusb/ft232.h [deleted file]
usb/usbspec/request.c [deleted file]
usb/usbspec/request.h [deleted file]

diff --git a/usb/uclibusb/ft232.c b/usb/uclibusb/ft232.c
deleted file mode 100644 (file)
index 73380eb..0000000
+++ /dev/null
@@ -1,92 +0,0 @@
-/*
- * Copyright (c) 2007, Benedikt Sauter <sauter@ixbat.de>
- * All rights reserved.
- *
- * Short descripton of file:
- *
- *
- * Redistribution and use in source and binary forms, with or without 
- * modification, are permitted provided that the following conditions 
- * are met:
- *
- *   * Redistributions of source code must retain the above copyright 
- *     notice, this list of conditions and the following disclaimer.
- *   * Redistributions in binary form must reproduce the above 
- *     copyright notice, this list of conditions and the following 
- *     disclaimer in the documentation and/or other materials provided 
- *     with the distribution.
- *   * Neither the name of the FH Augsburg nor the names of its 
- *     contributors may be used to endorse or promote products derived 
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include <lib/types.h>
-
-#include <core/usb.h>
-#include <usbspec/usb11spec.h>
-
-#include "ft232.h"
-
-/** 
- * Find and open an FT232 on bus.
- */
-usb_device * usb_ft232_open()
-{
-  usb_device * dev = usb_open(0x0403,0x6001);
-  char tmp[8];
-
-  if(dev!=NULL) {
-    usb_control_msg(dev, 0x00,SET_CONFIGURATION,0x0100, 0, 0,tmp, 8, 0);
-
-    usb_control_msg(dev, 0x40, 0,0, 0,  0,tmp, 8, 0);
-    usb_control_msg(dev, 0x40, 4,8, 0,  0,tmp, 8, 0);
-    usb_control_msg(dev, 0x40, 3,0x4138, 0,  0,tmp, 8, 0);
-    usb_control_msg(dev, 0x40, 1,0x0303, 0,  0,tmp, 8, 0);
-    usb_control_msg(dev, 0x40, 2,0, 0,  0,tmp, 8, 0);
-    usb_control_msg(dev, 0x40, 1,0x0303, 0,  0,tmp, 8, 0);
-  } else {
-    dev = NULL;
-  }
-  return dev;
-}
-
-/**
- * Close the opened FT232.
- */
-void usb_ft232_close(usb_device *dev)
-{
-  return;
-}
-
-/**
- * Send a buffer.
- */
-u8 usb_ft232_send(usb_device *dev,char *bytes, u8 length)
-{
-  char tmp[8];
-  usb_bulk_write(dev, 2, bytes, length, 0);
-  usb_control_msg(dev, 0x40, 2,0, 0,  0,tmp, 8, 0);
-  usb_control_msg(dev, 0x40, 1,0x0300, 0,  0,tmp, 8, 0);
-  return 1;
-}
-
-/**
- * Receive some values.
- */
-u8 usb_ft232_receive(usb_device *dev,char *bytes, u8 length)
-{
-  usb_bulk_read(dev, 1,  bytes, length,0);
-  return 1;
-}
diff --git a/usb/uclibusb/ft232.h b/usb/uclibusb/ft232.h
deleted file mode 100644 (file)
index dfff678..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-/*
- * Copyright (c) 2007, Benedikt Sauter <sauter@ixbat.de>
- * All rights reserved.
- *
- * Short descripton of file:
- *
- *
- * Redistribution and use in source and binary forms, with or without 
- * modification, are permitted provided that the following conditions 
- * are met:
- *
- *   * Redistributions of source code must retain the above copyright 
- *     notice, this list of conditions and the following disclaimer.
- *   * Redistributions in binary form must reproduce the above 
- *     copyright notice, this list of conditions and the following 
- *     disclaimer in the documentation and/or other materials provided 
- *     with the distribution.
- *   * Neither the name of the FH Augsburg nor the names of its 
- *     contributors may be used to endorse or promote products derived 
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#ifndef __FT232_H
-#define __FT232_H
-#include "../../types.h"
-
-usb_device * usb_ft232_open();
-void usb_ft232_close(usb_device *dev);
-u8 usb_ft232_send(usb_device *dev,char *bytes, u8 length);
-u8 usb_ft232_receive(usb_device *dev,char *bytes, u8 length);
-
-#endif /* __FT232_H */
diff --git a/usb/usbspec/request.c b/usb/usbspec/request.c
deleted file mode 100644 (file)
index 555fb6e..0000000
+++ /dev/null
@@ -1,71 +0,0 @@
-/*
- * Copyright (c) 2006, Benedikt Sauter <sauter@ixbat.de>
- * All rights reserved.
- *
- * Short descripton of file:
- *
- *
- * Redistribution and use in source and binary forms, with or without 
- * modification, are permitted provided that the following conditions 
- * are met:
- *
- *   * Redistributions of source code must retain the above copyright 
- *     notice, this list of conditions and the following disclaimer.
- *   * Redistributions in binary form must reproduce the above 
- *     copyright notice, this list of conditions and the following 
- *     disclaimer in the documentation and/or other materials provided 
- *     with the distribution.
- *   * Neither the name of the FH Augsburg nor the names of its 
- *     contributors may be used to endorse or promote products derived 
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
-#include "usb11spec.h"
-#include "request.h"
-
-void request_usb_get_device_descriptor(char *buf, u8 len)
-{
-       //struct usb_device_request * req = (struct usb_device_request*)buf;
-       // 0x80,0x06,0x00,0x01, 0x00,0x00,0x40,0x00
-       buf[0] = 0x80;
-       buf[1] = 0x06;
-       buf[2] = 0x00;
-       buf[3] = 0x01;
-       buf[4] = 0x00;
-       buf[5] = 0x00;
-       buf[6] = len;
-       buf[7] = 0x00;
-       /*
-       req->bmRequestType=0x80;
-       req->bRequest=GET_DESCRIPTOR;
-       req->wValue=DEVICE;
-       req->wIndex=0x0000;
-       req->wLength=len<<8;
-       */
-}
-
-
-void request_usb_set_address(char *buf, u8 addr)
-{
-       buf[0] = 0x00;
-       buf[1] = 0x05;
-       buf[2] = addr;
-       buf[3] = 0x00;
-       buf[4] = 0x00;
-       buf[5] = 0x00;
-       buf[6] = 0x00;
-       buf[7] = 0x00;
-}
-
diff --git a/usb/usbspec/request.h b/usb/usbspec/request.h
deleted file mode 100644 (file)
index c31f6d7..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * Copyright (c) 2006, Benedikt Sauter <sauter@ixbat.de>
- * All rights reserved.
- *
- * Short descripton of file:
- *
- *
- * Redistribution and use in source and binary forms, with or without 
- * modification, are permitted provided that the following conditions 
- * are met:
- *
- *   * Redistributions of source code must retain the above copyright 
- *     notice, this list of conditions and the following disclaimer.
- *   * Redistributions in binary form must reproduce the above 
- *     copyright notice, this list of conditions and the following 
- *     disclaimer in the documentation and/or other materials provided 
- *     with the distribution.
- *   * Neither the name of the FH Augsburg nor the names of its 
- *     contributors may be used to endorse or promote products derived 
- *     from this software without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
- * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-#ifndef __REQUEST_H
-#define __REQUEST_H
-#include "../../types.h"
-
-void request_usb_get_device_descriptor(char *buf, u8 len);
-
-void request_usb_set_address(char *buf, u8 addr);
-
-#endif /*__REQUEST_H */