Add new vusb package

This commit is contained in:
optixx
2016-02-09 12:29:43 +01:00
parent 8fe9e51889
commit 31ab89bbae
112 changed files with 16280 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
/* 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 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;
}
/* ------------------------------------------------------------------------- */