OpenCores
URL https://opencores.org/ocsvn/usb_fpga_2_13/usb_fpga_2_13/trunk

Subversion Repositories usb_fpga_2_13

[/] [usb_fpga_2_13/] [trunk/] [default/] [usb-fpga-2.16/] [default.c] - Blame information for rev 2

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 ZTEX
/*!
2
   Default firmware and loader for ZTEX USB-FPGA Modules 2.16
3
   Copyright (C) 2009-2014 ZTEX GmbH.
4
   http://www.ztex.de
5
 
6
   This program is free software; you can redistribute it and/or modify
7
   it under the terms of the GNU General Public License version 3 as
8
   published by the Free Software Foundation.
9
 
10
   This program is distributed in the hope that it will be useful, but
11
   WITHOUT ANY WARRANTY; without even the implied warranty of
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13
   General Public License for more details.
14
 
15
   You should have received a copy of the GNU General Public License
16
   along with this program; if not, see http://www.gnu.org/licenses/.
17
!*/
18
 
19
#include[ztex-conf.h]   // Loads the configuration macros, see ztex-conf.h for the available macros
20
#include[ztex-utils.h]  // include basic functions and variables
21
 
22
// select ZTEX USB FPGA Module 2.16 as target  (required for FPGA configuration)
23
IDENTITY_UFM_2_16(10.16.0.0,0);
24
 
25
// enables high speed FPGA configuration via EP4
26
EP_CONFIG(2,0,BULK,OUT,512,4);
27
ENABLE_HS_FPGA_CONF(2);
28
 
29
// enable Flash support
30
ENABLE_FLASH;
31
ENABLE_FLASH_BITSTREAM;
32
 
33
// this product string is also used for identification by the host software
34
#define[PRODUCT_STRING]["USB-FPGA Module 2.16  (default)"]
35
 
36
// include the main part of the firmware kit, define the descriptors, ...
37
#include[ztex.h]
38
 
39
void main(void)
40
{
41
    init_USB();
42
 
43
    if ( config_data_valid ) {
44
        mac_eeprom_read ( (__xdata BYTE*) (productString+20), 6, 1 );
45
    }
46
 
47
    while (1) { }                                       //  twiddle thumbs
48
}
49
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.