#include <REGX51.H> void delay(unsigned int value); void main() { while(1) { P1_0 = ~P1_0; delay(10000);
P1_1 = ~P1_1; delay(40000);
P2_0 = ~P2_0; delay(80000);
P2_1 = ~P2_1; delay(120000);
} }
void delay(unsigned int value) { unsigned int i,j; for(i=0;i<65535;i++); for(j=0;j<value;j++); }
I cant able to fuse the code in chip(p89v51rd2) using flash magic. It always diplay like "reset device to ISP mode now". Kindly help me regarding this.
Are you just bored, or why do you run around making random posts?
How clever is it to have a loop with loop variable j, that all the time gets "incremented" to j=k+1? So exactly how many iterations does the loop do depending on the size of k in relation to the contents of "value"?
its the processor speed constant. it is very clever because you dont need to change the loop when you change the processor. just change the "k"onstant value. i have lots of code improvement hints at www.saralamcodingstandards.com/theverybest
But that "clever" constant is incorrectly placed, so it doesn't do what you claim it to do.
And there are still no side effects generated by the function, so the compiler can still throw away everything.