NEW: Learning electronics? Ask your questions on the new Electronics Questions & Answers site hosted by CircuitLab.
Support Forum » i think i found a mistake in the USB NerdKits Guide
February 03, 2011 by celltoolz |
NK003USB__6604nmee2ymf5ur9trug.pdf Page: 53 (change the word 'method' to 'function') sorry if i'm wrong, lol.. The next function we are going to write is the main() function. Every program you write in C has to have a main() function. This is the function which automatically runs when you start your microcontroller. From the main METHOD you can do whatever you want, including calling other functions. From our main METHOD we will be doing computations, using the METHODS we already wrote, and writing to the LCD. FIX: The next function we are going to write is the main() function. Every program you write in C has to have a main() function. This is the function which automatically runs when you start your microcontroller. From the main FUNCTION you can do whatever you want, including calling other functions. From our main FUNCTION we will be doing computations, using the FUNCTIONS we already wrote, and writing to the LCD. Hope this helps. Also this is pretty cool thanks for setting this up for us beginners. |
---|---|
February 11, 2011 by BobaMosfet |
Ahhhhh.... we can see the writers of the document are object oriented..... :D celltoolz is correct. BM |
February 12, 2011 by bretm |
Function, method, procedure, subroutine...they're all just different names for essentially the same thing. You may argue that a method is object-oriented nomenclature but that's just common usage, not an absolute definition. When the compiler gets done with it the distinctions all melt away into push, call, and ret instructions. |
Please log in to post a reply.
Did you know that interrupts can be used to trigger pieces of code when events happen? Learn more...
|