Sign in

username:

password:



Not a member?

Search m68hc11



Search tips

Subscribe to m68hc11



m68hc11 by Keywords

27c256 | 4K81H | 68HC11A1 | 68HC11P1 | 68hc24 | 68HC711E9 | 68HC811 | 8255 | A2D | ADC | ADC12138 | Am85C30 | BRCLR | Buffalo | CMOS | EEPROM | EPROM | Ethernet | EVB | EVBU | HC11E1 | HC11E9 | HC711E9 | Horray | ImageCraft | IRQ | Keypad | LCD | MC68HC11D0FN | MC68HC11E1CFU3 | MC68HC11F1 | MC68HC711E9 | MC68HC711E9CFN2 | Microcore11 | Microstamp11 | Minikit | NVRAM | PSD | PSD8xx | PSD9xx | PT1000 | RS232 | RTS | RXD | SPI | SRAM | TXD | Watchdogs | XIRQ


Ads

Discussion Groups

See Also

DSPFPGAElectronics

Discussion Groups | | (no subject)

(no subject) - Mahesh Chandra - May 1 3:14:00 2002


hi list
i am going to put one question .
when we program a eprom,if size of eprom is grater than code ,what
happen to blank space.somebody told me that if space will be blank your
system will hang. I programed chip but never happened like this. can
anybody clear this doubt ?
regards
maheh





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


Re: (no subject) - Tony Papadimitriou - May 1 3:48:00 2002

Given that memories can only store values (and do not have an
uninitialized state), any non-programmed memory location will
undoubtedly contain some value (normally, for FLASH or EEPROM, this
will be the erased-state value for the particular memory, usually
$FF).

So, now your question can be asnwered as if it were: What will be the
effect on my program if there is extra unused code/data (which happens
to be all $FF values) around the useful code/data?

None!

----- Original Message -----
From: Mahesh Chandra <>
To: <>
Sent: Wednesday, May 01, 2002 11:14 AM
Subject: [m68HC11] (no subject) > when we program a eprom,if size of eprom is grater than code
,what
> happen to blank space.somebody told me that if space will be blank
your
> system will hang. I programed chip but never happened like this.
can
> anybody clear this doubt ?

> maheh


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


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

Re: (no subject) - Robert Smith - May 1 5:28:00 2002

See below --

--- Avoid computer viruses, Practice safe hex ---

-- Specializing in small, cost effective
embedded control systems -- Robert L. (Bob) Smith
Smith Machine Works, Inc.
9900 Lumlay Road
Richmond, VA 23236 804/745-1065
----- Original Message -----
From: "Mahesh Chandra" <>
To: <>
Sent: Wednesday, May 01, 2002 4:14 AM
Subject: [m68HC11] (no subject) >
> hi list
> i am going to put one question .
> when we program a eprom,if size of eprom is grater than code ,what
> happen to blank space.

The EPROM must be erased before you can program it. Windowed parts must be
erased by a UV light source, OTP parts come in the erased state. Therefore
every memory location contains binary ones ($FF).

When you program, the locations specified in your program (S19) file will be
changed to the specified program data in the S records. Locations that are
not specified in your program file will not be changed, therefore all
unprogrammed locations will remain in the erased state and contain $FF.

>somebody told me that if space will be blank your system will hang.

That statement does not make any real sense. I assume that your program is
correct and does not try to execute in the erased ($FF) area. But, of
course, if your program attempts to jump into the erased area it will surely
fail eventually.

> I programed chip but never happened like this. can
> anybody clear this doubt ?

If your program does not exactly fit the available EPROM space, then the
unused area will be left in the erased ($FF) state. If your program is
correct, it should never access the unused EPROM area and, therefore, that
area will not affect the operation of the program.

> regards
> maheh > To unsubscribe from this group, send an email to:





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

Re: (no subject) - Author Unknown - May 1 6:17:00 2002

There is no problem with not filling the whole eprom as long as you do
program the reset and interrupt vectors, otherwize it may hang as it does
not know were to start or if a interrupt does happen it will also hang.

My mc68hc711 has eprom from d000 to ffff the interupt and reset vectors are
at ffd6 to ffff
the program code is from d000 to f51b. so f51c to ffd5 are not used.

I could use two prog commands but to make my life simpler I just type "prog
d000 ffff". At 01:44 PM 5/1/2002 +0530, you wrote:

>hi list
> i am going to put one question .
> when we program a eprom,if size of eprom is grater than code ,what
>happen to blank space.somebody told me that if space will be blank your
>system will hang. I programed chip but never happened like this. can
>anybody clear this doubt ?
>regards
>maheh >
>
>To unsubscribe from this group, send an email to:




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