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

Subversion Repositories usb_fpga_1_11

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /usb_fpga_1_11/trunk/examples/all
    from Rev 3 to Rev 5
    Reverse comparison

Rev 3 → Rev 5

/debug/usb-fpga-1.20.brd Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
debug/usb-fpga-1.20.brd Property changes : Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Index: debug/Readme =================================================================== --- debug/Readme (revision 3) +++ debug/Readme (revision 5) @@ -19,13 +19,13 @@ This buffer is used to buffer the message. The user should write the data to this buffer. */ -xdata BYTE debug_msg_buf[DEBUG_MSG_SIZE]; +__xdata BYTE debug_msg_buf[DEBUG_MSG_SIZE]; /* Points the the last message on message stack. This can be used to modify / update the last message */ -xdata BYTE* xdata debug_stack_ptr; +__xdata BYTE* xdata debug_stack_ptr; /* Adds the message stored in debug_msg_buf to the message stack
/debug/usb-fpga-1.20.sch Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
debug/usb-fpga-1.20.sch Property changes : Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Index: debug/debug.sh =================================================================== --- debug/debug.sh (revision 3) +++ debug/debug.sh (revision 5) @@ -1,3 +1,3 @@ -make -C ../../../java distclean all || exit -make distclean all || exit +#make -C ../../../java distclean all || exit +#make distclean all || exit java -cp Debug.jar Debug $@ Index: debug/Debug.java =================================================================== --- debug/Debug.java (revision 3) +++ debug/Debug.java (revision 5) @@ -1,6 +1,6 @@ /*! debug -- debug helper example - Copyright (C) 2009-2010 ZTEX e.K. + Copyright (C) 2009-2011 ZTEX GmbH. http://www.ztex.de This program is free software; you can redistribute it and/or modify
/debug/debug.c
1,6 → 1,6
/*!
debug -- debug helper example
Copyright (C) 2009-2010 ZTEX e.K.
Copyright (C) 2009-2011 ZTEX GmbH.
http://www.ztex.de
 
This program is free software; you can redistribute it and/or modify
/ucecho/c/UCEcho Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream
ucecho/c/UCEcho Property changes : Added: svn:executable ## -0,0 +1 ## +* \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Index: ucecho/c/UCEcho.c =================================================================== --- ucecho/c/UCEcho.c (revision 3) +++ ucecho/c/UCEcho.c (revision 5) @@ -1,6 +1,6 @@ /*! UCEcho -- C host software for ucecho examples - Copyright (C) 2009-2010 ZTEX e.K. + Copyright (C) 2009-2011 ZTEX GmbH. http://www.ztex.de This program is free software; you can redistribute it and/or modify
/ucecho/UCEcho.java
1,6 → 1,6
/*!
ucecho -- uppercase conversion example for all EZ-USB devices
Copyright (C) 2009-2010 ZTEX e.K.
Copyright (C) 2009-2011 ZTEX GmbH.
http://www.ztex.de
 
This program is free software; you can redistribute it and/or modify
/ucecho/ucecho.c
1,6 → 1,6
/*!
ucecho -- uppercase conversion example for all EZ-USB devices
Copyright (C) 2009-2010 ZTEX e.K.
Copyright (C) 2009-2011 ZTEX GmbH.
http://www.ztex.de
 
This program is free software; you can redistribute it and/or modify
52,7 → 52,7
if ( size>0 && size<=512 && !(EP2CS & bmBIT3)) { // EP2 is not full
for ( i=0; i<size; i++ ) {
b = EP4FIFOBUF[i]; // data from EP4 ...
if ( b>='a' && b<='z' ) // ... is converted to uppercase ...
if ( b>=(BYTE)'a' && b<=(BYTE)'z' ) // ... is converted to uppercase ...
b-=32;
EP2FIFOBUF[i] = b; // ... and written back to EP2 buffer
}
/Makefile
1,4 → 1,4
DIRS=ucecho ucecho/c
DIRS=ucecho debug
 
.PHONY: default all clean distclean
 

powered by: WebSVN 2.1.0

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