Tagged Questions
The uart tag has no wiki summary.
3
votes
2answers
554 views
Creating new task in FreeRTOS for USART reception
I am using EVK1105 development board with AVR Studio 5 as development IDE for my AVR project.
I am using FreeRTOS in it. I have 3 USART ports on this board. One external module is connected to my ...
3
votes
0answers
462 views
iPad accessory communication through UART
We manufacture a new accessory for iPad/iPhone which should transfer commands to the iPad. We like to use UART (through a certain Apple-protocol called Lingo). My research shows that I can only use ...
2
votes
1answer
174 views
Linux using a driver from inside a driver
I am trying to interface to a microcontroller from my linux box via RS232 serial.
I have written the driver and implemented a protocol b/n pc and microcontroller, which uses a tty(/dev/ttyS0) device ...
1
vote
1answer
438 views
Avr-gcc: Timer/counter interrupts conflicting with UART?
Please consider the following example (tried on Arduino IDE 0022, Ubuntu 11.04, Arduino AtMEGA 2560), where I'm trying to start a timer/counter interrupt and use the Arduino Serial class at the same ...
1
vote
1answer
324 views
UART initialisation: Prevent UART to pull RTS high
I'm writing a RS485 driver for an ARM AT91SAM9260 board on Linux.
When I initialise the UART, the RTS signal line gets high (1). I guess this would and should be the standard behaviour in RS232 ...
1
vote
2answers
504 views
Circular buffer pointer irregularities
This is a follow up on this question: Display previously received UART values.
After implementing a circular buffer on the microcontroller, it seems that there is a problem with the pointers.
Sent ...
1
vote
5answers
394 views
Display previously received UART values
This should be easy to answer to anyone familiar with C. I want to display the previous values of a variable (receive register of a UART (RS-232) on a microcontroller) on an LCD. This is my current ...
0
votes
0answers
24 views
Stream audio over Serial [closed]
I'm trying to stream audio over a serial data line (3 mbit) to an embedded device. The problem is that the device doesn't have enough RAM to buffer anything. And because the data speed (3 mbit) is ...
0
votes
2answers
44 views
Serial Interrupt in OpenGL, which structure to go?
I'm writing an OpenGL software which is driven by UART(serial with help of Boost::asio) in C++ under Linux.
I am currently done with receiving and process data, and ready to visualize it with OpenGL. ...
0
votes
1answer
59 views
SerialPort: App causes Blue Screen on disconnecting device while it transfers data
I working on a solution for device with Serial Port (with USB bridge).
Everything is ok except the thing it causes Blue Screen on disconnecting device durin data transfer.
And my app doesn't catch any ...
0
votes
0answers
89 views
Relaying data from a another port to UART of MSP430
Folks
I need some tips/advice/suggestion on Relaying data from a port to UART of MSP430
Example say I have a input data on Port2.4 and i need to push that data into UCA1RXBUF
and similarly ...
0
votes
0answers
141 views
UART cannot RX GPS NMEA sentences
My UART is configured for 4800baud rate, Well I am not able to RX the NMEA sentences(GPS eval board) using the UART code pasted below. Individually GPS+Terminal and UART+Terminal is working fine . But ...
0
votes
1answer
299 views
Pic 16F913 UART communications setup
I've attached my codebelow (i'm blinking an LED to be able to see that the loop is occuring BTW).
I am not getting any data sent out over the UART, I have the Pic 16F913, and pin 17 is the output I'm ...
0
votes
0answers
154 views
LCD on PIC not displaying serial data from DMM
I've got a 16F877A reading serial data from a digital multimeter. The DMM data can be read using HyperT on the PC; the idea is to try using ucontrollers to decrease costs and try to display the ...
0
votes
0answers
93 views
Correct way of implementing a uart recieve buffer in a small ARM microcontroller?
I am looking for ideas for a recieve buffer for a small application dealing with 15 byte packets at 921.6Kbaud over rs485. I am thinking of using a circular buffer as the interface between the UART ...
0
votes
2answers
350 views
problem with uart and pic 18f452
i have a problem with pic18f452 and uart
i use simplest code like that:
UART1_Init(9600); // Initialize UART module at 9600 bps
Delay_ms(100); // Wait for UART module ...
0
votes
2answers
183 views
“The port COMx does not exist” - Exception thrown on Open() of SerialPort
My title describes my problem... Can't do anything to solve it.
It is a serial COM device connected via USB cable (appropriate driver is installed).
Also I can see that COM port is detected by the ...
0
votes
1answer
270 views
Virtual Com-Port communication through Matlab
While connecting my Com-port using matlab, many a times(4 out of 5) I get an error
??? Error using ==> serial.fopen at 72
Port: COM21 is not available. Available ports: COM3,
COM10, COM17, COM18.
...
0
votes
1answer
590 views
Atmega and ARM UART connection. The odd behavior
So, it's kind a complex problem and not related to AVR only, but I think that problem is in Atmega.
I have FOSCAM WI-FI camera based on ARM NUC745 which runes under uClinux. There is UART port on ...
0
votes
0answers
119 views
Impact of low_latency setting in SDIO UART read operation
In 2.6.32.28 Linux kernel tree, I tweaked the sdio_uart_receive_chars() (location: drivers/mmc/card/sdio_uart.c) to enable to multibyte/block read and then set the tty->low_latency to 1.
Contrary to ...
0
votes
1answer
263 views
Correct Way of using USART on PIC 16
I am trying to recieve 1 character using the USART feature on PIC 16.
Both the transmitter and receiver are both PIC 16s.
Can i check if the way to call the receive function is correct conceptually
...
0
votes
1answer
543 views
How tty driver interacts with UART driver during read/write opetations?
I am working on modification/development of a SDIO UART driver.
And would like to know:
How tty driver interacts with UART driver during read/write operations? I am interested in buffer management.
...
0
votes
4answers
445 views
Unable take input from USART - FreeRTOS - AT32UC3A0512
Just trying my hands on FreeRTOS. Following are my setup -
Micro-controller - AT32UC3A0512
Board - EVK1105
Using FreeRTOS
Environment - AVR Studio 5 with ASF latest 2.3 framework
I just created a ...
0
votes
1answer
439 views
C on ARM - Waiting for UART Receive
I am trying to modify a function to be more sensible for my purposes;
int getc0 (void)
{
while ( (U0LSR & 0x01) == 0 ); //Wait for character
return U0RBR;
}
The above code causes the ...
0
votes
1answer
700 views
Linux Uart driver modification
I want to modify my linux kernel's (2.6.32) UART driver. I am using the standard uart driver for ttyS2 I dont know the exact files. The problem is Simple, setting and keeping a gpio pin high during ...
0
votes
3answers
365 views
uart buffer is not read
I am trying to read binary data from a serial device in c on linux.
The problem is, that sometimes there are chars in the driver's internal buffer, but polling (with select(2)) returns saying the ...