Posted on May 17, 2011 at 15:03Hi, STVD is editor and debugger, what would you expect from it concerning C? Btw. once the program is linked, you have access to lot of standard C functions from stdlib.h, string.h etc.... I'd recommend you to check th...
Posted on May 17, 2011 at 13:38Well, serial flash and NAND memories do not expose the data in the memory map => if you want to run code from it, you need to copy the content eg. to RAM and run it there. While NOR flash does, so you can run code from...
Posted on May 17, 2011 at 13:36Hello bernat, the ADC uses serial conversion of channels, thus needs only one DMA channel (DMA1_Channel1). Setup the DMA in circular mode, 2*8 items, and instead of ADC interrupt, use HalfTransfer and TransferComplete ...
Posted on May 17, 2011 at 13:36Hello Peter, I strongly discourage you to use the function I2C_CheckEvent, because as soon as there is some additional flag present in I2C->SR1 or SR2, the function will fail even if the wanted bit is there. Better che...