Ich habe mir nochmal die aktuelle Firmware aus dem
SVN gezogen. Hab mich da mal in die Sourcen eingelesen und ich glaube ja fast dass es die port-funktionen noch gar nicht gibt ...
in der io.c z.B. steht :
Code:
uint8_t io_set_port_direction_out(uint8_t port,uint8_t mask)
{
/* TODO
switch (port)
{
case 1: DDRB = mask; break;
case 2: DDRC = mask; break; // PC7 = /CS (output) - do we need to mask this ?
case 3: DDRD = mask; break;
case 4: DDRE = mask; break; // PE4 = INT4 (input) - do we need to mask this ?
case 5: DDRF = mask; break;
default: return RSP_UNKOWN_PIN;
}
*/
return RSP_OK;
}
Welche Firmware hast du denn ?
Ich habe sie heute mit "
svn export http://octopususb.googlecode.com/
svn/trunk" geholt ...
Ist das falsch ?