Maker Pro
Maker Pro

mplab libaray

kingrosekhan123

Apr 14, 2013
19
Joined
Apr 14, 2013
Messages
19
can anyone tell me how to make own library in MPLAB and how to use.
because i'm so much tired to write many lines repeatedly.
please give me tutorial..

kingrosekhan123...
 

BobK

Jan 5, 2010
7,682
Joined
Jan 5, 2010
Messages
7,682
Have you tried the help in MPLAB?

Bob
 

BobK

Jan 5, 2010
7,682
Joined
Jan 5, 2010
Messages
7,682
Actually I have never created a library myself in MPLAB. I generally copy source code and modify it for the next project.

Bob
 

BobK

Jan 5, 2010
7,682
Joined
Jan 5, 2010
Messages
7,682
From a previous project, or find the code online.


Bob
 

gorgon

Jun 6, 2011
603
Joined
Jun 6, 2011
Messages
603
can anyone tell me how to make own library in MPLAB and how to use.
because i'm so much tired to write many lines repeatedly.
please give me tutorial..

kingrosekhan123...


Are you programming in assembler or C?

If you need to rewrite every time you use a bit of code, you should get your self a proper editor. One with possibility to open more the one file at the time, and good coppy/ paste commands.

If you want to make your own code files, the simplest way is to include the file in question in the program file you make.

If you want to make a multi source file system, you'll need to make a form of make file or linker command file, depending on what your program language is.
 
Top