Skip to content
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

Open
Agam-aviconn opened this issue Feb 6, 2017 · 3 comments
Open

UART1 at 2400 bps is not working with CC3200EMT. #9

Agam-aviconn opened this issue Feb 6, 2017 · 3 comments

Comments

@Agam-aviconn
Copy link

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);
}
}

@robertinant
Copy link
Member

cc3200emt does not support baudrates lower than 9600 at the moment.

@rei-vilo rei-vilo changed the title UART1 is not working with CC3200EMT. UART1 at 2400 bps is not working with CC3200EMT. Feb 10, 2017
@Agam-aviconn
Copy link
Author

Agam-aviconn commented Feb 11, 2017 via email

@Agam-aviconn
Copy link
Author

Agam-aviconn commented Feb 11, 2017 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants