问题标签 [baud-rate]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1441 浏览

avr - Atmega8 波特率设置

我正在使用 ATMEGA8 芯片,它是更大电路板的一部分。我正在尝试设置正确的波特率,但它似乎不起作用。

ATMEGA8 使用 3.6864Mhz 的外部晶体振荡器。按照数据表中的建议,我使用以下几行来 sed 波特率:

使用这种配置,我用示波器测量了时间,得到了 1000bps 的比特率。有什么建议吗?

提前致谢

0 投票
3 回答
13099 浏览

android - 在 Android 上将 USB 波特率从 9600 更改为 115200

我有一个 Arduino,它以 115200 波特率串行发送数据。

有一个应用程序以 9600 波特率从 Arduino 接收数据。代码是

然后在getLineEncoding()函数中

有一个开关盒结构可以将波特率设置为 9600、14400 或 19200。但我希望它是115200谁能告诉我该怎么做?

0 投票
0 回答
277 浏览

c# - 设备和应用程序的波特率如何相关?

根据设备管理器,我有一个波特率设置为 9600 的蓝牙端口(端口 A)。在应用程序中,SerialPort创建一个对象,SerialPort.BaudRate设置为 2048 以读取通过蓝牙模块传输的数据。

我想将接收到的数据从端口 A 输出到另一个端口(端口 B)。但是,它必须经过一些信号处理,这可能会或可能不会影响最大波特率。如果我要SerialPort为端口 B 实例化一个对象,我应该将波特率设置为什么?另外,它的波特率设置应该在设备管理器中是什么?

0 投票
1 回答
2881 浏览

networking - 串行通信波特率、奇偶校验和停止位。使用哪些选项以及何时使用?

我正在尝试为我开始的新工作收集一些串行通讯。我做了一些阅读,这很有帮助,但是很多阅读告诉你串行通信的规范和一切是什么,但不是什么时候最好使用特定的选项。

到目前为止,我对这些信息的搜索似乎只符合规范;也许作为一个新手,我正在寻找错误的术语。

那我的问题!

波特率- 我读过这是每秒的信号变化,并且经常被错误地标记为每秒比特。如果异步,这本质上是每秒比特数,包括帧数据,如果同步,实际上是每秒比特数?

奇偶校验- 偶数/奇数..两者之间有什么区别吗?我在考虑效率或类似的方面。这只是为了兼容性而存在吗?

停止位-到目前为止,我已经阅读过您可以有 1 或 2 个停止位。在 C# 中似乎也有 1.5 的选项。我找不到任何关于您为什么想要/需要超过 1 个的信息。

如果有人能就这些观点提出建议,或者给我一些推荐的阅读材料,我将不胜感激。

谢谢阅读。

编辑:错字

0 投票
2 回答
2712 浏览

c++ - libserial error: cannot set baud rate as 115200

I'm trying to communicate with an USB-uart module using Libserial.

Following is my code for initial part:

When I run it on Ubuntu 12.04 and 13.04 with the same USB module, they all say

Error: Could not set the baud rate.

I did some tests and finally found this error would occur if I set the baud rate as or higher than 115200. It works well on 57600 and 19200.

But I'm wondering is there any possible way for me to set the baud rate as 115200? I downloaded a serial test tool, it can work as the 115200(but I didn't checked the msg content, I just notice the transmit led is flash).

Or is it the hardware limit so I need to buy another module if I want a higher baud rate?

Thanks

===========

UPDATE:

  1. There is no problem with the hardware. I tested it in Windows VS using 115200 and it works well. But it failed on two Ubuntu desktop(12.04 and 13.04).

  2. I print the baudrate out after I set it

    serial_port.SetBaudRate( SerialStreamBuf::BAUD_115200) ;

    int rate = serial_port.BaudRate();

    cout << SerialStreamBuf::BAUD_115200 << endl;

    cout << rate << endl;

the result shows their values are the same, both are 4098.

Then I tried to comment all the .good() part with and after the SetBaudRate part, the program start successfully but the transmit LED doesn't flash. So I think there is really something wrong with the baudrate set so the serial initial failed, although the baudrate it returns is correct.

Now I have no idea what to do next...

in case you need to see all my code

0 投票
4 回答
14746 浏览

ethernet - 为什么在曼彻斯特编码中,比特率是波特率的一半?

我认为波特率是符号的速率,如果每个符号包含 n 位,那么比特率应该是n x baud rate

在以太网(曼彻斯特编码)中,如果比特率是波特率的一半,那么一个符号包含 1/2 位?据我所知,比特率至少应该不低于符号率(波特率)。

关于波特率和比特率的关系,我的理解没有问题,但谈到曼彻斯特码,这完全违反直觉,有人能解释一下吗?

0 投票
2 回答
381 浏览

avr - atmega8 UART-实时不显示字符

嗨,我是新手,我需要帮助。假设只在实数中显示“S”,而不是给出“null”。会有什么问题?可以是寄存器吗?还是代码本身?

系统在 xtal 上以 14745600 Hz 运行。主机速度为 9600 波特。所有设置应为 8N1。

0 投票
2 回答
4704 浏览

serial-port - 设置波特率的值是多少

在 Matlab 中,我正在建立 Arduino 之间的串行链接。更高的波特率总是更好吗?我现在用的是9600,但那只是因为它是最标准的值。

0 投票
0 回答
1619 浏览

c# - 自动检测Arduino的波特率

我正在尝试使用 C# 检测 Arduino Mega2560 的波特率。我的代码如下:

BaudRate 被指定为这样的常量,但我想自动检测它。

例如,如果 Arduino 代码包含 Serial.begin(xxxx),则程序应声明 SP.BaudRate = xxxx。

我该怎么做?

0 投票
1 回答
470 浏览

asynchronous - 使用异步模式每秒查找字符

在异步模式下,每秒可以在 2400bps 线路上传输多少个字符(7 位 + 奇偶校验)。

我计算它是 300,但书上说它是 240....如何?