]> sigrok.org Git - sigrok-firmware-fx2lafw.git/blobdiff - fx2lib/fw/device.c
Drop fx2lib files we don't really need.
[sigrok-firmware-fx2lafw.git] / fx2lib / fw / device.c
diff --git a/fx2lib/fw/device.c b/fx2lib/fw/device.c
deleted file mode 100644 (file)
index 006a220..0000000
+++ /dev/null
@@ -1,94 +0,0 @@
-/**
- * Copyright (C) 2009 Ubixum, Inc. 
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library 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
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
- **/
-
-#include <fx2macros.h>
-
-#ifdef DEBUG_FIRMWARE
-#include <stdio.h>
-#else
-#define printf(...)
-#endif
-
-//************************** Configuration Handlers *****************************
-
-// change to support as many interfaces as you need
-//volatile xdata BYTE interface=0;
-//volatile xdata BYTE alt=0; // alt interface
-
-// set *alt_ifc to the current alt interface for ifc
-BOOL handle_get_interface(BYTE ifc, BYTE* alt_ifc) {
-// *alt_ifc=alt;
- return TRUE;
-}
-// return TRUE if you set the interface requested
-// NOTE this function should reconfigure and reset the endpoints
-// according to the interface descriptors you provided.
-BOOL handle_set_interface(BYTE ifc,BYTE alt_ifc) {  
- printf ( "Set Interface.\n" );
- //interface=ifc;
- //alt=alt_ifc;
- return TRUE;
-}
-
-// handle getting and setting the configuration
-// 1 is the default.  If you support more than one config
-// keep track of the config number and return the correct number
-// config numbers are set int the dscr file.
-//volatile BYTE config=1;
-BYTE handle_get_configuration() { 
- return 1;
-}
-
-// NOTE changing config requires the device to reset all the endpoints
-BOOL handle_set_configuration(BYTE cfg) { 
- printf ( "Set Configuration.\n" );
- //config=cfg;
- return TRUE;
-}
-
-
-//******************* VENDOR COMMAND HANDLERS **************************
-
-
-BOOL handle_vendorcommand(BYTE cmd) {
- // your custom vendor handler code here..
- return FALSE; // not handled by handlers
-}
-
-
-//********************  INIT ***********************
-
-void main_init() {
-
- REVCTL=3;
- SETIF48MHZ();
-
- // set IFCONFIG
- // config your endpoints etc.
- // config gpif
- printf ( "Initialization Done.\n" );
-
-}
-
-
-void main_loop() {
- // do some work
-}
-
-