ill try i tommorow, but important is for me that it works with the ICD MPLAPS
see tomorrow
dirk
ill try i tommorow, but important is for me that it works with the ICD MPLAPS
see tomorrow
dirk
I don't think you will be able to run ICD2 without ICDDEFS.BAS which is required to reserve
ICD resources. Like any demo, there are limitations as compared to the full version.
You can however use the ICD2 as a device programmer with no problem.
I'm using the PB Pro demo with MPlab 8.0 using Mpasmwin and ICD2 and the Picdem 2 Plus(older version 2002). The only problem I had was a path problem. I'm using a 16F877 and it gave some message about finding the P16F877.inc file. I setup my path for PB pro and the mpasmwin directories but it didn't help. So for a temp solution, copied, then modified the 16F877.inc file with the full path. Works great now.
;************************************************* ***************
;* 16F877.INC *
;* *
;* Notice : Copyright (c) 2004 microEngineering Labs, Inc. *
;* All Rights Reserved *
;* Date : 03/12/04 *
;* Version : Demo *
;* Notes : *
;************************************************* ***************
NOLIST
ifdef PM_USED
LIST
include 'M16F87x.INC' ; PM header
device pic16F877, xt_osc, wdt_on, pwrt_on, lvp_off, protect_off
XALL
NOLIST
else
LIST
LIST p = 16F877, r = dec, w = -302
INCLUDE "C:\Program Files\Microchip\MPASM Suite\P16F877.INC" ; MPASM Header
__config _XT_OSC & _WDT_ON & _PWRTE_ON & _LVP_OFF & _CP_OFF
NOLIST
endif
LIST
Other than that the demo works fine and you will find that 31 commands is a big limitation. I liked the demo, so I order the full version today, hopefully MElabs are a fast shipping company.
Jerry
Bookmarks