When the microcontroller just starts settings need to be ini
When the microcontroller just starts, settings need to be initialized. Write down the procedure of initialization.
Solution
Answer-
Here is step by step procedure how any microcontroller starts-
Description-
The linker links in a \'start up\' file. This sets up the stack pointer if you have one and initialises ram, globels and a few other things. It then calls \'main()\'.
You can open and edit the start up file or just look at the code to see what it does. It is usually in the \'lib/src\' directory.
Below is one of the Mplab_C30 start up files.
