<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html; charset=ISO-8859-1"
 http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Ok thanks stef, i've been experimenting a little with the logs, there
was a small error/issue with the parse1.awk script you sent me. I don't
know if you have encountered this but around line 113 there is an if
statement along the lines of:<br>
<font face="Console"><br>
if ($5 == "0x0000002]")</font><br>
<br>
this fails because of what I suspect is an end of line character in $5,
so i replaced it with:<br>
<br>
<font face="Console">if (index($5, "0x0000002]") &gt; 0) endpoint =
"BULK_OUT"</font><br>
<br>
and so on for the following values. I'm not very good with awk so I
don't know if this is the best way of fixing this but it works for now.<br>
<br>
After some playing I think I have the CCD settings right and the motor
seems to be working so I havent really changed that much. I also think
the GPIO settings are right which leads me to believe the DAC is the
main issue at the moment. <br>
<br>