Posted on May 17, 2011 at 13:11I don´t think it is a good ideia to have a Interrupt Handler that long. I always try to keep interrupts as short as possible. There a lot of techniques that help it. I don´t know much about your application, but a st...
Posted on May 17, 2011 at 13:10Quote:On 01-05-2009 at 14:54, Anonymous wrote: I have tried the typedef as in brunoalltest's post, however I get a 32 bit result with Ride7. Does the UMULL and SMULL work with inline assembler in Ride7? If so how do I ...
Posted on May 17, 2011 at 13:10I didn´t tested, but you need to work with long long casts. It is something like this. Code:typedef long long s64; // Just to follow the FWlib typedefs s64 a; s32 b; s32 c; a = (s64) b * (s64) c;
Posted on May 17, 2011 at 13:09I´m not an expert, but I´ve been working with isochronous tranfers too. I think this is really a limitation. :( But maybe you can save a few bytes if you downsize your control packet to 32 ou 16 bytes.[ This message ...