LPC213xpower.pdf by Owen Mooney
2005-10-30 by Guillermo Prandi
Yahoo Groups archive
Index last updated: 2026-04-28 23:31 UTC
Thread
2005-10-30 by Guillermo Prandi
Hi, I just wanted to point out that there seems to be small bug in
the test code shown in the PDF:
switch(c) {
case 'b': PCON=1;
case 'c': PCON=1;
case 'd': UartOff();PCON=6;
case 'e': PCON=2;
case 'f': PCON=6;
}
should probably have been:
switch(c) {
case 'b': PCON=1; break;
case 'c': PCON=1; break;
case 'd': UartOff();PCON=6; break;
case 'e': PCON=2; break;
case 'f': PCON=6; break;
}
Guille2005-10-30 by Guillermo Prandi
I just wanted to add that the small "concept" bug does not affect the results of the test at all; it only affects the ability of the processor of returning to normal state with just an interrupt. Guille --- In lpc2000@yahoogroups.com, "Guillermo Prandi" <yahoo.messenger@m...> wrote:
>
> Hi, I just wanted to point out that there seems to be small bug in
> the test code shown in the PDF:
>
> switch(c) {
> case 'b': PCON=1;
> case 'c': PCON=1;
> case 'd': UartOff();PCON=6;
> case 'e': PCON=2;
> case 'f': PCON=6;
> }
>
> should probably have been:
>
> switch(c) {
> case 'b': PCON=1; break;
> case 'c': PCON=1; break;
> case 'd': UartOff();PCON=6; break;
> case 'e': PCON=2; break;
> case 'f': PCON=6; break;
> }
>
> Guille
>2005-10-30 by Guillermo Prandi
It seems I keep embarrasing myself... The code was never intended to wake up the processor on interrupt. for(;;); Never mind my mouth. Sorry for all the buzz... Guille --- In lpc2000@yahoogroups.com, "Guillermo Prandi" <yahoo.messenger@m...> wrote: > > I just wanted to add that the small "concept" bug does not affect the > results of the test at all; it only affects the ability of the > processor of returning to normal state with just an interrupt. > > Guille > > --- In lpc2000@yahoogroups.com, "Guillermo Prandi" > <yahoo.messenger@m...> wrote: > > > > Hi, I just wanted to point out that there seems to be small bug in
> > the test code shown in the PDF:
> >
> > switch(c) {
> > case 'b': PCON=1;
> > case 'c': PCON=1;
> > case 'd': UartOff();PCON=6;
> > case 'e': PCON=2;
> > case 'f': PCON=6;
> > }
> >
> > should probably have been:
> >
> > switch(c) {
> > case 'b': PCON=1; break;
> > case 'c': PCON=1; break;
> > case 'd': UartOff();PCON=6; break;
> > case 'e': PCON=2; break;
> > case 'f': PCON=6; break;
> > }
> >
> > Guille
> >
>2005-10-31 by Mukadder Ceyhan
Could you post or send me this pdf document please??
--- Guillermo Prandi
<yahoo.messenger@...> wrote:
> It seems I keep embarrasing myself... The code was
> never intended to
> wake up the processor on interrupt.
>
> for(;;);
>
> Never mind my mouth. Sorry for all the buzz...
>
> Guille
>
> --- In lpc2000@yahoogroups.com, "Guillermo Prandi"
> <yahoo.messenger@m...> wrote:
> >
> > I just wanted to add that the small "concept" bug
> does not affect
> the
> > results of the test at all; it only affects the
> ability of the
> > processor of returning to normal state with just
> an interrupt.
> >
> > Guille
> >
> > --- In lpc2000@yahoogroups.com, "Guillermo Prandi"
>
> > <yahoo.messenger@m...> wrote:
> > >
> > > Hi, I just wanted to point out that there seems
> to be small bug
> in
> > > the test code shown in the PDF:
> > >
> > > switch(c) {
> > > case 'b': PCON=1;
> > > case 'c': PCON=1;
> > > case 'd': UartOff();PCON=6;
> > > case 'e': PCON=2;
> > > case 'f': PCON=6;
> > > }
> > >
> > > should probably have been:
> > >
> > > switch(c) {
> > > case 'b': PCON=1; break;
> > > case 'c': PCON=1; break;
> > > case 'd': UartOff();PCON=6; break;
> > > case 'e': PCON=2; break;
> > > case 'f': PCON=6; break;
> > > }
> > >
> > > Guille
> > >
> >
>
>
>
>
>
__________________________________
Start your day with Yahoo! - Make it your home page!
http://www.yahoo.com/r/hs2005-11-01 by Guillermo Prandi
Mukadder, the file is right at the files section: http://f2.grp.yahoofs.com/v1/ALBmQwa9_kvKfAt5HjPsDrZjdT1SNwA_69FkDNrCL nSJcfIXPBD5ZP-9j0T9DWhp6qbj5824JjH2eeKe0JyctFYsZs7KhQZmYKml- Yhd/LPC213xpower.pdf Guille --- In lpc2000@yahoogroups.com, Mukadder Ceyhan <mukadder_c@y...> wrote:
>
> Could you post or send me this pdf document please??
>
> --- Guillermo Prandi
> <yahoo.messenger@m...> wrote:
>
> > It seems I keep embarrasing myself... The code was
> > never intended to
> > wake up the processor on interrupt.
> >
> > for(;;);
> >
> > Never mind my mouth. Sorry for all the buzz...
> >
> > Guille
> >
> > --- In lpc2000@yahoogroups.com, "Guillermo Prandi"
> > <yahoo.messenger@m...> wrote:
> > >
> > > I just wanted to add that the small "concept" bug
> > does not affect
> > the
> > > results of the test at all; it only affects the
> > ability of the
> > > processor of returning to normal state with just
> > an interrupt.
> > >
> > > Guille
> > >
> > > --- In lpc2000@yahoogroups.com, "Guillermo Prandi"
> >
> > > <yahoo.messenger@m...> wrote:
> > > >
> > > > Hi, I just wanted to point out that there seems
> > to be small bug
> > in
> > > > the test code shown in the PDF:
> > > >
> > > > switch(c) {
> > > > case 'b': PCON=1;
> > > > case 'c': PCON=1;
> > > > case 'd': UartOff();PCON=6;
> > > > case 'e': PCON=2;
> > > > case 'f': PCON=6;
> > > > }
> > > >
> > > > should probably have been:
> > > >
> > > > switch(c) {
> > > > case 'b': PCON=1; break;
> > > > case 'c': PCON=1; break;
> > > > case 'd': UartOff();PCON=6; break;
> > > > case 'e': PCON=2; break;
> > > > case 'f': PCON=6; break;
> > > > }
> > > >
> > > > Guille
> > > >
> > >
> >
> >
> >
> >
> >
>
>
>
>
> __________________________________
> Start your day with Yahoo! - Make it your home page!
> http://www.yahoo.com/r/hs
>2005-11-01 by Mukadder Ceyhan
i think the link you gave does not exist.
could you send the file to my e-mail?
regards.
--- Guillermo Prandi
<yahoo.messenger@...> wrote:
> Mukadder, the file is right at the files section:
>
>
http://f2.grp.yahoofs.com/v1/ALBmQwa9_kvKfAt5HjPsDrZjdT1SNwA_69FkDNrCL
>
nSJcfIXPBD5ZP-9j0T9DWhp6qbj5824JjH2eeKe0JyctFYsZs7KhQZmYKml-
> Yhd/LPC213xpower.pdf
>
> Guille
>
> --- In lpc2000@yahoogroups.com, Mukadder Ceyhan
> <mukadder_c@y...>
> wrote:
> >
> > Could you post or send me this pdf document
> please??
> >
> > --- Guillermo Prandi
> > <yahoo.messenger@m...> wrote:
> >
> > > It seems I keep embarrasing myself... The code
> was
> > > never intended to
> > > wake up the processor on interrupt.
> > >
> > > for(;;);
> > >
> > > Never mind my mouth. Sorry for all the buzz...
> > >
> > > Guille
> > >
> > > --- In lpc2000@yahoogroups.com, "Guillermo
> Prandi"
> > > <yahoo.messenger@m...> wrote:
> > > >
> > > > I just wanted to add that the small "concept"
> bug
> > > does not affect
> > > the
> > > > results of the test at all; it only affects
> the
> > > ability of the
> > > > processor of returning to normal state with
> just
> > > an interrupt.
> > > >
> > > > Guille
> > > >
> > > > --- In lpc2000@yahoogroups.com, "Guillermo
> Prandi"
> > >
> > > > <yahoo.messenger@m...> wrote:
> > > > >
> > > > > Hi, I just wanted to point out that there
> seems
> > > to be small bug
> > > in
> > > > > the test code shown in the PDF:
> > > > >
> > > > > switch(c) {
> > > > > case 'b': PCON=1;
> > > > > case 'c': PCON=1;
> > > > > case 'd': UartOff();PCON=6;
> > > > > case 'e': PCON=2;
> > > > > case 'f': PCON=6;
> > > > > }
> > > > >
> > > > > should probably have been:
> > > > >
> > > > > switch(c) {
> > > > > case 'b': PCON=1; break;
> > > > > case 'c': PCON=1; break;
> > > > > case 'd': UartOff();PCON=6; break;
> > > > > case 'e': PCON=2; break;
> > > > > case 'f': PCON=6; break;
> > > > > }
> > > > >
> > > > > Guille
> > > > >
> > > >
> > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> > __________________________________
> > Start your day with Yahoo! - Make it your home
> page!
> > http://www.yahoo.com/r/hs
> >
>
>
>
>
>
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com2005-11-01 by Daniel Gelbgras
Hi Mukadder, you may want to try http://groups.yahoo.com/group/lpc2000/files/LPC213xpower.pdf hth Daniel
----- Original Message -----
From: Mukadder Ceyhan
To: lpc2000@yahoogroups.com
Sent: Tuesday, November 01, 2005 3:16 PM
Subject: Re: [lpc2000] Re: LPC213xpower.pdf by Owen Mooney
i think the link you gave does not exist.
could you send the file to my e-mail?
regards.
--- Guillermo Prandi
<yahoo.messenger@...> wrote:
> Mukadder, the file is right at the files section:
>
>
http://f2.grp.yahoofs.com/v1/ALBmQwa9_kvKfAt5HjPsDrZjdT1SNwA_69FkDNrCL
>
nSJcfIXPBD5ZP-9j0T9DWhp6qbj5824JjH2eeKe0JyctFYsZs7KhQZmYKml-
> Yhd/LPC213xpower.pdf
>
> Guille
>
> --- In lpc2000@yahoogroups.com, Mukadder Ceyhan
> <mukadder_c@y...>
> wrote:
> >
> > Could you post or send me this pdf document
> please??
> >
> > --- Guillermo Prandi
> > <yahoo.messenger@m...> wrote:
> >
> > > It seems I keep embarrasing myself... The code
> was
> > > never intended to
> > > wake up the processor on interrupt.
> > >
> > > for(;;);
> > >
> > > Never mind my mouth. Sorry for all the buzz...
> > >
> > > Guille
> > >
> > > --- In lpc2000@yahoogroups.com, "Guillermo
> Prandi"
> > > <yahoo.messenger@m...> wrote:
> > > >
> > > > I just wanted to add that the small "concept"
> bug
> > > does not affect
> > > the
> > > > results of the test at all; it only affects
> the
> > > ability of the
> > > > processor of returning to normal state with
> just
> > > an interrupt.
> > > >
> > > > Guille
> > > >
> > > > --- In lpc2000@yahoogroups.com, "Guillermo
> Prandi"
> > >
> > > > <yahoo.messenger@m...> wrote:
> > > > >
> > > > > Hi, I just wanted to point out that there
> seems
> > > to be small bug
> > > in
> > > > > the test code shown in the PDF:
> > > > >
> > > > > switch(c) {
> > > > > case 'b': PCON=1;
> > > > > case 'c': PCON=1;
> > > > > case 'd': UartOff();PCON=6;
> > > > > case 'e': PCON=2;
> > > > > case 'f': PCON=6;
> > > > > }
> > > > >
> > > > > should probably have been:
> > > > >
> > > > > switch(c) {
> > > > > case 'b': PCON=1; break;
> > > > > case 'c': PCON=1; break;
> > > > > case 'd': UartOff();PCON=6; break;
> > > > > case 'e': PCON=2; break;
> > > > > case 'f': PCON=6; break;
> > > > > }
> > > > >
> > > > > Guille
> > > > >
> > > >
> > >
> > >
> > >
> > >
> > >
> >
> >
> >
> >
> > __________________________________
> > Start your day with Yahoo! - Make it your home
> page!
> > http://www.yahoo.com/r/hs
> >
>
>
>
>
>
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com
------------------------------------------------------------------------------
YAHOO! GROUPS LINKS
a.. Visit your group "lpc2000" on the web.
b.. To unsubscribe from this group, send an email to:
lpc2000-unsubscribe@yahoogroups.com
c.. Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
------------------------------------------------------------------------------
[Non-text portions of this message have been removed]2005-11-01 by Mukadder Ceyhan
thanks daniel...
--- Daniel Gelbgras <daniel.gelbgras@...> wrote:
> Hi Mukadder,
>
> you may want to try
>
http://groups.yahoo.com/group/lpc2000/files/LPC213xpower.pdf
>
> hth
> Daniel
> ----- Original Message -----
> From: Mukadder Ceyhan
> To: lpc2000@yahoogroups.com
> Sent: Tuesday, November 01, 2005 3:16 PM
> Subject: Re: [lpc2000] Re: LPC213xpower.pdf by
> Owen Mooney
>
>
> i think the link you gave does not exist.
> could you send the file to my e-mail?
> regards.
>
> --- Guillermo Prandi
> <yahoo.messenger@...> wrote:
>
> > Mukadder, the file is right at the files
> section:
> >
> >
>
>
http://f2.grp.yahoofs.com/v1/ALBmQwa9_kvKfAt5HjPsDrZjdT1SNwA_69FkDNrCL
> >
>
>
nSJcfIXPBD5ZP-9j0T9DWhp6qbj5824JjH2eeKe0JyctFYsZs7KhQZmYKml-
> > Yhd/LPC213xpower.pdf
> >
> > Guille
> >
> > --- In lpc2000@yahoogroups.com, Mukadder Ceyhan
> > <mukadder_c@y...>
> > wrote:
> > >
> > > Could you post or send me this pdf document
> > please??
> > >
> > > --- Guillermo Prandi
> > > <yahoo.messenger@m...> wrote:
> > >
> > > > It seems I keep embarrasing myself... The
> code
> > was
> > > > never intended to
> > > > wake up the processor on interrupt.
> > > >
> > > > for(;;);
> > > >
> > > > Never mind my mouth. Sorry for all the
> buzz...
> > > >
> > > > Guille
> > > >
> > > > --- In lpc2000@yahoogroups.com, "Guillermo
> > Prandi"
> > > > <yahoo.messenger@m...> wrote:
> > > > >
> > > > > I just wanted to add that the small
> "concept"
> > bug
> > > > does not affect
> > > > the
> > > > > results of the test at all; it only
> affects
> > the
> > > > ability of the
> > > > > processor of returning to normal state
> with
> > just
> > > > an interrupt.
> > > > >
> > > > > Guille
> > > > >
> > > > > --- In lpc2000@yahoogroups.com, "Guillermo
> > Prandi"
> > > >
> > > > > <yahoo.messenger@m...> wrote:
> > > > > >
> > > > > > Hi, I just wanted to point out that
> there
> > seems
> > > > to be small bug
> > > > in
> > > > > > the test code shown in the PDF:
> > > > > >
> > > > > > switch(c) {
> > > > > > case 'b': PCON=1;
> > > > > > case 'c': PCON=1;
> > > > > > case 'd': UartOff();PCON=6;
> > > > > > case 'e': PCON=2;
> > > > > > case 'f': PCON=6;
> > > > > > }
> > > > > >
> > > > > > should probably have been:
> > > > > >
> > > > > > switch(c) {
> > > > > > case 'b': PCON=1; break;
> > > > > > case 'c': PCON=1; break;
> > > > > > case 'd': UartOff();PCON=6; break;
> > > > > > case 'e': PCON=2; break;
> > > > > > case 'f': PCON=6; break;
> > > > > > }
> > > > > >
> > > > > > Guille
> > > > > >
> > > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> > > __________________________________
> > > Start your day with Yahoo! - Make it your home
> > page!
> > > http://www.yahoo.com/r/hs
> > >
> >
> >
> >
> >
> >
>
>
>
>
>
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com
>
>
>
------------------------------------------------------------------------------
> YAHOO! GROUPS LINKS
>
> a.. Visit your group "lpc2000" on the web.
>
> b.. To unsubscribe from this group, send an
> email to:
> lpc2000-unsubscribe@yahoogroups.com
>
> c.. Your use of Yahoo! Groups is subject to the
> Yahoo! Terms of Service.
>
>
>
------------------------------------------------------------------------------
>
>
>
> [Non-text portions of this message have been
> removed]
>
>
__________________________________
Yahoo! Mail - PC Magazine Editors' Choice 2005
http://mail.yahoo.com2005-11-01 by Guillermo Prandi
Hi, Mukadder. Perhaps the link didn't work because it was tied to my own browser session. Just login to the group at: http://groups.yahoo.com/group/lpc2000/ Then click in the "Files" link at your right. The file is in the main listing (i.e., no subfolder). Its name is "LPC213xpower.pdf". You can try using the text find feature in your browser (usually CTRL+F, if your browser is in English). It IS there. I double checked. Guille --- In lpc2000@yahoogroups.com, Mukadder Ceyhan <mukadder_c@y...> wrote: > > i think the link you gave does not exist. > could you send the file to my e-mail? > regards. > > --- Guillermo Prandi > <yahoo.messenger@m...> wrote: > > > Mukadder, the file is right at the files section: > > > > > http://f2.grp.yahoofs.com/v1/ALBmQwa9_kvKfAt5HjPsDrZjdT1SNwA_69FkDNrCL
> >
> nSJcfIXPBD5ZP-9j0T9DWhp6qbj5824JjH2eeKe0JyctFYsZs7KhQZmYKml-
> > Yhd/LPC213xpower.pdf
> >
> > Guille
> >
> > --- In lpc2000@yahoogroups.com, Mukadder Ceyhan
> > <mukadder_c@y...>
> > wrote:
> > >
> > > Could you post or send me this pdf document
> > please??
> > >
> > > --- Guillermo Prandi
> > > <yahoo.messenger@m...> wrote:
> > >
> > > > It seems I keep embarrasing myself... The code
> > was
> > > > never intended to
> > > > wake up the processor on interrupt.
> > > >
> > > > for(;;);
> > > >
> > > > Never mind my mouth. Sorry for all the buzz...
> > > >
> > > > Guille
> > > >
> > > > --- In lpc2000@yahoogroups.com, "Guillermo
> > Prandi"
> > > > <yahoo.messenger@m...> wrote:
> > > > >
> > > > > I just wanted to add that the small "concept"
> > bug
> > > > does not affect
> > > > the
> > > > > results of the test at all; it only affects
> > the
> > > > ability of the
> > > > > processor of returning to normal state with
> > just
> > > > an interrupt.
> > > > >
> > > > > Guille
> > > > >
> > > > > --- In lpc2000@yahoogroups.com, "Guillermo
> > Prandi"
> > > >
> > > > > <yahoo.messenger@m...> wrote:
> > > > > >
> > > > > > Hi, I just wanted to point out that there
> > seems
> > > > to be small bug
> > > > in
> > > > > > the test code shown in the PDF:
> > > > > >
> > > > > > switch(c) {
> > > > > > case 'b': PCON=1;
> > > > > > case 'c': PCON=1;
> > > > > > case 'd': UartOff();PCON=6;
> > > > > > case 'e': PCON=2;
> > > > > > case 'f': PCON=6;
> > > > > > }
> > > > > >
> > > > > > should probably have been:
> > > > > >
> > > > > > switch(c) {
> > > > > > case 'b': PCON=1; break;
> > > > > > case 'c': PCON=1; break;
> > > > > > case 'd': UartOff();PCON=6; break;
> > > > > > case 'e': PCON=2; break;
> > > > > > case 'f': PCON=6; break;
> > > > > > }
> > > > > >
> > > > > > Guille
> > > > > >
> > > > >
> > > >
> > > >
> > > >
> > > >
> > > >
> > >
> > >
> > >
> > >
> > > __________________________________
> > > Start your day with Yahoo! - Make it your home
> > page!
> > > http://www.yahoo.com/r/hs
> > >
> >
> >
> >
> >
> >
>
>
>
>
>
> __________________________________
> Yahoo! Mail - PC Magazine Editors' Choice 2005
> http://mail.yahoo.com
>