Sign in

username:

password:



Not a member?

Search avrclub



Search tips

Subscribe to avrclub



avrclub by Keywords

AT90S2313 | AT90S8515 | ATMega | ATmega128 | ECL | FETS | IAR | Keyboard | LCD | STK50 | TMOS | UART


Ads

Discussion Groups

See Also

DSPFPGAElectronics

Discussion Groups | AVRclub | [AVR club] Sending Data by USART

Atmel AVR Microcontroller discussion group.

[AVR club] Sending Data by USART - rahmatoolah abedini - May 28 14:28:38 2009

Dear friends:
I want to send data to computer by USART of Atmega8 with Asynchrony mode. I=
write very simple program for sending data to computer and can see the sen=
t data by oscilloscope in pin number 2 of COM1 (serial port) of my computer=
. But unfortunately I can=E2=80=99t see sent data on the Terminal section o=
f CodevisionAVR Program or on the Hyper Terminals of Windows. I think the s=
etting of them such as Baud rate number of Stop bits, parity is correct.=20
Setting of Terminal:
Baud rate: 9600=C2=A0=C2=A0 Data bits: 8=C2=A0 =C2=A0Stop bits:1=C2=A0=C2=
=A0 Parity: none=C2=A0 =C2=A0=C2=A0Emulation:TTY
Main part of Program:
UCSRA=3D0x00; UCSRB=3D0x08; UCSRC=3D0x86;=C2=A0 UBRRH=3D0x00; =C2=A0UBRRL=
=3D51; //9600
top:
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 UDR=3D=E2=80=99a=E2=80=99;=C2=A0=C2=A0=
=C2=A0=C2=A0=C2=A0=C2=A0=20
=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 delay_ms(100);
=C2=A0goto top;
Please Help me I should solved this problem AFAP.
Best regards.
Ali=20
=20=20=20=20=20=20

[Non-text portions of this message have been removed]

------------------------------------



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


Re: [AVR club] Sending Data by USART - Zack Widup - May 28 14:43:31 2009

How are you connecting the AVR to your computer?

Zack

On Thu, May 28, 2009 at 12:14 PM, rahmatoolah abedini m
> wrote:

> Dear friends:
> I want to send data to computer by USART of Atmega8 with Asynchrony mode.=
I
> write very simple program for sending data to computer and can see the se=
nt
> data by oscilloscope in pin number 2 of COM1 (serial port) of my computer=
.
> But unfortunately I can=92t see sent data on the Terminal section of
> CodevisionAVR Program or on the Hyper Terminals of Windows. I think the
> setting of them such as Baud rate number of Stop bits, parity is correct.
> Setting of Terminal:
> Baud rate: 9600 Data bits: 8 Stop bits:1 Parity: none
> Emulation:TTY
> Main part of Program:
> UCSRA=3D0x00; UCSRB=3D0x08; UCSRC=3D0x86; UBRRH=3D0x00; UBRRL=3D51; //9=
600
> top:
> UDR=3D=92a=92;
> delay_ms(100);
> goto top;
> Please Help me I should solved this problem AFAP.
> Best regards.
> Ali
>
> [Non-text portions of this message have been removed]
>
>=20
>
[Non-text portions of this message have been removed]

------------------------------------



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

Re: [AVR club] Sending Data by USART - "A. R. Khorasani" - May 28 16:25:03 2009

Dear Ali,

for accurate serial communication you have to use external crystal
instead of internal rc oscillator.
with 8 MHz ones:
// USART initialization
// Communication Parameters: 8 Data, 1 Stop, No Parity
// USART Receiver: On
// USART Transmitter: On
// USART Mode: Asynchronous
// USART Baud Rate: 9600
UCSRA=3D0x00;
UCSRB=3D0x18;
UCSRC=3D0x86;
UBRRH=3D0x00;
UBRRL=3D0x33;
void char TransmitByte( unsigned char data )
{
while ( !(UCSRA & (1< er
UDR =3D data; // start transmittion=20=09
NOP();
while ( !(UCSRA & (1< r
}
Regards
A.R.Khorasani
http://www.instrumentalanalysis.com
On Thu, May 28, 2009 at 8:44 PM, rahmatoolah abedini
wrote:
> Dear friends:
> I want to send data to computer by USART of Atmega8 with Asynchrony mode.=
I
> write very simple program for sending data to computer and can see the se=
nt
> data by oscilloscope in pin number 2 of COM1 (serial port) of my computer=
.
> But unfortunately I can=92t see sent data on the Terminal section of
> CodevisionAVR Program or on the Hyper Terminals of Windows. I think the
> setting of them such as Baud rate number of Stop bits, parity is correct.
> Setting of Terminal:
> Baud rate: 9600=A0=A0 Data bits: 8=A0 =A0Stop bits:1=A0=A0 Parity: none=
=A0 =A0=A0Emulation:TTY
> Main part of Program:
> UCSRA=3D0x00; UCSRB=3D0x08; UCSRC=3D0x86;=A0 UBRRH=3D0x00; =A0UBRRL=3D51;=
//9600
> top:
> =A0=A0=A0=A0=A0=A0 UDR=3D=92a=92;
> =A0=A0=A0=A0=A0=A0 delay_ms(100);
> =A0goto top;
> Please Help me I should solved this problem AFAP.
> Best regards.
> Ali
>
> [Non-text portions of this message have been removed]
>
>=20
------------------------------------



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

RE: [AVR club] Sending Data by USART - Phillip Vogel - May 28 16:46:02 2009

You also need some sort of level translation. The easiest is something like
a max232, but there are certainly other schemes.
-----Original Message-----
From: a...@yahoogroups.com [mailto:a...@yahoogroups.com] On Behalf Of
A. R. Khorasani
Sent: Thursday, May 28, 2009 4:19 PM
To: a...@yahoogroups.com
Subject: Re: [AVR club] Sending Data by USART

Dear Ali,

for accurate serial communication you have to use external crystal
instead of internal rc oscillator.
with 8 MHz ones:
// USART initialization
// Communication Parameters: 8 Data, 1 Stop, No Parity
// USART Receiver: On
// USART Transmitter: On
// USART Mode: Asynchronous
// USART Baud Rate: 9600
UCSRA=3D0x00;
UCSRB=3D0x18;
UCSRC=3D0x86;
UBRRH=3D0x00;
UBRRL=3D0x33;
void char TransmitByte( unsigned char data )
{
while ( !(UCSRA & (1< transmit buffer
UDR =3D data; // start transmittion=20=09
NOP();
while ( !(UCSRA & (1< buffer
}
Regards
A.R.Khorasani
http://www.instrumentalanalysis.com
On Thu, May 28, 2009 at 8:44 PM, rahmatoolah abedini
wrote:
> Dear friends:
> I want to send data to computer by USART of Atmega8 with Asynchrony mode.
I
> write very simple program for sending data to computer and can see the
sent
> data by oscilloscope in pin number 2 of COM1 (serial port) of my computer=
.
> But unfortunately I can=92t see sent data on the Terminal section of
> CodevisionAVR Program or on the Hyper Terminals of Windows. I think the
> setting of them such as Baud rate number of Stop bits, parity is correct.
> Setting of Terminal:
> Baud rate: 9600=A0=A0 Data bits: 8=A0 =A0Stop bits:1=A0=A0 Parity: none=
=A0
=A0=A0Emulation:TTY
> Main part of Program:
> UCSRA=3D0x00; UCSRB=3D0x08; UCSRC=3D0x86;=A0 UBRRH=3D0x00; =A0UBRRL=3D51;=
//9600
> top:
> =A0=A0=A0=A0=A0=A0 UDR=3D=92a=92;
> =A0=A0=A0=A0=A0=A0 delay_ms(100);
> =A0goto top;
> Please Help me I should solved this problem AFAP.
> Best regards.
> Ali
>
> [Non-text portions of this message have been removed]
>
>=20
------------------------------------



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

Re: [AVR club] Sending Data by USART - Zack Widup - May 28 16:53:17 2009

We have no idea what the original poster is using or trying to use. That's
why I asked the question. I didn't assume anything.

All we have is a snippet of code and the statement that he can't see the
data on Terminal section of Codevision AVR or Hyperterminal. Yes, some sort
of level translation is needed (RS-232 for a serial port, etc.) But until w=
e
find out if that has been implemented, or what has exactly, we can't really
do much to help.
Zack
On Thu, May 28, 2009 at 3:36 PM, Phillip Vogel wrote:

> You also need some sort of level translation. The easiest is something li=
ke
> a max232, but there are certainly other schemes.
> -----Original Message-----
> From: a...@yahoogroups.com [mailto:
> a...@yahoogroups.com ] On Behalf Of
> A. R. Khorasani
> Sent: Thursday, May 28, 2009 4:19 PM
> To: a...@yahoogroups.com
> Subject: Re: [AVR club] Sending Data by USART
>
> Dear Ali,
>
> for accurate serial communication you have to use external crystal
> instead of internal rc oscillator.
> with 8 MHz ones:
> // USART initialization
> // Communication Parameters: 8 Data, 1 Stop, No Parity
> // USART Receiver: On
> // USART Transmitter: On
> // USART Mode: Asynchronous
> // USART Baud Rate: 9600
> UCSRA=3D0x00;
> UCSRB=3D0x18;
> UCSRC=3D0x86;
> UBRRH=3D0x00;
> UBRRL=3D0x33;
>
> void char TransmitByte( unsigned char data )
> {
> while ( !(UCSRA & (1< > transmit buffer
> UDR =3D data; // start transmittion
> NOP();
> while ( !(UCSRA & (1< > buffer
> }
>
> Regards
> A.R.Khorasani
> http://www.instrumentalanalysis.com
>
> On Thu, May 28, 2009 at 8:44 PM, rahmatoolah abedini
> > wrote:
> >
> >
> > Dear friends:
> > I want to send data to computer by USART of Atmega8 with Asynchrony mod=
e.
> I
> > write very simple program for sending data to computer and can see the
> sent
> > data by oscilloscope in pin number 2 of COM1 (serial port) of my
> computer.
> > But unfortunately I can=92t see sent data on the Terminal section of
> > CodevisionAVR Program or on the Hyper Terminals of Windows. I think the
> > setting of them such as Baud rate number of Stop bits, parity is correc=
t.
> > Setting of Terminal:
> > Baud rate: 9600 Data bits: 8 Stop bits:1 Parity: none
> Emulation:TTY
> > Main part of Program:
> > UCSRA=3D0x00; UCSRB=3D0x08; UCSRC=3D0x86; UBRRH=3D0x00; UBRRL=3D51; /=
/9600
> > top:
> > UDR=3D=92a=92;
> > delay_ms(100);
> > goto top;
> > Please Help me I should solved this problem AFAP.
> > Best regards.
> > Ali
> >
> > [Non-text portions of this message have been removed]
> >
> > ------------------------------------

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


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

Re: [AVR club] Sending Data by USART - jan...@lillahusetiskogen.se - Jun 4 12:36:20 2009

We can always give the advise to not use Hyperterminal.

Use something else, Tera Term for example:
http://en.wikipedia.org/wiki/Tera_Term

/Janne

On Thu, 28 May 2009 15:52:00
-0500 Zack Widup wrote:

> We have no idea what the original poster is using or trying to use.
> That's why I asked the question. I didn't assume anything.
>=20
> All we have is a snippet of code and the statement that he can't see
> the data on Terminal section of Codevision AVR or Hyperterminal. Yes,
> some sort of level translation is needed (RS-232 for a serial port,
> etc.) But until we find out if that has been implemented, or what has
> exactly, we can't really do much to help.
> Zack
> On Thu, May 28, 2009 at 3:36 PM, Phillip Vogel
> wrote:
>=20
> >
> >
> > You also need some sort of level translation. The easiest is
> > something like a max232, but there are certainly other schemes.
> >
> >
> > -----Original Message-----
> > From: a...@yahoogroups.com [mailto:
> > a...@yahoogroups.com ] On Behalf Of
> > A. R. Khorasani
> > Sent: Thursday, May 28, 2009 4:19 PM
> > To: a...@yahoogroups.com
> > Subject: Re: [AVR club] Sending Data by USART
> >
> > Dear Ali,
> >
> > for accurate serial communication you have to use external crystal
> > instead of internal rc oscillator.
> > with 8 MHz ones:
> > // USART initialization
> > // Communication Parameters: 8 Data, 1 Stop, No Parity
> > // USART Receiver: On
> > // USART Transmitter: On
> > // USART Mode: Asynchronous
> > // USART Baud Rate: 9600
> > UCSRA=3D0x00;
> > UCSRB=3D0x18;
> > UCSRC=3D0x86;
> > UBRRH=3D0x00;
> > UBRRL=3D0x33;
> >
> > void char TransmitByte( unsigned char data )
> > {
> > while ( !(UCSRA & (1< > > transmit buffer
> > UDR =3D data; // start transmittion
> > NOP();
> > while ( !(UCSRA & (1< > > buffer
> > }
> >
> > Regards
> > A.R.Khorasani
> > http://www.instrumentalanalysis.com
> >
> > On Thu, May 28, 2009 at 8:44 PM, rahmatoolah abedini
> > > wrote:
> > >
> > >
> > > Dear friends:
> > > I want to send data to computer by USART of Atmega8 with
> > > Asynchrony mode.
> > I
> > > write very simple program for sending data to computer and can
> > > see the
> > sent
> > > data by oscilloscope in pin number 2 of COM1 (serial port) of my
> > computer.
> > > But unfortunately I can=C2=92t see sent data on the Terminal section =
of
> > > CodevisionAVR Program or on the Hyper Terminals of Windows. I
> > > think the setting of them such as Baud rate number of Stop bits,
> > > parity is correct. Setting of Terminal:
> > > Baud rate: 9600 Data bits: 8 Stop bits:1 Parity: none
> > Emulation:TTY
> > > Main part of Program:
> > > UCSRA=3D0x00; UCSRB=3D0x08; UCSRC=3D0x86; UBRRH=3D0x00; UBRRL=3D51;=
//9600
> > > top:
> > > UDR=3D=C2=92a=C2=92;
> > > delay_ms(100);
> > > goto top;
> > > Please Help me I should solved this problem AFAP.
> > > Best regards.
> > > Ali
> > >
> > > [Non-text portions of this message have been removed]
> > >
> > >
> >
> > ------------------------------------
> >
> >

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


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

Re: [AVR club] Sending Data by USART - Zack Widup - Jun 9 12:40:41 2009


There is quite a bit of terminal software out there. Here's a few I like:

Netterm:

http://www.securenetterm.com/html/netterm.html

Real term:

http://realterm.sourceforge.net/

Com 7.6:

http://download.cnet.com/Com/3000-2155_4-10058742.html?tag=3Dmncol;lst

Zack
=20

--- In a...@yahoogroups.com, wrote:
>
> We can always give the advise to not use Hyperterminal.
>=20
> Use something else, Tera Term for example:
> http://en.wikipedia.org/wiki/Tera_Term
>=20
> /Janne
>=20
> On Thu, 28 May 2009 15:52:00
> -0500 Zack Widup wrote:
>=20
> > We have no idea what the original poster is using or trying to use.
> > That's why I asked the question. I didn't assume anything.
> >=20
> > All we have is a snippet of code and the statement that he can't see
> > the data on Terminal section of Codevision AVR or Hyperterminal. Yes,
> > some sort of level translation is needed (RS-232 for a serial port,
> > etc.) But until we find out if that has been implemented, or what has
> > exactly, we can't really do much to help.
> > Zack
> > On Thu, May 28, 2009 at 3:36 PM, Phillip Vogel
> > wrote:
> >=20
> > >
> > >
> > > You also need some sort of level translation. The easiest is
> > > something like a max232, but there are certainly other schemes.
> > >
> > >
> > > -----Original Message-----
> > > From: a...@yahoogroups.com [mailto:
> > > a...@yahoogroups.com ] On Behalf Of
> > > A. R. Khorasani
> > > Sent: Thursday, May 28, 2009 4:19 PM
> > > To: a...@yahoogroups.com
> > > Subject: Re: [AVR club] Sending Data by USART
> > >
> > > Dear Ali,
> > >
> > > for accurate serial communication you have to use external crystal
> > > instead of internal rc oscillator.
> > > with 8 MHz ones:
> > > // USART initialization
> > > // Communication Parameters: 8 Data, 1 Stop, No Parity
> > > // USART Receiver: On
> > > // USART Transmitter: On
> > > // USART Mode: Asynchronous
> > > // USART Baud Rate: 9600
> > > UCSRA=3D0x00;
> > > UCSRB=3D0x18;
> > > UCSRC=3D0x86;
> > > UBRRH=3D0x00;
> > > UBRRL=3D0x33;
> > >
> > > void char TransmitByte( unsigned char data )
> > > {
> > > while ( !(UCSRA & (1< > > > transmit buffer
> > > UDR =3D data; // start transmittion
> > > NOP();
> > > while ( !(UCSRA & (1< > > > buffer
> > > }
> > >
> > > Regards
> > > A.R.Khorasani
> > > http://www.instrumentalanalysis.com
> > >
> > > On Thu, May 28, 2009 at 8:44 PM, rahmatoolah abedini
> > > > wrote:
> > > >
> > > >
> > > > Dear friends:
> > > > I want to send data to computer by USART of Atmega8 with
> > > > Asynchrony mode.
> > > I
> > > > write very simple program for sending data to computer and can
> > > > see the
> > > sent
> > > > data by oscilloscope in pin number 2 of COM1 (serial port) of my
> > > computer.
> > > > But unfortunately I can=C2't see sent data on the Terminal section =
of
> > > > CodevisionAVR Program or on the Hyper Terminals of Windows. I
> > > > think the setting of them such as Baud rate number of Stop bits,
> > > > parity is correct. Setting of Terminal:
> > > > Baud rate: 9600 Data bits: 8 Stop bits:1 Parity: none
> > > Emulation:TTY
> > > > Main part of Program:
> > > > UCSRA=3D0x00; UCSRB=3D0x08; UCSRC=3D0x86; UBRRH=3D0x00; UBRRL=3D5=
1; //9600
> > > > top:
> > > > UDR=3D=C2'a=C2';
> > > > delay_ms(100);
> > > > goto top;
> > > > Please Help me I should solved this problem AFAP.
> > > > Best regards.
> > > > Ali
> > > >
> > > > [Non-text portions of this message have been removed]
> > > >
> > > >
> > >
> > > ------------------------------------
> > >
> > >



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

RE: [AVR club] Sending Data by USART - Julian Higginson - Jun 10 8:41:33 2009

What is actually wrong with Hyperterminal?

It always worked fine for me, for what it does.

-----Original Message-----
From: a...@yahoogroups.com [mailto:a...@yahoogroups.com] On Behalf Of j...@lillahusetiskogen.se
Sent: Saturday, 30 May 2009 2:44 AM
To: a...@yahoogroups.com
Subject: Re: [AVR club] Sending Data by USART

We can always give the advise to not use Hyperterminal.

Use something else, Tera Term for example:
http://en.wikipedia.org/wiki/Tera_Term

/Janne

------------------------------------

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


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

RE: Terminal Emulator Software (was [AVR club] Sending Data by USART) - Ivan Vernot - Jun 10 8:42:13 2009

I 'use and recommend' ;-)=20

http://www.umonfw.com/ucon/=20

Ivan Vernot

> -----Original Message-----
> From: a...@yahoogroups.com [mailto:a...@yahoogroups.com] On Behalf
> Of Zack Widup
> Sent: Wednesday, 10 June 2009 2:39 AM
> To: a...@yahoogroups.com
> Subject: Re: [AVR club] Sending Data by USART
>=20
>=20
> There is quite a bit of terminal software out there. Here's a few I like:
>=20
> Netterm:
>=20
> http://www.securenetterm.com/html/netterm.html
>=20
> Real term:
>=20
> http://realterm.sourceforge.net/
>=20
> Com 7.6:
>=20
> http://download.cnet.com/Com/3000-2155_4-10058742.html?tag=3Dmncol;lst
>=20
> Zack
>=20
>=20
> --- In a...@yahoogroups.com, wrote:
> >
> > We can always give the advise to not use Hyperterminal.
> >
> > Use something else, Tera Term for example:
> > http://en.wikipedia.org/wiki/Tera_Term
> >
> > /Janne
> >
> > On Thu, 28 May 2009 15:52:00
> > -0500 Zack Widup wrote:
> >
> > > We have no idea what the original poster is using or trying to use.
> > > That's why I asked the question. I didn't assume anything.
> > >
> > > All we have is a snippet of code and the statement that he can't see
> > > the data on Terminal section of Codevision AVR or Hyperterminal. Yes,
> > > some sort of level translation is needed (RS-232 for a serial port,
> > > etc.) But until we find out if that has been implemented, or what has
> > > exactly, we can't really do much to help.
> > > Zack
> > > On Thu, May 28, 2009 at 3:36 PM, Phillip Vogel
> > > wrote:
> > >
> > > >
> > > >
> > > > You also need some sort of level translation. The easiest is
> > > > something like a max232, but there are certainly other schemes.
> > > >
> > > >
> > > > -----Original Message-----
> > > > From: a...@yahoogroups.com [mailto:
> > > > a...@yahoogroups.com ] On Behalf Of
> > > > A. R. Khorasani
> > > > Sent: Thursday, May 28, 2009 4:19 PM
> > > > To: a...@yahoogroups.com
> > > > Subject: Re: [AVR club] Sending Data by USART
> > > >
> > > > Dear Ali,
> > > >
> > > > for accurate serial communication you have to use external crystal
> > > > instead of internal rc oscillator.
> > > > with 8 MHz ones:
> > > > // USART initialization
> > > > // Communication Parameters: 8 Data, 1 Stop, No Parity
> > > > // USART Receiver: On
> > > > // USART Transmitter: On
> > > > // USART Mode: Asynchronous
> > > > // USART Baud Rate: 9600
> > > > UCSRA=3D0x00;
> > > > UCSRB=3D0x18;
> > > > UCSRC=3D0x86;
> > > > UBRRH=3D0x00;
> > > > UBRRL=3D0x33;
> > > >
> > > > void char TransmitByte( unsigned char data )
> > > > {
> > > > while ( !(UCSRA & (1< > > > > transmit buffer
> > > > UDR =3D data; // start transmittion
> > > > NOP();
> > > > while ( !(UCSRA & (1< > > > > buffer
> > > > }
> > > >
> > > > Regards
> > > > A.R.Khorasani
> > > > http://www.instrumentalanalysis.com
> > > >
> > > > On Thu, May 28, 2009 at 8:44 PM, rahmatoolah abedini
> > > > > wrote:
> > > > >
> > > > >
> > > > > Dear friends:
> > > > > I want to send data to computer by USART of Atmega8 with
> > > > > Asynchrony mode.
> > > > I
> > > > > write very simple program for sending data to computer and can
> > > > > see the
> > > > sent
> > > > > data by oscilloscope in pin number 2 of COM1 (serial port) of my
> > > > computer.
> > > > > But unfortunately I can=C2't see sent data on the Terminal sectio=
n
> of
> > > > > CodevisionAVR Program or on the Hyper Terminals of Windows. I
> > > > > think the setting of them such as Baud rate number of Stop bits,
> > > > > parity is correct. Setting of Terminal:
> > > > > Baud rate: 9600 Data bits: 8 Stop bits:1 Parity: none
> > > > Emulation:TTY
> > > > > Main part of Program:
> > > > > UCSRA=3D0x00; UCSRB=3D0x08; UCSRC=3D0x86; UBRRH=3D0x00; UBRRL=
=3D51; //9600
> > > > > top:
> > > > > UDR=3D=C2'a=C2';
> > > > > delay_ms(100);
> > > > > goto top;
> > > > > Please Help me I should solved this problem AFAP.
> > > > > Best regards.
> > > > > Ali
> > > > >
------------------------------------



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

Re: [AVR club] Sending Data by USART - jan...@lillahusetiskogen.se - Jun 11 14:37:23 2009

Lucky you!

/Janne

On Wed, 10 Jun 2009 12:27:15 +1000
"Julian Higginson" wrote:

> What is actually wrong with Hyperterminal?
>
> It always worked fine for me, for what it does.
>
> -----Original Message-----
> From: a...@yahoogroups.com [mailto:a...@yahoogroups.com] On
> Behalf Of j...@lillahusetiskogen.se Sent: Saturday, 30 May 2009 2:44 AM
> To: a...@yahoogroups.com
> Subject: Re: [AVR club] Sending Data by USART
>
> We can always give the advise to not use Hyperterminal.
>
> Use something else, Tera Term for example:
> http://en.wikipedia.org/wiki/Tera_Term
>
> /Janne
>
--
You deserve a better life, dump Windows!
------------------------------------



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