-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UART1 at 2400 bps is not working with CC3200EMT. #9
Comments
cc3200emt does not support baudrates lower than 9600 at the moment. |
rei-vilo
changed the title
UART1 is not working with CC3200EMT.
UART1 at 2400 bps is not working with CC3200EMT.
Feb 10, 2017
Thanks.
…On Sat, Feb 11, 2017 at 2:59 AM, robertinant ***@***.***> wrote:
cc3200emt does not support baudrates lower than 9600 at the moment.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#9 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AXKiEVOwO4daWVbKSMHJVCt47oKxCjtlks5rbNacgaJpZM4L4KLm>
.
|
Hi Robert,
I connected uart1-Tx(pin 9) of launchpad on cc3200 with uart1-(Rx) pin 10
of another cc3200.
In normal mode (without emt) I am getting data at 2400 and other baud rates
in this configuration.
While in cc3200EMT mode, you mentioned that I should receive data at baud
rates higher than 9600 using uart1,
but I am not even getting data at all baud rates.
My code:-
First CC3200emt TX at pin 9==>>>
void setup()
{
pinMode(9,OUTPUT);
Serial1.begin(9600);
}
void loop()
{
Serial1.write('A');
}
Second cc3200emt RX at pin 10==>>>
void setup() {
pinMode(GREEN_LED,INPUT);
Serial.begin(115200);
Serial1.begin(9600);
}
void loop() {
if (Serial1.available())
{
int inByte = Serial1.read();
if(inByte == '\r')
Serial.write("\r");
Serial.write(inByte);
}
}
…On Sat, Feb 11, 2017 at 12:00 PM, Agam Gupta ***@***.***> wrote:
Thanks.
On Sat, Feb 11, 2017 at 2:59 AM, robertinant ***@***.***>
wrote:
> cc3200emt does not support baudrates lower than 9600 at the moment.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#9 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/AXKiEVOwO4daWVbKSMHJVCt47oKxCjtlks5rbNacgaJpZM4L4KLm>
> .
>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
I was previously using uart1 on cc3200 launchpad without emt. It was working there.
But when I changed the board to cc3200emt, then on using uart1 I received no output on serial console.
my code:=
void setup() {
pinMode(GREEN_LED,INPUT);
Serial.begin(115200);
Serial1.begin(2400);
}
void loop() {
if (Serial1.available())
{
int inByte = Serial1.read();
if(inByte == '\r')
Serial.write("\r");
Serial.write(inByte);
}
}
The text was updated successfully, but these errors were encountered: