Search found 2 matches

by cocojack
Wed Dec 19, 2012 7:05 pm
Forum: V-USB
Topic: usbFunctionWrite doesn't get called
Replies: 1
Views: 3368

Re: usbFunctionWrite doesn't get called

I think i found the mistake, the tutorial said " argv[2], strlen(argv[2])+1," i wanted to reply a char[] and argv is a **char .. so I changed strlen(argv[2])+1, to strlen(inputbuffer)+1, and it seemed to be wrong. Now I changed this to sizeof(inputbuffer)+1 and for some reason this works n...
by cocojack
Wed Dec 19, 2012 6:01 pm
Forum: V-USB
Topic: usbFunctionWrite doesn't get called
Replies: 1
Views: 3368

usbFunctionWrite doesn't get called

Good evening, at first i want to appologize, if my english is not the very best, its not my navie language. I already posted my Problem on a german - speaking board, but it seems noone has a clue about the misake i made. Mikrocontroller.net I followed the V-USB Tutorial on m and accomplished part 1-...