02-11-2025 03:27 AM
i want to create test case hardware flow control rts/cts using LabVIEW and stm32 board.
can u tell me steps how to implement LabVIEW setup.
the flow is the stm32 send data to labview when labview buffer gets filled then LabVIEW RTS send high signal to CTS of STM32.
02-11-2025 07:22 AM
@AnupSW13 wrote:
i want to create test case hardware flow control rts/cts using LabVIEW and stm32 board.
can u tell me steps how to implement LabVIEW setup.
the flow is the stm32 send data to labview when labview buffer gets filled then LabVIEW RTS send high signal to CTS of STM32.
The way you describe it won't work! You do not have that low level control to the actual buffering and the serial port driver has potentially huge amounts of memory that are hard to fill be something like an STM32 board in a reasonable time. You can control RTS however explicitly and in that way could cause the CTS signal on the STM32 to change. But from what you have explained so far it is not clear what you really try to do.
Are you concerned that your STM32 could overrun the PC? Or do you want to test RTS/CTS operation? Or something else?
02-12-2025 04:13 AM
I want to test RTS/CTS operation between Labview and STM32 Board via UART?
02-12-2025 04:44 AM
VISA lets you control the state of RTS and monitor the CTS signal through its properties:
If you were aware of this but don't feel this is what you need, you will have to explain in much more detail what it really is you try to do!
02-18-2025 05:48 AM
im reading data from stm32 board and if buffer gets filled it will write XOFF to stm32 board to stop transmission and if bufferis empty it will send xon to resume transmission , if something is wrong please help
02-18-2025 10:04 AM