al78
Newbie level 4

isp1581 setup
Hello all,
I've asked a question one week ago and I haven't answer yet. Maybe I was not clear enough with my question, so I will ask You again:
The problem is, that when I receive a GET_DESCRIPTOR device request I should respond to the host with the first 8 bytes from the device descriptor. I'm using the sample from Philips for the ISP1581 chip. The function is WriteControlEndpoint:
WORD ISP1581_WriteControlEndpoint(BYTE * buf, WORD len)
{
WORD i;
unsigned short c,p;
WORD32 q;
ISP1581_SetEPIndex(EPINDEX4CONTROL_IN);
usb->buffer_length.DATACOUNT = len;
/* Write Buffer */
for(i=0; i<len; i=i+2, buf++ )
{
c = *buf;
buf++;
c += (unsigned short)(*buf << 8);
usb->data_port.DATAPORT = c;
}
return len;
}
The problem is, that in my oppinion the host doesn't receive the data which I've sent to him, because when I read from the DATACOUNT and DATAPORT data I'm receiving only zeroes.
Does anybody has any idea why I can't write or read to the registers?
(just for the protocol, there are registers from which I'm reading/writing successfuly)
Thank you all in advance,
Best reagrds,
Al
Hello all,
I've asked a question one week ago and I haven't answer yet. Maybe I was not clear enough with my question, so I will ask You again:
The problem is, that when I receive a GET_DESCRIPTOR device request I should respond to the host with the first 8 bytes from the device descriptor. I'm using the sample from Philips for the ISP1581 chip. The function is WriteControlEndpoint:
WORD ISP1581_WriteControlEndpoint(BYTE * buf, WORD len)
{
WORD i;
unsigned short c,p;
WORD32 q;
ISP1581_SetEPIndex(EPINDEX4CONTROL_IN);
usb->buffer_length.DATACOUNT = len;
/* Write Buffer */
for(i=0; i<len; i=i+2, buf++ )
{
c = *buf;
buf++;
c += (unsigned short)(*buf << 8);
usb->data_port.DATAPORT = c;
}
return len;
}
The problem is, that in my oppinion the host doesn't receive the data which I've sent to him, because when I read from the DATACOUNT and DATAPORT data I'm receiving only zeroes.
Does anybody has any idea why I can't write or read to the registers?
(just for the protocol, there are registers from which I'm reading/writing successfuly)
Thank you all in advance,
Best reagrds,
Al