Вы находитесь на странице: 1из 1

Creating New Library

Page 1 of 1

Creating New Library

Tutorials>CreatingNewLibrary>

Creating New Library


mikroC PRO for PIC allows you to create your own libraries. In order to create a library in mikroC PRO for PIC follow the steps bellow:
1. Create a new source file, see Managing Source Files
2. Save the file in one of the subfolders of the compiler's Uses folder:
DriveName:\Program Files\Mikroelektronika\mikroC PRO for PIC\Uses\P16\
DriveName:\Program Files\Mikroelektronika\mikroC PRO for PIC\Uses\P18\

3.
4.

5.
6.

If you are creating library for PIC16 MCU family the file should be saved in P16 folder.
If you are creating library for PIC18 MCU family the file should be saved in P18 folder.
If you are creating library for PIC16 and PIC18 MCU families the file should be saved in both folders.
Write a code for your library and save it.
Add __Lib_Example file in some project, see Project Manager. Recompile the project.
If you wish to use this library for all MCUs, then you should go to Tools Options Output settings, and check Build all files
as library box.
This will build libraries in a common form which will work with all MCUs. If this box is not checked, then library will be built for
selected MCU.
Bear in mind that compiler will report an error if a library built for specific MCU is used for another one.
Compiled file __Lib_Example.mcl should appear in ...\mikroC PRO for PIC\Uses\ folder.
Open the definition file for the MCU that you want to use. This file is placed in the compiler's Defs folder:
DriveName:\Program Files\Mikroelektronika\mikroC PRO for PIC\Defs\

and it is named MCU_NAME.mlk, for example 16F887.mlk


7. Add the the following segment of code to <LIBRARIES> node of the definition file (definition file is in XML format):
<LIB>
<ALIAS>Example_Library</ALIAS>
<FILE>__Lib_Example</FILE>
<TYPE>REGULAR</TYPE>
</LIB>

8. Add Library to mlk file for each MCU that you want to use with your library.
9. Click Refresh button in Library Manager
10. Example_Library should appear in the Library manager window.

Multiple Library Versions


Library Alias represents unique name that is linked to corresponding Library .mcl file. For example UART library for 16F887 is different
from UART library for 18F4520 MCU. Therefore, two different UART Library versions were made, see mlk files for these two MCUs. Note
that these two libraries have the same Library Alias (UART) in both mlk files. This approach enables you to have identical representation of
UART library for both MCUs in Library Manager.

Related topics: Library Manager, Project Manager, Managing Source Files

Copyright (c) 2002-2012 mikroElektronika. All rights reserved.


What do you think about this topic ? Send us feedback!

Want more examples and libraries?


Find them on

mk:@MSITStore:C:\Users\Public\Documents\Mikroelektronika\mikroC%20PRO%20for%...

4/2/2015

Вам также может понравиться