I need to initialize a fixes size arrays quite often, like so:
for( uint16_t q=0; q<SIZE; q++ )
array[q]=value;
Array is defined as float array[SIZE];
Is there a nicer way of doing this, replacing with a macro or similar?
p.s.
Not allowed to use mem___
calls.