Questions tagged [usart]

USART stands for Universal Synchronous/Asynchronous Receiver/Transmitter is a modern IC which comes with a [UART](https://stackoverflow.com/tags/uart/info) that can also communicate synchronously. A USART is usually an individual (or part of an) integrated circuit used for serial communications over a computer or peripheral device serial port. The tag usart can be used for programming related questions of any usart device.

A Universal Synchronous/Asynchronous Receiver/Transmitter, abbreviated USART, is a piece of computer hardware that translates data between parallel and serial forms. USARTs are commonly used in conjunction with communication standards such as EIA, RS-232, RS-422 or RS-485. The universal designation indicates that the data format and transmission speeds are configurable.

A USART is usually an individual (or part of an) integrated circuit used for serial communications over a computer or peripheral device serial port. USARTs are now commonly included in microcontrollers. A dual UART, or DUART, combines two UARTs into a single chip. Many modern ICs now come with a UART that can also communicate synchronously; these devices are called USARTs (Universal Synchronous/Asynchronous Receiver/Transmitter).

The tag can be used for questions related to programming of a usart device, please note that https://electronics.stackexchange.com/ is another stackexchange website from where you can get answers for electronics related problems. Questions on Stackoverflow should be programming related.

See also tag .

263 questions
-1
votes
1 answer

AVR ATMega1284P USART Communication lockup

I am using the USART in synchronous mode to communicate from the host computer to firmware(resides in ATMega 1284P). My maximum buffer size in the firmware side is 20, If I send the data continuously from the host to the firmware and some replies…
Nagarjun
  • 75
  • 1
  • 10
-2
votes
1 answer

AVR USART communication

I am implementing USART communication on an AVR micro-controller. Below is my code. At the moment, I can send a character, send a string and receive a character. I have a method to receive a string. The method is called char* receive_string() and…
Rufusy
  • 11
  • 1
  • 4
-2
votes
1 answer

PIC18F46J50 EEPROM read/write

The project i am working is as below: I got ADuC7061's USART is connected with PIC18F46j50 EUSART. the aduc7061 continously transmits an information and the pic18f receives that information through its eusart0. Now the question is that I have to…
akumar
  • 49
  • 1
  • 9
-3
votes
1 answer

Cannot connect two different boards via UART when they both can communicate via serial/USB

after looking up this problem quite a bit I'm unable to find a solution on my own. I have to set up a serial communication between 3 devices. Device #1 is made by my company. I cannot tell what it is, but it uses an STM32 MCU. Device #2 is a Nucleo…
Tohkai
  • 93
  • 1
  • 9
-3
votes
1 answer

Error occurs when i transmit data with USART

I am stuck on the following problem. Consider this code: int main(void) { SysTickInit(); USART_GPIOInits(); USART_Inits(); char data[] = "hello\n"; for(uint8_t i=0; i<10; i++) …
metisai02
  • 11
  • 5
-3
votes
1 answer

AVR USART Programming

I am currently working on a project where we have to use an AVR ATMEGA328 micro-controller, specifically the USART peripheral, to control 8 LED's. We have to send commands to the micro-controller that will turn on, off, and blink the LED's at…
-4
votes
1 answer

Serial communication between stm32f103 and computer using USB to ttl pl2303

I would like to know is if is possible to send data from my stm32f103 board to my laptop using usb-ttl pl2303. I have tried but even after downloading the drivers the com port is not recognized by com terminal applications.
-4
votes
1 answer

ARM USART program for STM32f107

I have configured the usart but i am getting error in the following line of code and i am using eclipse OCD for the compiling so please suggest the proper way to configure the clock. void RCC_Configuration(void) { /* error status */ …
sHamiR
  • 3
  • 5
1 2 3
17
18