So I want to use the delay() in the toolchain.
I have used
#include<stdio.h>
#include<stdlib.h>
for my code.
It still gives me the error that delay() is not defined.
Sorry if I posted on the wrong spot.
Thank you for taking your time.
So delay() does not currently exist in the toolchain; but I will be sure to add it asap! For now; the perferred method for delays is to either use a loop, use the hardware timers, or use boot_WaitShort, shown below, which delays for ~10ms when called:


Code:
void delay(unsigned int amount) {
    while (amount--) {
        boot_WaitShort();
    }
}
MateoConLechuga wrote:
So delay() does not currently exist in the toolchain; but I will be sure to add it asap! For now; the perferred method for delays is to either use a loop, use the hardware timers, or use boot_WaitShort, shown below, which delays for ~10ms when called:


Code:
void delay(unsigned int amount) {
    while (amount--) {
        boot_WaitShort();
    }
}


Thank you so much.
  
Register to Join the Conversation
Have your own thoughts to add to this or any other topic? Want to ask a question, offer a suggestion, share your own programs and projects, upload a file to the file archives, get help with calculator and computer programming, or simply chat with like-minded coders and tech and calculator enthusiasts via the site-wide AJAX SAX widget? Registration for a free Cemetech account only takes a minute.

» Go to Registration page
Page 1 of 1
» All times are UTC - 5 Hours
 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum

 

Advertisement