RS232 Communication for Inficon Leak checker UL3000 (2024)

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Search instead for

Did you mean:

Topic Options

  • Subscribe to RSS Feed
  • Mark Topic as New
  • Mark Topic as Read
  • Float this Topic for Current User
  • Bookmark
  • Subscribe
  • Mute
  • Printer Friendly Page
  • All Forum Topics
  • Previous Topic
  • Next Topic

RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000 (1)

RS232 Communication for Inficon Leak checker UL3000 (2)rosh

Member

‎07-24-202401:25 PM

Options

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report to a Moderator

I am having difficulties trying to establish RS232 Communication with an Inficon Leak Checker - UL3000. I am able to send commands via Hyper-terminal but I can't communicate via Labview.

A few of the commands I was able to send using Hyperterminal was "*start", "*stop", "*read?"

I got this information from their programmer's manual: "In ASCII protocol any command starts with « * » (ASCII code 42dec/2Ahex) and isfinished with the end sign CR (ASCII code 13dec/0Dhex). There is no differentiationbetween upper and lower case."

I am using the "Simple Serial.vi" from the Labview examples (19200 baud, 8 data bits, no parity, 1 stop bit). I tried the commands with \n and \r at the end and still no luck.

Any help would be greatly appreciated.

0Kudos

Message 1 of 8

(127 Views)

Reply

Re: RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000 (3)

RS232 Communication for Inficon Leak checker UL3000 (4)santo_13

Trusted Enthusiast

‎07-24-202402:01 PM

Options

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report to a Moderator

Please share your VI (in v20.0 or older) and attach the instrument programmer's manual.

Santhosh
Soliton Technologies

New to the forum? Please read community guidelines and how to ask smart questions

Only two ways to appreciate someone who spent their free time to reply/answer your question - give them Kudos or mark their reply as the answer/solution.

Finding it hard to source NI hardware? Try NI Trading Post

0Kudos

Message 2 of 8

(115 Views)

Reply

Re: RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000 (5)

RS232 Communication for Inficon Leak checker UL3000 (6)Kyle97330

Trusted Enthusiast

‎07-24-202406:10 PM

Options

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report to a Moderator

I used a UL1000 before which I believe uses the same protocols. It was about 4 years ago so while I still have my code, it's not fresh in my mind.

This was my VISA initialize:

RS232 Communication for Inficon Leak checker UL3000 (7)

This is part of the subVI I made to send queries to the device:

RS232 Communication for Inficon Leak checker UL3000 (8)

I don't have access to the device to try to find out why the "Simple serial" example modified wouldn't work while these did.

Do you just get a timeout error on the"Simple serial" example or is it something else?

0Kudos

Message 3 of 8

(78 Views)

Reply

Re: RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000 (9)

RS232 Communication for Inficon Leak checker UL3000 (10)rosh

Member

Author

‎07-25-202408:46 AM

Options

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report to a Moderator

I am getting this error "Error -1073807253 occurred at VISA Read in Simple Serial.vi
Possible reason(s):
VISA: (Hex 0xBFFF006B) A framing error occurred during transfer."

I modified the vi to match yours and still getting the same error.

What's the syntax of the command/query you use? I am trying these commands *start, *stop, *read?.

0Kudos

Message 4 of 8

(47 Views)

Reply

Re: RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000 (11)

RS232 Communication for Inficon Leak checker UL3000 (12)rosh

Member

Author

‎07-25-202409:46 AM

Options

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report to a Moderator

Hi Santhosh,

I am unable to upload any files from my work computer. My program is identical to the picture posted byKyle97330

0Kudos

Message 5 of 8

(40 Views)

Reply

Re: RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000 (13)

RS232 Communication for Inficon Leak checker UL3000 (14)JÞB

Knight of NI

‎07-25-202410:14 AM

Options

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report to a Moderator
@roshwrote:

Hi Santhosh,

I am unable to upload any files from my work computer. My program is identical to the picture posted byKyle97330

That might be the problem.

Kyle wrote some obfuscated code. First the term char constant on the init really should be showing the radix (right-click show radix) so we can see that "13" is 0x0D. Then, since the default is to enable sending the term char, adding another EOL constant will send <EOL><CR> that's two terminations, (of course a framing error!) Lastly, <EOL> is platform dependant and may be CR,LF or CR .

"Should be" isn't "Is" -Jay

0Kudos

Message 6 of 8

(35 Views)

Reply

Re: RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000 (15)

RS232 Communication for Inficon Leak checker UL3000 (16)crossrulzRS232 Communication for Inficon Leak checker UL3000 (17)

Knight of NI

‎07-25-202410:29 AM

Options

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report to a Moderator
@JÞBwrote:
Then, since the default is to enable sending the term char, adding another EOL constant will send <EOL><CR> that's two terminations, (of course a framing error!) Lastly, <EOL> is platform dependant and may be CR,LF or CR .

An incorrect termination character will not cause a framing error. A framing error is at the hardware level, meaning the UART frame for a single byte was wrong. This points to a setting error, typically the Baud Rate.

RS232 Communication for Inficon Leak checker UL3000 (18)RS232 Communication for Inficon Leak checker UL3000 (19)RS232 Communication for Inficon Leak checker UL3000 (20)
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5

0Kudos

Message 7 of 8

(31 Views)

Reply

Re: RS232 Communication for Inficon Leak checker UL3000

RS232 Communication for Inficon Leak checker UL3000 (21)

RS232 Communication for Inficon Leak checker UL3000 (22)JÞB

Knight of NI

‎07-25-202411:23 AM - edited ‎07-25-202411:31 AM

Options

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report to a Moderator
@crossrulzwrote:
@JÞBwrote:
Then, since the default is to enable sending the term char, adding another EOL constant will send <EOL><CR> that's two terminations, (of course a framing error!) Lastly, <EOL> is platform dependant and may be CR,LF or CR .

An incorrect termination character will not cause a framing error. A framing error is at the hardware level, meaning the UART frame for a single byte was wrong. This points to a setting error, typically the Baud Rate.

Tim, Those devices "Step on their own toes" when receiving multiple term Characters. Just as the silly Firmware Engineer wrote the code to do. Been there Done that when you were in diapers (at least you were really young)

The second term char raises an interrupt and the serial port just plain hangs for moment, even in the middle of writing a character. Nasty thing.

"Should be" isn't "Is" -Jay

0Kudos

Message 8 of 8

(20 Views)

Reply

  • All Forum Topics
  • Previous Topic
  • Next Topic
RS232 Communication for Inficon Leak checker UL3000 (2024)

References

Top Articles
Latest Posts
Article information

Author: Greg O'Connell

Last Updated:

Views: 5629

Rating: 4.1 / 5 (42 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Greg O'Connell

Birthday: 1992-01-10

Address: Suite 517 2436 Jefferey Pass, Shanitaside, UT 27519

Phone: +2614651609714

Job: Education Developer

Hobby: Cooking, Gambling, Pottery, Shooting, Baseball, Singing, Snowboarding

Introduction: My name is Greg O'Connell, I am a delightful, colorful, talented, kind, lively, modern, tender person who loves writing and wants to share my knowledge and understanding with you.