Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Computer Graphics Expert

MPLAB C18 TOOL (MC18)

The MPLAB C18 compiler was designed as a full featured ASNI- compliant C - complier for the PIC18 family of 8bits MCUs. MC18 compiler is integrated with component of Microchip's Integrated Development Environment (IDE) enabling source level debugging with MPLAB ICD 2 in -circuit debugger, MPLAB REAL ICE emulator and MPLAB SIM simulator.

Starting a new Project on the MPLAB IDE software:

• On the toot bar , Clicked Project -> Project Wizard , clicked next
• Select device i.e PIC18F452, if it isn't already selected, clicked next
• Selected Microchip C18 Toolsuite. some items in Toolsuite Contents were with a red X, I selected them and clicked Browse.

The default locations for the files are:

MPASM Assembler - C:\MCC18\mpasm\mpasmwin.exe
MPLINK Object Linker - C:\MCC18\bin\mplink.exe (I ensure did not select _mplink.exe)
MPLAB C18 Compiler - C:\MCC18\bin\mcc18.exe
MPLIB Librarian - C:\MCC18\bin\mplib.exe

• Clicked Browse and selected the name and location of my new project
• I did not add any existing files to the project since, it is been made from scratch
• Once the project has beed created, I was able to see the empty project folders in the project window

Hence, the Linker, Lib and source header files are now added to the project
Opened a file, add the source and header files to the PIC and saved it: by Clicking File -> New .
Then saved as dot c (xxx.c) and (xxx.h) respectively for each interface codes .

The C18 compiler provides a header file has the definitions for all ports and pins for each microcontroller it supports. The default directory for these files is C:\MCC18\h .The header file below have been used for this project

#include

The Delay10KTCx() function and other delay functions are documented in hlpC18Lib.chm in the C18 documentation directory (see above). You will need to add the following line to the top of your file:

#include

The datasheet states that each port has three registers for its operation. These registers are as follows:

• TRIS register (for data direction register 0 - output, 1 - input)
• PORT register ( to reads the levels on the pins of the device)
• LAT register ( for output latch)

In other words, the PORT register are used for input operations, LAT register for output operations, while the TRIS register are used to select between input and output on each individual pin.

For example: To control an LED using PORT A Pin 1, we need to first set it to be output using the TRIS register and then be toggled on and off using the LAT register.

A #define statement makes the code much more readable. Usually added after the #pragma config statements:
An example of flashing led is stated below:
#pragma config FOSC = INTOSCIO_EC
#pragma config WDT = OFF // Disable watchdog timer

#define LEDPin LATAbits.LATD1 // Define LEDPin as PORT A Pin 1
#define LEDTris TRISAbits.TRISD1 // Define LEDTris as TRISA Pin 1

The Flash_ Led prototype, I have made PORTA Pin 1 an output and set it HIGH:
void flash_led (void)
LEDTris = 0; // Set LED Pin data direction to OUTPUT
LEDPin = 1; // Set LED Pin
The last step is to add a loop that toggles the pin at an interval:
while(1)
{
LEDPin = ~LEDPin; // Toggle LED Pin
Delay10KTCYx(25);
/* Delay 250K cycles (1 second at 1MHz since each instruction takes 4 cycles) */
}
To test it on the microcontroller:
I download the code in to the PIC via In circuit debugger 2.
• Clicked Project -> Build All or button on the tool bar
• Clicked Programmer -> Program
• If the above two steps were successful, Click Programmer -> Release From Reset
You should now see your LED blinking on and off about once per second.

Now leys look at some I2C codes example is shown below: #include #include

#define SDA P0_0
#define SCL P0_1

void I2CInit()
{
SDA = 1;
SCL = 1;
}

void I2CStart()
{
SCL = 1;
SDA = 0;
SCL = 0;
}
void I2CRestart()
{
SCL = 0;
SDA = 1;
SCL = 1;
SDA = 0;
}
void I2CStop()
{
SCL = 0;
SDA = 0;
SCL = 1;
SDA = 1;
}

Computer Graphics, Computer Science

  • Category:- Computer Graphics
  • Reference No.:- M9523887

Have any Question?


Related Questions in Computer Graphics

Question a describe the architecture of simple raster

Question : a) Describe the architecture of simple raster graphics system? b) Explain raster scan display processor?

The problemsit is strongly recommended that you tackle the

The problems: It is strongly recommended that you tackle the following tasks in a modular way -- a separate standalone function for each task. Draw a rectangle as a Rectangle and as a Polygon. Make the lines of the Polyg ...

The problemyou are to search a bitmap in rgb format and

The problem: You are to search a bitmap in RGB format and count the number of pixels which match a set of colors. The bitmap will be 1024 by 1024 pixels for the purposes of explaining this problem. The set of colors will ...

The saffir-simpson hurricane scale classifies hurricanes

The Saffir-Simpson Hurricane Scale classifies hurricanes into five categories numbered 1 through 5. Write an application named Hurricane that outputs a hurricane's category based on the user's input of the wind speed. CA ...

Please read my question if you post copy and pasted code

Please read my question if you post copy and pasted code you will get a negative review. This is java In this graphical program, you are going to simulate arcade car racing game. You need a single player that is movable ...

You have a program draw a rectangle on the screen and allow

You have a program draw a rectangle on the screen and allow the user to change the color/size of the rectangle. The program will store in the browser the settings of the color/size so that upon revisiting the page, the v ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As