]> sigrok.org Git - sigrok-firmware-fx2lafw.git/blob - fx2lib/lib/eputils.c
Add Hantek PSO2020 firmware support
[sigrok-firmware-fx2lafw.git] / fx2lib / lib / eputils.c
1 /**
2  * Copyright (C) 2009 Ubixum, Inc. 
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, see <http://www.gnu.org/licenses/>.
16  **/
17
18
19
20
21 #include <eputils.h>
22
23 #include <fx2regs.h>
24
25 #ifdef DEBUG_EPUTILS
26 #include <stdio.h>
27 #else
28 #define printf(...)
29 #endif
30
31 void readep0( BYTE* dst, WORD len) {
32     WORD read = 0; // n bytes read
33     BYTE c,avail;
34     while (read < len) {
35         EP0BCH = 0;
36         // NOTE need syncdelay?
37         EP0BCL = 0; // re-arm ep so host can send more
38         while (EP0CS & bmEPBUSY);
39         avail = EP0BCL; // max size fits in one byte (64 bytes)
40         for (c=0;c<avail;++c)
41             dst[read+c] = EP0BUF[c];
42         read += avail;
43     }
44 }
45
46
47 void writeep0( BYTE* src, WORD len) {
48     WORD written = 0;
49     BYTE c;
50     while ( written < len ) {
51         while ( EP0CS & bmEPBUSY ); // wait
52         for (c=0;c<64 && written<len;++c ) {
53             EP0BUF[c] = src[written++];
54         }
55         EP0BCH = 0;
56         EP0BCL= c;
57         printf ( "Write %d bytes\n", c );
58     }
59 }