User Activity

I am trying to cross compile a simple helloworld.cpp program.   #include <iostream> int main(int argc, char** argv) { std::cout << "Hello World" << std::endl; return 0; }   The makefile is   PROG = helloworld SRCS = helloworld.cpp CLEANFILES = ...
My setup is I have timer 15 triggering ADC1 at a fixed frequency - say 1MHzI have 4x over sample ratio set and the single trigger for all over sampled conversions set so I only get 1 DMA transfer for per 4 samples.So with 4x over sample and 1MHz tri...
Kudos given to