Posted on May 17, 2011 at 13:17Hi all, Has anyone had the Virtual Com Port demo (3.0.1) working with the STM3210E-Eval board and Rowley Crossworks v2.0? Unfortunately I'm using vista so the USB snoop tools don't work for me - so I have no idea at wh...
Posted on May 17, 2011 at 13:15Well, after a few hours of porting one of our simpler projects over from 2.0.3, my time and effort resulted in.... Build active project �? 1.1 seconds �? 1 error Building “doodad42_v1� in configuration “Dev_...
Posted on May 17, 2011 at 13:12Resolved! I made the fatal mistake of accidentally writing sizeof(buffer) instead of countof(buffer). Instead of an incoming buffer of 200 bytes, I ended up with 800. We do it that way because our buses utilise u8, u16...
Posted on May 17, 2011 at 13:12Easy peasy... vu16 *CalConstantLo = (vu16*)0x08001FFFE; The major down side of this is that the compiler won't reserve that area of memory for that variable. The method you've given below is an extension added by Keil ...
Posted on May 17, 2011 at 13:10Hi, for the past few months I've been implementing multi processor comms on a single board with 12 (yep, twelve) STM32F103's. We use SPI because we can get up to 18Mbit out of it. Single master, 11 slaves. One of the p...