• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.gitignoreH A D09-Jan-201438 65

MakefileH A D03-May-2022810 3625

Makefile.vcH A D17-May-2013687 2717

READMEH A D30-Jun-20131.8 KiB4734

StdAfx.hH A D23-Jan-20130 10

adprog.cH A D08-Jan-201411.8 KiB326179

adprog.hH A D23-Jan-20131.8 KiB4813

lpc21isp.cH A D09-Jan-201494.3 KiB2,5101,484

lpc21isp.cbpH A D08-Jan-20131.5 KiB5857

lpc21isp.hH A D08-Jan-20149.8 KiB304198

lpcprog.cH A D08-Jan-201483 KiB1,7181,332

lpcprog.dspH A D08-Jan-20133.5 KiB10186

lpcprog.dswH A D08-Jan-2013537 3019

lpcprog.hH A D08-Jan-20145.8 KiB14570

lpcterm.cH A D08-Jan-20144.2 KiB13985

lpcterm.hH A D23-Jan-20131.5 KiB449

README

1/******************************************************************************
2
3Project:           Portable command line ISP for NXP LPC family
4                   and Analog Devices ADUC70xx
5
6Filename:          README
7
8Compiler:          Microsoft VC 6/7, Microsoft VS2008, Microsoft VS2010,
9                   GCC Cygwin, GCC Linux, GCC ARM ELF
10
11Author:            Martin Maurer (Martin.Maurer@clibb.de)
12
13Copyright:         (c) Martin Maurer 2003-2013, All rights reserved
14Portions Copyright (c) by Aeolus Development 2004 http://www.aeolusdevelopment.com
15
16    This file is part of lpc21isp.
17
18    lpc21isp is free software: you can redistribute it and/or modify
19    it under the terms of the GNU Lesser General Public License as published by
20    the Free Software Foundation, either version 3 of the License, or
21    any later version.
22
23    lpc21isp is distributed in the hope that it will be useful,
24    but WITHOUT ANY WARRANTY; without even the implied warranty of
25    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26    GNU Lesser General Public License for more details.
27
28    You should have received a copy of the GNU Lesser General Public License
29    and GNU General Public License along with lpc21isp.
30    If not, see <http://www.gnu.org/licenses/>.
31*/
32
33
34To compile with microsoft visual studio:
35- Open console. Execute bat file from your installation, e.g.
36  "c:\Program Files\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat"
37- Go to directory where you unpacked the source.
38- Run
39  nmake /f Makefile.vc clean all
40
41To compile with gcc (linux, cygwin, ...)
42- Open shell / terminal windows
43- Run (if you want to use make and gcc)
44  make -f Makefile.gnu clean all
45- Run (if you want to use gmake and gcc)
46  gmake -f Makefile.gnu clean all
47