Difference between revisions of "8051 Keil Setup"
Line 1: | Line 1: | ||
[[Category:Starter 8051]] | [[Category:Starter 8051]] | ||
− | In this tutorial we see how to setup Keil4 for generating .hex file. | + | In this tutorial we see how to setup Keil4 for generating .hex file.<br> |
Keil software can be downloaded from this [https://www.keil.com/download/product/ link].<br> | Keil software can be downloaded from this [https://www.keil.com/download/product/ link].<br> | ||
Download and install the Keil C51 for 8051.<br> | Download and install the Keil C51 for 8051.<br> | ||
Line 39: | Line 39: | ||
− | + | <b>Step8:</b>Save the file as main.c<br> | |
− | <br> | + | |
[[FILE:8051_Keil_08.png]]<br> | [[FILE:8051_Keil_08.png]]<br> | ||
− | # | + | # Now we need to add the files to the project.<br> |
− | <br> | + | Click on |
[[FILE:8051_Keil_09.png]]<br> | [[FILE:8051_Keil_09.png]]<br> | ||
Revision as of 16:38, 17 May 2016
In this tutorial we see how to setup Keil4 for generating .hex file.
Keil software can be downloaded from this link.
Download and install the Keil C51 for 8051.
Keil Setup Steps
Step1: Open the Keil software and select the New Microvision project from Project Menu as shown below.
Step2: Browse to your project folder and provide the project name and save it.
Step3: Once the project is saved a new pop up “Select Device for Target” opens, Select the required 8051 series controller and click on OK.
- Atmel->AT89s52
- NXP->P89V51RD2
- Nuvoton-> W78E052D
Step4:Select Atmel->At89s52 and click OK.
Step5:8051 doesn't need the startup code, click on NO option to proceed.
Step6: Create a new file to write the program.
Step7: Type the code or Copy paste the below code snippet and save the file as main.c
- Now we need to add the files to the project.