Sign in

username:

password:



Not a member?

Search piclist



Search tips

Subscribe to piclist



piclist by Keywords

12F675 | 16F628 | 16F84 | 16f877 | 16F877A | 16F88 | 18F458 | ADC | AVR | Bootloader | CAN | CCS | CRC | EAGLE | EEPROM | ICD | ICSP | IDE | JDM | LED | Macros | Microchip | MPLAB | PCB-CAD | PIC10F | Pic12f675 | PIC16F84 | PIC16F84A | PIC16F877 | PIC18 | PIC18F452 | PicBasic | PICC | PICSTART | PWM | RS-485 | RS232 | SMT | SPI | UART | USART | USB | Wireless | Wisp628 | Xilinx

Ads

Discussion Groups

See Also

DSPFPGAElectronics

Discussion Groups | Piclist | mplab and eeprom data area

A discussion group for the PICMicro microcontroller. Also called the Microchip PIC, this list is dedicated to the use and abuse of this fine, simple, microcontroller. Close to topic posts are welcome, ie. general electronics.

mplab and eeprom data area - el_gringo69uk - Mar 5 16:49:00 2003

I,m having a lot of fun on a 16F84 project of mine which relies on
data stored in the eeprom memory.
Question : how do I predefine whats stored in the eeprom area?
That is, as part of the .asm file. Or does it need to be saved in a
seperate file. I am using ICPROG to program my PIC, hopefully it will
recognise the extra data.
Someone else told me to use the org command at the eeprom address, but
I can't find the address in the 16F84 datasheet.
Thanks in advance,
Texy





(You need to be a member of piclist -- send a blank email to piclist-subscribe@yahoogroups.com )


Re: mplab and eeprom data area - GOKHAN OZCAN - Mar 5 18:11:00 2003

Hi!

ORG 2100H

DATA 0x06 ; Address 0
DATA 0x02
DATA 0x02
DATA 0x04
DATA 0x03

Hope it will be helpfull
--
Best Regards
Gökhan ÖZCAN -----Original Message-----
From: "el_gringo69uk" <>
To:
Date: Wed, 05 Mar 2003 21:49:34 -0000
Subject: [piclist] mplab and eeprom data area

> I,m having a lot of fun on a 16F84 project of mine which relies on
> data stored in the eeprom memory.
> Question : how do I predefine whats stored in the eeprom area?
> That is, as part of the .asm file. Or does it need to be saved in a
> seperate file. I am using ICPROG to program my PIC, hopefully it will
> recognise the extra data.
> Someone else told me to use the org command at the eeprom address, but
> I can't find the address in the 16F84 datasheet.
> Thanks in advance,
> Texy > ------------------------ Yahoo! Groups Sponsor
> ---------------------~-->
> Get 128 Bit SSL Encryption!
> http://us.click.yahoo.com/LIgTpC/vN2EAA/xGHJAA/dN_tlB/TM
> ---------------------------------------------------------------------~-
> >
>
> to unsubscribe, go to http://www.yahoogroups.com and follow the
> instructions
>
>



______________________________
Stellaris® MCU Family: New Parts, New Package, New Price.


(You need to be a member of piclist -- send a blank email to piclist-subscribe@yahoogroups.com )

Re: mplab and eeprom data area - el_gringo69uk - Mar 7 3:39:00 2003

--- In , "GOKHAN OZCAN" <988936@s...> wrote:
> Hi!
>
> ORG 2100H
>
> DATA 0x06 ; Address 0
> DATA 0x02
> DATA 0x02
> DATA 0x04
> DATA 0x03
>
> Hope it will be helpfull
> --
> Best Regards
> Gökhan ÖZCAN Yes - thankyou - that worked a treat!
Texy




(You need to be a member of piclist -- send a blank email to piclist-subscribe@yahoogroups.com )