Question
time management stm32l discovery
Posted on July 29, 2014 at 18:45
Hi
I am working for
a project with
the
stm32ldiscovery
but
I have a problem
:
the Delay function
that
I implemented
in my program
is not working
void Delay(uint32_t nTime) {
TimingDelay = nTime; while (TimingDelay != 0); }void TimingDelay_Decrement(void) {
if (TimingDelay !=0x00) { TimingDelay--; } }Certainly
omit
some
initialization operation
necessary
for
its proper functioning
Can anyone
help me?
Thank you
.