aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAJM <poslathian@poslathian.(none)>2010-04-25 15:52:04 -0400
committerbnewbold <bnewbold@robocracy.org>2010-05-20 22:09:15 -0400
commitcd172b2d5ed1ff486eab399e4da5af8315cddc8b (patch)
treedefac04445f8b4a9e933132aada4dba56c76285b
parent8d6602547bc7beb39652a35a1cfdddc250f683ff (diff)
downloadlibrambutan-cd172b2d5ed1ff486eab399e4da5af8315cddc8b.tar.gz
librambutan-cd172b2d5ed1ff486eab399e4da5af8315cddc8b.zip
fixed the FIFO bug, tx/rx now seems stable and ready for integration.
-rw-r--r--core/usb/usb.c10
-rw-r--r--core/usb/usb_callbacks.c2
2 files changed, 8 insertions, 4 deletions
diff --git a/core/usb/usb.c b/core/usb/usb.c
index f20f144..da0f37a 100644
--- a/core/usb/usb.c
+++ b/core/usb/usb.c
@@ -402,7 +402,8 @@ uint8 usbReceiveBytes(uint8* recvBuf, uint8 len) {
int i;
for (i=0;i<len;i++) {
- recvBuf[i] = (uint8)(vcomBufferRx[(recvBufOut++)%VCOM_RX_EPSIZE]);
+ recvBuf[i] = (uint8)(vcomBufferRx[recvBufOut]);
+ recvBufOut = (recvBufOut + 1) % VCOM_RX_EPSIZE;
}
maxNewBytes += len;
@@ -412,9 +413,12 @@ uint8 usbReceiveBytes(uint8* recvBuf, uint8 len) {
void usbSendHello(void) {
char* myStr = "hello!";
- uint8 thisVal = 48 + usbBytesAvailable();
+ uint8 bufin = 48 + recvBufIn;;
+ uint8 bufout = 48 + recvBufOut;
+
char *line = "\n";
- while(usbSendBytes(&thisVal,1) == 0);
+ while(usbSendBytes(&bufin,1) == 0);
+ while(usbSendBytes(&bufout,1) == 0);
while(usbSendBytes((uint8*)line,1) == 0);
uint8 recv[64];
diff --git a/core/usb/usb_callbacks.c b/core/usb/usb_callbacks.c
index 1fb73d5..f4c491b 100644
--- a/core/usb/usb_callbacks.c
+++ b/core/usb/usb_callbacks.c
@@ -73,7 +73,7 @@ void vcomDataRxCb(void) {
PMAToUserBufferCopy(&vcomBufferRx[recvBufIn],VCOM_RX_ADDR,tailBytes);
PMAToUserBufferCopy(&vcomBufferRx[0], VCOM_RX_ADDR,remaining);
- recvBufIn += (newBytes % VCOM_RX_EPSIZE);
+ recvBufIn = (recvBufIn + newBytes ) % VCOM_RX_EPSIZE;
}
maxNewBytes -= newBytes;