o add vusb

This commit is contained in:
optixx
2009-05-02 11:28:11 +02:00
parent 0693dbc933
commit 25c1f38aed
104 changed files with 15514 additions and 0 deletions

26
tools/vusb/tests/null.c Normal file
View File

@@ -0,0 +1,26 @@
/* Name: null.c
* Project: Testing driver features
* Author: Christian Starkjohann
* Creation Date: 2008-04-29
* Tabsize: 4
* Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
* License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
* This Revision: $Id: null.c 692 2008-11-07 15:07:40Z cs $
*/
/*
This is a NULL main() function to find out the code size required by libusb's
startup code, interrupt vectors etc.
*/
#include <avr/io.h>
/* ------------------------------------------------------------------------- */
int main(void)
{
for(;;);
return 0;
}
/* ------------------------------------------------------------------------- */