[Coco] Drivewire mixed results...

Chuck Youse cyouse at serialtechnologies.com
Thu Sep 25 08:19:16 EDT 2008


On Thu, 2008-09-25 at 05:45 -0500, Boisy Pitre wrote:

> There's nothing proprietary about DriveWire.  If you go to http://www.cloud9tech.com/ 
>   and click on the support page, you'll find  the DriveWire  
> Specification document under the "Tech Notes and White Papers"  
> heading.  This document specifies, in detail, how the DriveWire  
> protocol works.  With this information, you could write your own  
> server in any language for any development environment you would like.
> 

This sample code you provide for the checksum calculation is ambiguous:

int calChecksum(char *ptr, int count)
{
     short Checksum = 0;
     while(--count)
     {
          Checksum += *(ptr++);
     }
     return (Checksum);
}





More information about the Coco mailing list