RS232-Connection / dial guage

Hi!
I would like to connect a dial gauge per rs232 to labview7.1. But it doesn´t work. The manual says, that the signal "dtr" has to be low for 140ms. then the data will be automatically sent by the equipment. But how can i program the dtr signal individually? I am programming with the visa controls. I thought that this would be the simplest way to programming rs232. is there another simple opportunity to program the rs232-dtr-signal in labview7.1?
Thanx for all
Timmy

thanx a lot. but it isnt running. always i get an error while reading the visa! i attached my vi incl. the interface description. perhaps anyone can detect some missed basic details?! I am really glad about every tip i can get.
bye timmy
Attachments:
rs232.zip ‏92 KB

Similar Messages

  • AT Commands over Bluetooth RS232 Connection

    Hi all and thank you in advance.
    I am trying hard to locate security related information about the following. If I establish an RS232 connection with a mobile phone through Bluetooth, is it possible then to utilize that connection to issue AT commands to the mobile phone in order to invoke the cellular modem? I have the impression that under MIDP such functionality is deliberately restricted for security reasons. Is this true?
    PS.I know there are similar posts in the forum but non of them has been answered so I’m giving it a try.
    Once again... thank you.

    seanfisher, welcome to the forum. Please don't post in threads that are long dead. This question was asked 3½ years ago and it's hardly likely that Habib9, who hasn't visited these forums in the last 2½ years, is still waiting for an answer.
    I'm locking this thread now and blocking your post.
    db

  • 3D Dial Guage not showing up

    Hi All,
    After the upgrade of MII from 12.1 to 14,  I am unable to see the animated object. It displays nothing on click of the 3D Dial guage object in the Default folder of workbench.
    All other objects like Alerter,LED meter etc are displaying, except the Half guage, 3D guage.
    Do I need to upgrade on patch?
    Note: Current MII version is 14, SP4 and Patch 5.
    Thanks,
    Padma Rao

    Hi,
    So you downloaded the Materials.zxp and used Extension Manager to install?
    Do you have any of the .p3m files here:
    Users/user/Library/Application Support/Adobe/Adobe Photoshop CS5/Presets/Materials
    or /Applications/Adobe Photoshop CS5/Presets/Materials
    If not, that's where they should be. We've seen the Extension Manager installation have various problems including silent failures. You can change the Materials.zxp extesion to .zip and then unzip to find the individual material files. Copy them manually over to the user directory.
    Now launch Ps and with a 3D layer selected and an existing material targeted, click the material picker icon and then go to the upper right flyout. From this menu you should be able to replace/append the previewed material samples. Hopefully this screen shot illustrates this OK.
    regards,
    steve

  • Sending binary file via RS232 connection

    Hi,
    I want to send a binary file via RS232 connection but I have troubles reading the .bin file and then converting the data to string in order to send it via RS232. Any ideas how i can deal with this?
    Thanks in advance,
    IG. 

    It is hard to help then you do not post any code. I suggest you go to the toolbar then help. Then you select Find Examples. Search for files. Also since you are new to Labview always have context help enabled. Both tools are important if you want to learn Labview. Feel free to post again if you are stuck.
    Besides which, my opinion is that Express VIs Carthage must be destroyed deleted
    (Sorry no Labview "brag list" so far)

  • How to get status of an rs232 connection

    Hi,
    I am trying to read out the status of on RS232 connection.
    How can I do this?
    Moreover would it be great to make the handshake visible! Is there a way that I can do that?
    I would like to make a program something like where I can push a button "connect", get the status that i am connected and then make it possible to send some data....
    I would really thank you if you can help me.
    Sincerely Tim

    The more fundamental problem is that except for an indication of whether or not it has been initialized and perhaps the number of bytes in the port buffer, a serial port doesn't have any sort of real status. RS232 communications simply isn't that sophisticated. For what it's worth, unless the device you are working with is very old, monitoring the handshake lines probibly won't tell you anything because most modern serial device don't use any handshaking.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Color range on 3D dial guage

    Hi,
    I am using 3D Dial gauge. I am trying to set the limits for red, yellow and green arcs.
    My requirement is to set the arcs as  0 to 85 : Red, 85 to 95 :Yellow, 95 to 100: Green with the Min range and Max range as 0-100.
    In the SVG Element properties, i can see the red arc , green arc and yellow arc but how to limit the range is not clear to me.
    Any idea will be a great help
    Thanks
    Shipra
    M-9886452721

    Hi Shipra,
    I think this thread will help you out.
    Re: Changing the limits on 3D Dial Guage
    Also, any changes you wish to make in your SVG, you can use Inkscape. Its a free and readily available tool and easy to understand and use.
    Check out these links too:
    Re: SVG PIE Chart - Limits
    Re: Half Gauge SVG - Change Coloured arcs
    Re: Limits on 3D dial gauge
    All the best.
    Regards,
    Gita K C.

  • Changing the limits on 3D Dial Guage

    Hi,
    I am trying to limit the Red,Green & Yellow arc lengths on the 3d Dial Guage. For E.g. i want to show 0-30 as red, 30-50 as yellow & the rest as green. I am able to rotate the arcs using "transform" property of the respective arcs.
    I found few threads on sdn which says it can be done using SVG Object properties instead of using the "transform" property.
    Can you pls. tell me exactly how using the SVG Object properties we can limit the low & high values of each of the arc's?
    Regards,
    Sushma.

    Hi Sushma,
    I had a similar requirement long back and I got the solution by playing with it. Please try the below.
    Define Object Properties (of type Number):
       HighLimit
       LowLimit
       MaxRange
       MinRange
    In your case, set HighLimit to 50 and LowLimit to 30 . Set MinRange and MaxRange as per your requirements (for example: 0 and 100)
    Set Animation Links as follows (click Assign Link to set this value): 
    YellowArc: d
    "M107.59 266.52  A 124,124 0 "  & if( ((HighLimit - MinRange) / (MaxRange - MinRange) ) > (180.0/320.0) ,1,0) & " 1 " & (150 + 124 * cos(pi * (110 + ((HighLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180)) & " " & (150 + 124 * sin(pi * (110 + ((HighLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180))
    RedArc: d
    "M107.59 266.52  A 124,124 0 "  & if( ((LowLimit - MinRange) / (MaxRange - MinRange) ) > (180.0/320.0) ,1,0) & " 1 " & (150 + 124 * cos(pi * (110 + ((LowLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180)) & " " & (150 + 124 * sin(pi * (110 + ((LowLimit - MinRange) / (MaxRange - MinRange) ) * 320) / 180))
    Thanks,
    John

  • Dial-up and newly acquired AEBS ~ can't detect modem connection / dial tone

    I've read the threads but have yet to find an applicable solution...
    Just received the new AExtremeBS, connected and set up as prompted...
    Not able to get online with my iBook G4 as the modem / dial tone cannot be detected.
    Obviously, since I'm posting this dilemma, the dial tone exists and everything is fine as long as I remain wired (defeating the purpose of the AEBS).
    Simple answer?
    Also, when this is resolved, plan to connect wireless printer...
    Suggestions?
    iBook G4 (1.4 GHz / 1.5 GB)   Mac OS X (10.4.7)   iMac (9.2); Performa 631CD (Ancient 7.5); MacPlus (Primordial Ooze OS)

    I've read the threads but have yet to find an
    applicable solution...
    Just received the new AExtremeBS, connected and set
    up as prompted...
    Not able to get online with my iBook G4 as the modem
    / dial tone cannot be detected.
    Obviously, since I'm posting this dilemma, the dial
    tone exists and everything is fine as long as I
    remain wired (defeating the purpose of the AEBS).
    Simple answer?
    Also, when this is resolved, plan to connect wireless
    printer...
    Suggestions?
    * Figured it out myself...needed to use the AirPort Set Up Assistant AND the AirPort Admin Utility AND reconfigure modem settings PLUS reset the Base Station, ALL REPEATEDLY...but now can get online AND print wirelessly (using the Brother MFC-640 CW).

  • How to keep alive RS232 connection

    Hello everyone. I have a problem with RS232 communication. To activate the connection I have to send the string "RS232", then to keep it alive I have to send every second CR, but in the meantime, I must be able to send other character strings without delay on the same port (COM7). Can anyone help me?
    Thanks 
    Solved!
    Go to Solution.

    RS232 standard does not require by itself to be kept alive someway, so I suppose is your remote device that requires it.
    In every case, you could create a 1-sec timer and have its callback send CR periodically over the serial port.
    To avoid conflicts between this task and the rest of the application you could use a lock: basically, after creating the lock, each function that wants to access the serial port must call CmtGetLock (), operate on the port and call CmtReleaseLock () afterwards. If the lock is owned by another function, other functions trying to get access are frozen waiting for the lock, so you must be careful in designing com-related function so that they are fast. If you do not want to have some function be blocked while waiting for the lock you can use CmtTryToGetLock instead of CmtGetLock. A few informations on locks can be found in this tutorial as well as in this chapter of the Programmer reference.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Multi Rs232 connections

    Hi,
    I developed a small test bench her equipments controlled by RS-232. The test will be done with TestStand and LabWindows. I want to use multiple ports RS-232, which communicate with Labwindows (DLLs). I want to know if is possible to keep these connections open simultaneously, or can not do that. If we can do that, Do you recommend this method or it's better to open and close a connection every time I order equipment.
    Thanks
    Solved!
    Go to Solution.

    Thanks for your response,
    As I have said from the beginning, I have several materials (DMM, SCOPE, PowerSupply ...) are all controlled by RS232. So the test sequence every time communicates with one of these materials. My question is it's better to keep the communication open with all hardware and each time I access the requested material or I have to open and close communication with one material selected during the test sequence.
    Thanks

  • Safari and Entourage suddenly won't connect, or stay connected (dial-up)

    Help! (Please note that this is a question about a MacBook; ignore "Powerbook G4" signature).
    The Safari and Entourage applications on my new MacBook, which is on an Apple USB external dial-up modem (NOT wireless or Ethernet), have suddenly stopped connecting. Manifestations:
    (1) Safari: When Safari is opened, it connects normally via dial-up to the start page (Google), but then either won't connect to the next website or goes to a new website, then disconnects after a minute or two. The error message then appears: "You are not connected to the Internet. Safari can't open the page [website address] because your computer isn't connected."
    (2) Entourage: After this problem recurred several times, I decided to test Entourage, which had been working fine. I connected manually to the Internet, and with the connection holding, I tried to send a test message to myself. I then got the error message, "Your Mac OS Network Preferences are not configured to allow automatic connections" (they were, and anyway, the computer was already connected). The computer then disconnected and I got the message "The computer has disconnected because the other side is not responding."
    I've tried the following, without success: (1) Restarting. (2) Resetting Safari. (3) When neither helped, I double-checked my network configurations, as well as my account settings in Entourage, and they all seemed okay. However, each time I typed the correct password into the network configurations box, it added about 8 additional dots as soon as I checked "Apply." (I've been told that this is a security feature, but it hasn't happened in the past.)
    I then checked the settings using the Apple Network Diagnostics program that Safari offers. ND verified that the modem, modem settings, and ISP settings were okay, but that "Network Settings failed," "Internet failed," and "Server failed." Since the network settings looked right, I don't know what, if anything, this means, or whether the problem comes from something else.
    Thanks for any suggestions anyone has.

    Mandita 3 and Virtual Canary: Sorry it's taken me so long to get back to you. If you're still tuning in, in my case the problem of random disconnects on the USB external modem seems to have been resolved by simply switching USB ports on the MacBook.
    I talked yesterday to an AppleCare "product specialist"--ie, a level 2 techie--whom I had requested to take me through an Archive and Install of OS 10.4.6 to downgrade from the 10.4.7 upgrade I had done, which I thought was causing the problem because the kernel panics (recorded in my computer's log) began happening right after that.
    He suggested that we first try the simple expedient of switching to the other port--he said that he had had this problem several times on his own computer with other USB devices, and that had done the trick; if it didn't work, we could still do the Archive and Install, but he said that "Some USB devices just turn out to be incompatible with one or the other port; it's just quirky."
    I've been testing the machine for a couple of hours and the switch seems to have taken care of the problem (to double-check, I went back to the first port once and the random disconnects after 2-5 minutes began happening again).
    I've only been testing the machine for a short time, so I can't say for sure that this works. Also, even if it does work, I'm going to call my authorized repair place and ask if the "defective" port can be repaired or replaced--it was working fine for the first 6 weeks that I had the machine, so presumably the one that still works fine could develop an allergy to the external modem, too.
    Hope this information is of use to you.

  • Help to rs232 connection

    Hi all and sorry for my english...
    I'm developing a little software that need a connection rs232 with a peripheral...
    I have downloaded the latest versione of RXTX library and, from the same site, using the class TwoWaySerialComm to communicate through the serial cable
    The connection seems to be done, but the output isn't sent...
    The cable is a FTDI usb to rs232 and, with a program equipedd me from producer of peripheral, I can test it and it's working
    Anyone can suggest me something?
    Thanks

    Ok sorry, but there isn't a forum for that library... And double sorry if this is not the right section but i'm newbie and I don't know where to write for this problem
    What kind of info I must write? I'm writing that the cable work with other program, then the problem is java communication...
    The class used is this Two way communcation with the serial port - Rxtx
    I'm asking if anyone have used the same library and have encountered some problem with this

  • Unable to connect Dial up connections

    We are having dialup 15  connections in router 3845 model  IOS version 12.4 1A.
    We are unable to have a connection between dialup branches to headquarter. these are the command
    aaa new-model
    aaa authentication login telnet local
    aaa authentication login ppp local
    aaa authentication ppp ppp local
    aaa authorization network ppp local
    aaa session-id common
    interface Group-Async1
    description "ASYN-GROUP"
    ip unnumbered GigabitEthernet0/1
    encapsulation ppp
    ip tcp header-compression
    async dynamic routing
    async mode interactive
    peer default ip address pool pool
    ppp authentication pap chap ppp
    ppp authorization ppp
    group-range 1/0 1/15
    line aux 0
    stopbits 1
    line 1/0 1/15
    login authentication local
    modem Dialin
    modem autoconfigure discovery
    autoselect during-login
    autoselect ppp
    flowcontrol hardware
    ip local pool pool 192.168.100.1 192.168.100.30
    ip classless
    When I tried to debug I found the below output :
    RDCCI_2ND_HQ#
    000381: *Sep 17 10:45:43.823: Modem 1/12 ACF: State: Ringing
    000382: *Sep 17 10:45:43.823: Modem 1/12 ACF: Event: Incoming Ring
    RDCCI_2ND_HQ#
    000383: *Sep 17 10:45:45.295: Modem 1/12 ACF: Event: Hook state: Off Hook Answering
    000384: *Sep 17 10:45:45.295: Modem 1/12 ACF: State: Answering
    RDCCI_2ND_HQ#
    000385: *Sep 17 10:46:06.723: Modem 1/12 ACF: Event: CONNECT V34/LAPM/V44/24000:TX/26400:RX
    000386: *Sep 17 10:46:06.723: Modem 1/12 ACF: State: Connected
    000387: *Sep 17 10:46:07.695: TTY1/12: DSR came up
    000388: *Sep 17 10:46:07.695: tty1/12: Modem: IDLE->(unknown)
    000389: *Sep 17 10:46:07.695: TTY1/12: EXEC creation
    000390: *Sep 17 10:46:07.695: AAA/BIND(00000017): Bind i/f Async1/12
    000391: *Sep 17 10:46:07.695: TTY1/12: create timer type 10, 30 seconds
    RDCCI_2ND_HQ#
    000392: *Sep 17 10:46:11.071: TTY1/12: Autoselect(2) sample [suppressed--line is not echoing]
    000393: *Sep 17 10:46:11.071: TTY1/12: Autoselect(2) sample [suppressed--line is not echoing]
    000394: *Sep 17 10:46:11.075: TTY1/12: Autoselect(2) sample [suppressed--line is not echoing]
    000395: *Sep 17 10:46:11.075: TTY1/12: Autoselect(2) sample 7EFF7D23
    000396: *Sep 17 10:46:11.075: TTY1/12 Autoselect cmd:  ppp negotiate
    000397: *Sep 17 10:46:11.075: TTY1/12: pause timer type 10 (OK)
    000398: *Sep 17 10:46:11.075: TTY1/12: EXEC creation
    000399: *Sep 17 10:46:11.075: TTY1/12: create timer type 1, 600 seconds
    000400: *Sep 17 10:46:11.075: As1/12 PPP: Consuming data in TTY1/12 receive queue
    000401: *Sep 17 10:46:11.075: APPP1/12: Input packet, len = 27, header = FF 3 C0 21
    000402: *Sep 17 10:46:11.075: As1/12 PPP: Caching packet rcvd on TTY1/12
    000403: *Sep 17 10:46:11.075: Async1/12: Setup PPP framing on TTY1/12
    000404: *Sep 17 10:46:11.075: TTY1/12: destroy timer type 1
    000405
    RDCCI_2ND_HQ#: *Sep 17 10:46:11.075: TTY1/12: no timer type 0 to destroy
    000406: *Sep 17 10:46:11.075: TTY1/12: no timer type 2 to destroy
    000407: *Sep 17 10:46:11.075: As1/12 PPP: Async Protocol Mode started for 0.0.0.0
    000408: *Sep 17 10:46:11.075: As1/12 PPP: I pkt type 0xC021, datagramsize 27 link[ppp]
    000409: *Sep 17 10:46:11.075: As1/12 PPP: I pkt type 0xC021, datagramsize 27 link[ppp]
    000410: *Sep 17 10:46:11.075: As1/12 PPP: Processed packet cached during autoselect
    000411: *Sep 17 10:46:11.075: As1/12 LCP: I CONFREQ [Closed] id 0 len 23
    000412: *Sep 17 10:46:11.075: As1/12 LCP:    ACCM 0x00000000 (0x020600000000)
    000413: *Sep 17 10:46:11.075: As1/12 LCP:    MagicNumber 0x56920282 (0x050656920282)
    000414: *Sep 17 10:46:11.075: As1/12 LCP:    PFC (0x0702)
    000415: *Sep 17 10:46:11.075: As1/12 LCP:    ACFC (0x0802)
    000416: *Sep 17 10:46:11.075: As1/12 LCP:    Callback 6  (0x0D0306)
    000417: *Sep 17 10:46:11.075: As1/12: Enabling PPP framing in UART Microcode on TTY1/12 succeeded
    000418: *Sep 17 10:46:11.075: As1/12 LCP: Lower layer not up, Fast Starting
    000419: *Sep 17 10:46:11.075: As1/12 PPP: Using modem call direction
    000420: *Sep 17 10:46:11.075: As1/12 PPP: Treating connection as a callin
    000421: *Sep 17 10:46:11.075: As1/12 PPP: Session handle[800001A] Session id[19]
    000422: *Sep 17 10:46:11.075: As1/12 PPP: Phase is ESTABLISHING, Passive Open
    000423: *Sep 17 10:46:11.075: As1/12 LCP: State is Listen
    000424: *Sep 17 10:46:11.075: As1/12 LCP: O CONFREQ [Listen] id 13 len 24
    000425: *Sep 17 10:46:11.075: As1/12 LCP:    ACCM 0x000A0000 (0x0206000A0000)
    000426: *Sep 17 10:46:11.075: As1/12 LCP:    AuthProto PAP (0x0304C023)
    000427: *Sep 17 10:46:11.075: As1/12 LCP:    MagicNumber 0x14A18BAE (0x050614A18BAE)
    000428: *Sep 17 10:46:11.079: As1/12 LCP:    PFC (0x0702)
    000429: *Sep 17 10:46:11.079: As1/12 LCP:    ACFC (0x0802)
    000430: *Sep 17 10:46:11.079: As1/12 LCP: O CONFREJ [Listen] id 0 len 7
    000431: *Sep 17 10:46:11.079: As1/12 LCP:    Callback 6  (0x0D0306)
    000432: *Sep 17 10:46:11.079: Modem 1/12 ACF: CMD PPP mode active
    000433: *Sep 17 10:46:11.079: Modem 1/12 ACF: CMD PPP escape maps set: TX map=00000000 RX map=FFFFFFFF
    000434: *Sep 17 10:46:11.079: %LINK-3-UPDOWN: Interface Async1/12, changed state to up
    000435: *Sep 17 10:46:11.559: As1/12 PPP: I pkt type 0xC021, datagramsize 28 link[ppp]
    000436: *Sep 17 10:46:11.559: As1/12 PPP: I pkt type 0xC021, datagramsize 28 link[ppp]
    000437: *Sep 17 10:46:11.559: As1/12 LCP: I CONFACK [REQsent] id 13 len 24
    000438: *Sep 17 10:46:11.559: As1/12 LCP:    ACCM 0x000A0000 (0x0206000A0000)
    000439: *Sep 17 10:46:11.559: As1/12 LCP:    AuthProto PAP (0x0304C023)
    000440: *Sep 17 10:46:11.559: As1/12 LCP:    MagicNumber 0x14A18BAE (0x050614A18BAE)
    000441: *Sep 17 10:46:11.559: As1/12 LCP:    PFC (0x0702)
    000442: *Sep 17 10:46:11.559: As1/12 LCP:    ACFC (0x0802)
    000443: *Sep 17 10:46:11.563: As1/12 PPP: I pkt type 0xC021, datagramsize 24 link[ppp]
    000444: *Sep 17 10:46:11.563: As1/12 PPP: I pkt type 0xC021, datagramsize 24 link[ppp]
    000445: *Sep 17 10:46:11.563: As1/12 LCP: I CONFREQ [ACKrcvd] id 1 len 20
    000446: *Sep 17 10:46:11.563: As1/12 LCP:    ACCM 0x00000000 (0x020600000000)
    000447: *Sep 17 10:46:11.563: As1/12 LCP:    MagicNumber 0x56920282 (0x050656920282)
    000448: *Sep 17 10:46:11.563: As1/12 LCP:    PFC (0x0702)
    000449: *Sep 17 10:46:11.563: As1/12 LCP:    ACFC (0x0802)
    000450: *Sep 17 10:46:11.563: As1/12 LCP: O CONFACK [ACKrcvd] id 1 len 20
    000451: *Sep 17 10:46:11.563: As1/12 LCP:    ACCM 0x00000000 (0x020600000000)
    000452: *Sep 17 10:46:11.563: As1/12 LCP:    MagicNumber 0x56920282 (0x050656920282)
    000453: *Sep 17 10:46:11.563: As1/12 LCP:    PFC (0x0702)
    000454: *Sep 17 10:46:11.563: As1/12 LCP:    ACFC (0x0802)
    000455: *Sep 17 10:46:11.567: As1/12 LCP: State is Open
    000456: *Sep 17 10:46:11.567: As1/12 PPP: Phase is AUTHENTICATING, by this end
    000457: *Sep 17 10:46:11.567: Modem 1/12 ACF: CMD PPP escape maps set: TX map=00000000 RX map=00000000
    000458: *Sep 17 10:46:11.859: As1/12 PPP: I pkt type 0xC021, datagramsize 20 link[ppp]
    000459: *Sep 17 10:46:11.859: As1/12 PPP: I pkt type 0xC021, datagramsize 20 link[ppp]
    000460: *Sep 17 10:46:11.859: As1/12 LCP: I IDENTIFY [Open] id 2 len 18 magic 0x56920282 MSRASV5.20
    000461: *Sep 17 10:46:11.863: As1/12 PPP: I pkt type 0xC021, datagramsize 25 link[ppp]
    000462: *Sep 17 10:46:11.863: As1/12 PPP: I pkt type 0xC021, datagramsize 25 link[ppp]
    000463: *Sep 17 10:46:11.863: As1/12 LCP: I IDENTIFY [Open] id 3 len 23 magic 0x56920282 MSRAS-0-ITADMIN
    000464: *Sep 17 10:46:11.863: As1/12 PPP: I pkt type 0xC021, datagramsize 26 link[ppp]
    000465: *Sep 17 10:46:11.863: As1/12 PPP: I pkt type 0xC021, datagramsize 26 link[ppp]
    000466: *Sep 17 10:46:11.863: As1/12 LCP: I IDENTIFY [Open] id 4 len 24 magic 0x56920282 \}3nk[^F?SVT]=}E
    000467: *Sep 17 10:46:11.867: As1/12 PPP: I pkt type 0xC023, datagramsize 16 link[ppp]
    000468: *Sep 17 10:46:11.867: As1/12 PPP: I pkt type 0xC023, datagramsize 16 link[ppp]
    000469: *Sep 17 10:46:11.867: As1/12 PAP: I AUTH-REQ id 2 len 14 from "test"
    000470: *Sep 17 10:46:11.867: As1/12 PAP: Authenticating peer test
    000471: *Sep 17 10:46:11.867: As1/12 PPP: Phase is FORWARDING, Attempting Forward
    000472: *Sep 17 10:46:11.867: As1/12 PPP: Phase is AUTHENTICATING, Unauthenticated User
    000473: *Sep 17 10:46:11.867: As1/12 PPP: Phase is FORWARDING, Attempting Forward
    000474: *Sep 17 10:46:11.867: As1/12 PPP: Phase is AUTHENTICATING, Authenticated User
    000475: *Sep 17 10:46:11.867: AAA/AUTHOR (0x17): Pick method list 'ppp'
    000476: *Sep 17 10:46:11.867: AAA/AUTHOR (0x17): Pick method list 'ppp'
    000477: *Sep 17 10:46:11.867: As1/12 PPP/AAA: Check Attr: Framed-Protocol
    000478: *Sep 17 10:46:11.867: As1/12 PPP/AAA: Check Attr: username
    000479: *Sep 17 10:46:11.867: As1/12 AAA/AUTHOR/FSM: We can start LCP
    000480: *Sep 17 10:46:11.867: As1/12 PPP/AAA: Check Attr: Framed-Protocol
    000481: *Sep 17 10:46:11.867: As1/12 PPP/AAA: Check Attr: username
    000482: *Sep 17 10:46:11.867: As1/12 AAA/AUTHOR/FSM: We can start IPCP
    000483: *Sep 17 10:46:11.867: As1/12 AAA/AUTHOR/LCP: Process Author
    000484: *Sep 17 10:46:11.867: As1/12 PAP: O AUTH-ACK id 2 len 5
    000485: *Sep 17 10:46:11.867: As1/12 PPP: Phase is UP
    000486: *Sep 17 10:46:11.867: As1/12 AAA/AUTHOR/IPCP: Already authorized
    000487: *Sep 17 10:46:11.867: As1/12 AAA/AUTHOR/FSM: We can start IPCP
    000488: *Sep 17 10:46:11.867: As1/12 IPCP: O CONFREQ [Closed] id 1 len 16
    000489: *Sep 17 10:46:11.867: As1/12 IPCP:    CompressType VJ 15 slots CompressSlotID (0x0206002D0F01)
    000490: *Sep 17 10:46:11.867: As1/12 IPCP:    Address 192.168.100.1 (0x0306C0A86401)
    000491: *Sep 17 10:46:11.867: As1/12 PPP: Process pending ncp packets
    000492: *Sep 17 10:46:12.163: As1/12 PPP: I pkt type 0x8057, datagramsize 16 link[ipv6]
    000493: *Sep 17 10:46:12.163: As1/12 PPP: I pkt type 0x8057, datagramsize 16 link[ipv6]
    000494: *Sep 17 10:46:12.163: As1/12 IPV6CP: I CONFREQ [Not negotiated] id 5 len 14
    000495: *Sep 17 10:46:12.163: As1/12 IPV6CP:    Interface-Id 6C47:6D95:1AE3:2F30 (0x010A6C476D951AE32F30)
    000496: *Sep 17 10:46:12.163: As1/12 LCP: O PROTREJ [Open] id 14 len 20 protocol IPV6CP (0x80570105000E010A6C476D951AE32F30)
    000497: *Sep 17 10:46:12.163: As1/12 PPP: I pkt type 0x80FD, datagramsize 12 link[ccp]
    000498: *Sep 17 10:46:12.163: As1/12 PPP: I pkt type 0x80FD, datagramsize 12 link[ccp]
    000499: *Sep 17 10:46:12.163: As1/12 CCP: I CONFREQ [Not negotiated] id 6 len 10
    000500: *Sep 17 10:46:12.163: As1/12 CCP:    MS-PPC supported bits 0x00000001 (0x120600000001)
    000501: *Sep 17 10:46:12.163: As1/12 LCP: O PROTREJ [Open] id 15 len 16 protocol CCP (0x80FD0106000A120600000001)
    000502: *Sep 17 10:46:12.171: As1/12 PPP: I pkt type 0x8021, datagramsize 42 link[ip]
    000503: *Sep 17 10:46:12.171: As1/12 PPP: I pkt type 0x8021, datagramsize 42 link[ip]
    000504: *Sep 17 10:46:12.171: As1/12 IPCP: I CONFREQ [REQsent] id 7 len 40
    000505: *Sep 17 10:46:12.171: As1/12 IPCP:    CompressType VJ 15 slots CompressSlotID (0x0206002D0F01)
    000506: *Sep 17 10:46:12.171: As1/12 IPCP:    Address 0.0.0.0 (0x030600000000)
    000507: *Sep 17 10:46:12.171: As1/12 IPCP:    PrimaryDNS 0.0.0.0 (0x810600000000)
    000508: *Sep 17 10:46:12.171: As1/12 IPCP:    PrimaryWINS 0.0.0.0 (0x820600000000)
    000509: *Sep 17 10:46:12.171: As1/12 IPCP:    SecondaryDNS 0.0.0.0 (0x830600000000)
    000510: *Sep 17 10:46:12.171: As1/12 IPCP:    SecondaryWINS 0.0.0.0 (0x840600000000)
    000511: *Sep 17 10:46:12.171: As1/12 AAA/AUTHOR/IPCP: Start.  Her address 0.0.0.0, we want 0.0.0.0
    000512: *Sep 17 10:46:12.171: As1/12 AAA/AUTHOR/IPCP: Authorization succeeded
    000513: *Sep 17 10:46:12.171: As1/12 AAA/AUTHOR/IPCP: Done.  Her address 0.0.0.0, we want 0.0.0.0
    000514: *Sep 17 10:46:12.171: As1/12 AAA/AUTHOR/CONFIG: Pools refreshed for pool pool
    000515: *Sep 17 10:46:12.171: AAA/AUTHOR (0x17): Invalid method list id=0x0
    000516: *Sep 17 10:46:12.171: As1/12 IPCP: Cannot satisfy pool request
    000517: *Sep 17 10:46:12.171: As1/12 IPCP: Neither side knows remote address
    000518: *Sep 17 10:46:12.171: As1/12 AAA/AUTHOR/IPCP: no author-info for primary dns
    000519: *Sep 17 10:46:12.171: As1/12 AAA/AUTHOR/IPCP: no author-info for primary wins
    000520: *Sep 17 10:46:12.171: As1/12 AAA/AUTHOR/IPCP: no author-info for seconday dns
    000521: *Sep 17 10:46:12.171: As1/12 AAA/AUTHOR/IPCP: no author-info for seconday wins
    000522: *Sep 17 10:46:12.171: As1/12 IPCP: O CONFREJ [REQsent] id 7 len 22
    000523: *Sep 17 10:46:12.171: As1/12 IPCP:    Address 0.0.0.0 (0x030600000000)
    000524: *Sep 17 10:46:12.171: As1/12 IPCP:    PrimaryWINS 0.0.0.0 (0x820600000000)
    000525: *Sep 17 10:46:12.171: As1/12 IPCP:    SecondaryWINS 0.0.0.0 (0x840600000000)
    000526: *Sep 17 10:46:12.171: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000527: *Sep 17 10:46:12.171: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000528: *Sep 17 10:46:12.171: As1/12 IPCP: I CONFACK [REQsent] id 1 len 16
    000529: *Sep 17 10:46:12.171: As1/12 IPCP:    CompressType VJ 15 slots CompressSlotID (0x0206002D0F01)
    000530: *Sep 17 10:46:12.171: As1/12 IPCP:    Address 192.168.100.1 (0x0306C0A86401)
    000531: *Sep 17 10:46:12.447: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000532: *Sep 17 10:46:12.447: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000533: *Sep 17 10:46:12.447: As1/12 IPCP: I CONFREQ [ACKrcvd] id 8 len 16
    000534: *Sep 17 10:46:12.447: As1/12 IPCP:    CompressType VJ 15 slots CompressSlotID (0x0206002
    %This command has no effect on this line; use modem AT commands insteadD0F01)
    000535: *Sep 17 10:46:12.447: As1/12 IPCP:    Address 0.0.0.0 (0x030600000000)
    000536: *Sep 17 10:46:12.447: As1/12 AAA/AUTHOR/IPCP: Start.  Her address 0.0.0.0, we want 0.0.0.0
    000537: *Sep 17 10:46:12.447: As1/12 AAA/AUTHOR/IPCP: Authorization succeeded
    000538: *Sep 17 10:46:12.447: As1/12 AAA/AUTHOR/IPCP: Done.  Her address 0.0.0.0, we want 0.0.0.0
    000539: *Sep 17 10:46:12.447: As1/12 AAA/AUTHOR/CONFIG: Pool pool refresh skipped
    000540: *Sep 17 10:46:12.447: As1/12 AAA/AUTHOR/CONFIG: Pools refreshed 0 seconds ago
    000541: *Sep 17 10:46:12.447: As1/12 IPCP: Cannot satisfy pool request
    000542: *Sep 17 10:46:12.447: As1/12 IPCP: Neither side knows remote address
    000543: *Sep 17 10:46:12.447: As1/12 IPCP: O CONFREJ [ACKrcvd] id 8 len 10
    000544: *Sep 17 10:46:12.447: As1/12 IPCP:    Address 0.0.0.0 (0x030600000000)
    000545: *Sep 17 10:46:12.719: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000546: *Sep 17 10:46:12.719: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000547: *Sep 17 10:46:12.719: As1/12 IPCP: I TERMREQ [ACKrcvd] id 9 len 16 (0x56920282003CCD74000002E2)
    000548: *Sep 17 10:46:12.719: As1/12 IPCP: O TERMACK [ACKrcvd] id 9 len 4
    000549: *Sep 17 10:46:12.867: %LINEPROTO-5-UPDOWN: Line protocol on Interface Async1/12, changed state to up
    000550: *Sep 17 10:46:13.871: As1/12 IPCP: TIMEout: State REQsent
    000551: *Sep 17 10:46:13.871: As1/12 IPCP: O CONFREQ [REQsent] id 2 len 16
    000552: *Sep 17 10:46:13.871: As1/12 IPCP:    CompressType VJ 15 slots CompressSlotID (0x0206002D0F01)
    000553: *Sep 17 10:46:13.871: As1/12 IPCP:    Address 192.168.100.1 (0x0306C0A86401)
    000554: *Sep 17 10:46:14.327: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000555: *Sep 17 10:46:14.327: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000556: *Sep 17 10:46:14.327: As1/12 IPCP: I TERMACK [REQsent] id 2 len 16 (0x0206002D0F010306C0A86401)
    000557: *Sep 17 10:46:15.887: As1/12 IPCP: TIMEout: State REQsent
    000558: *Sep 17 10:46:15.887: As1/12 IPCP: O CONFREQ [REQsent] id 3 len 16
    000559: *Sep 17 10:46:15.887: As1/12 IPCP:    CompressType VJ 15 slots CompressSlotID (0x0206002D0F01)
    000560: *Sep 17 10:46:15.887: As1/12 IPCP:    Address 192.168.100.1 (0x0306C0A86401)
    000561: *Sep 17 10:46:16.139: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000562: *Sep 17 10:46:16.139: As1/12 PPP: I pkt type 0x8021, datagramsize 18 link[ip]
    000563: *Sep 17 10:46:16.139: As1/12 IPCP: I TERMACK [REQsent] id 3 len 16 (0x0206002D0F010306C0A86401)
    000564: *Sep 17 10:46:17.747: As1/12 PPP: I pkt type 0xC021, datagramsize 20 link[ppp]
    000565: *Sep 17 10:46:17.747: As1/12 PPP: I pkt type 0xC021, datagramsize 20 link[ppp]
    000566: *Sep 17 10:46:17.747: As1/12 LCP: I TERMREQ [Open] id 10 len 16 (0x56920282003CCD7400000000)
    000567: *Sep 17 10:46:17.747: As1/12 LCP: O TERMACK [Open] id 10 len 4
    000568: *Sep 17 10:46:17.751: As1/12 PPP: Sending Acct Event[Down] id[17]
    000569: *Sep 17 10:46:17.751: As1/12 IPCP: State is Closed
    000570: *Sep 17 10:46:17.751: As1/12 PPP: Phase is TERMINATING
    000571: *Sep 17 10:46:18.667: Modem 1/12 ACF: Event: Hook state: On Hook
    000572: *Sep 17 10:46:18.667: Modem 1/12 ACF: State: Hangup
    000573: *Sep 17 10:46:18.667: Modem 1/12 ACF: Event: DISCONNECT
    000574: *Sep 17 10:46:18.667: Modem 1/12 ACF: State: Idle
    000575: *Sep 17 10:46:18.695: TTY1/12: DSR was dropped
    000576: *Sep 17 10:46:18.695: tty1/12: Modem: READY->HANGUP
    000577: *Sep 17 10:46:18.695: TTY1/12: dropping DTR, hanging up
    000578: *Sep 17 10:46:18.695: TTY1/12: Async Int reset: Dropping DTR
    000579: *Sep 17 10:46:18.695: tty1/12: Modem: HANGUP->IDLE
    000580: *Sep 17 10:46:18.695: Modem 1/12 ACF: CMD DTR set low
    000581: *Sep 17 10:46:18.695: Modem 1/12 ACF: CMD DTR set low
    000582: *Sep 17 10:46:18.751: %LINEPROTO-5-UPDOWN: Line protocol on Interface Async1/12, changed state to down
    000583: *Sep 17 10:46:19.695: TTY1/12: cleanup pending. Delaying DTR
    000584: *Sep 17 10:46:19.695: TTY1/12: cleanup pending. Delaying DTR
    000585: *Sep 17 10:46:19.759: As1/12 LCP: TIMEout: State TERMsent
    000586: *Sep 17 10:46:19.759: As1/12 LCP: State is Closed
    000587: *Sep 17 10:46:19.759: As1/12 PPP: Phase is DOWN
    000588: *Sep 17 10:46:20.695: %LINK-5-CHANGED: Interface Async1/12, changed state to reset
    000589: *Sep 17 10:46:20.695: TTY1/12: cleanup pending. Delaying DTR
    000590: *Sep 17 10:46:20.695: TTY1/12: cleanup pending. Delaying DTR
    000591: *Sep 17 10:46:21.695: TTY1/12: cleanup pending. Delaying DTR
    000592: *Sep 17 10:46:21.695: TTY1/12: cleanup pending. Delaying DTR
    000593: *Sep 17 10:46:22.695: TTY1/12: cleanup pending. Delaying DTR
    000594: *Sep 17 10:46:22.695: TTY1/12: cleanup pending. Delaying DTR
    000595: *Sep 17 10:46:23.695: Async1/12: Async protocol mode stopped for 0.0.0.0
    000596: *Sep 17 10:46:23.695: Async1/12: Reset PPP framing on TTY1/12
    000597: *Sep 17 10:46:23.695: TTY1/12: no timer type 0 to destroy
    000598: *Sep 17 10:46:23.695: TTY1/12: no timer type 1 to destroy
    000599: *Sep 17 10:46:23.695: TTY1/12: no timer type 3 to destroy
    000600: *Sep 17 10:46:23.695: TTY1/12: no timer type 4 to destroy
    000601: *Sep 17 10:46:23.695: TTY1/12: destroy timer type 10
    000602: *Sep 17 10:46:23.695: TTY1/12: no timer type 2 to destroy
    000603: *Sep 17 10:46:23.695: Async1/12: allowing modem_process to continue hangup
    000604: *Sep 17 10:46:23.695: TTY1/12: restoring DTR
    000605: *Sep 17 10:46:23.695: Modem 1/12 ACF: CMD Character mode active
    000606: *Sep 17 10:46:23.695: Modem 1/12 ACF: CMD DTR set high
    000607: *Sep 17 10:46:23.695: Modem 1/12 ACF: State: Endcall
    000608: *Sep 17 10:46:23.695: TTY1/12: autoconfigure probe started
    000609: *Sep 17 10:46:23.831: Modem 1/12 ACF: Event: ENDCALL: Disconnect Received
    000610: *Sep 17 10:46:23.831: Modem 1/12 ACF: State: Init
    000611: *Sep 17 10:46:25.199: Modem 1/12 ACF: State: Idle
    000612: *Sep 17 10:46:25.695: %LINK-3-UPDOWN: Interface Async1/12, changed state to down
    RDCCI_2ND_HQ#
    RDCCI_2ND_HQ#
    000613: *Sep 17 10:48:25.695: TTY0: timer type 1 expired
    000614: *Sep 17 10:48:25.695: TTY0:  Exec timer (continued)
    Please try to help me out in this problem

    check the configuration whether it is correct or not ,is there any commands are missing
    i cann't input the command in line mode
    Router(config-line)#autoselect ppp
    %Autoselect w/o the interface command 'Async mode interactive' is useless
    Router(config-line)#
    check the commands and output of the debug
    aaa new-model
    aaa authentication login telnet local
    aaa authentication login ppp local
    aaa authentication ppp ppp local
    aaa authorization network ppp local
    aaa session-id common
    interface Group-Async1
    description "ASYN-GROUP"
    ip unnumbered GigabitEthernet0/1
    encapsulation ppp
    ip tcp header-compression
    async dynamic routing
    async mode interactive
    peer default ip address pool pool
    ppp authentication pap chap ppp
    ppp authorization ppp
    group-range 1/0 1/15
    line aux 0
    stopbits 1
    line 1/0 1/15
    login authentication local
    modem Dialin
    modem autoconfigure discovery
    autoselect during-login
    autoselect ppp
    flowcontrol hardware

  • 3D Dial Guage

    Hi Forum,
    Can anyone tell me how to change the limit of the arcs in the 3d Dial Gauge. I am able to change the color of the arc by changing "stroke" property. But i couldn't find any property to change the limit of the arcs.
    Also, i am able to put a value in the value box. But the needle is not moving according to the value that is assigned to value box.
    Thanks a lot,
    Regards
    Mike.

    Hi Michael,
    have you done the advanced training course yet?  Doing dynamic graphics is well explained in one of the labs.  If you search for "Dynamic Graphics" in the index of the help files, there's a good walk through there too.
    The rotation of the needle is calculated using a animation link.  The link you'd use is:
    SVG Element: Needle\Transform
    And the Expression would be something along the lines of:
    "rotate(" & (20 + 320 *  (Value - MinRange) / (MaxRange - MinRange))  & " 150 150)"
    Where Value, MinRange, etc... are Object Properties which you would've already defined and rotate is the functon on the angle calculated.  If you wanted to, you could also use the "Calculated Properties" to do the calculation instead of doing it directly in the animation link.
    I'm not too sure I understand what you're trying to do with the limit.  Is it the text value you're wanting to change, or the angle at which the limit sits?
    Regards,
    Lawrence
    Edited by: Lawrence Prinsloo on Jan 8, 2008 1:53 PM

  • Limit range on 3D dial guage

    Hi,
    i am using 3D Dial gauge. I am trying to show the number of deviations per batch in gauge.for example  less than 20 as green, 20 - 40 as yellow and rest as red.
    In the SVG Element properties, i can see the red arc , green arc and yellow arc but how to limit the range is not clear to me.
    Any idea will be a great help
    Thanks

    I was specifically referring to using the AnimationRenderer action block in the BLT. Prior to using this action block (and setting the Max Limit and Low Limit Properties there), you can use an assignment action block to do your logic. Or you can do your logic within the assignment of the properties.
    The AnimationRenderer asks for you to configure the object and specify which Animated Object to use.Then you can configure the links --- this is where you can set your Max and Low Limits.
    Then after the AnimationRenderer, you need to use the Image Saver action block within the Web section to save the SVG file
    Of course if you wanted to hard code the max and low limits, you could open up your SVG within Dynamic Graphics. Then go to Object Properties and Edit your Max and Low Limit properties this way.

Maybe you are looking for

  • Issue with jQuery.animate in secondary HTMLLoader

    This is a follow-up question to my original question (http://forums.adobe.com/message/2027713), which I couldn't figure out how to edit. I want to animate an HTML element using jQuery. When I attempt the animation in the original HTML document, there

  • Connecting Ipad 2 to time capsule

    Hi there... I've just purchased a Time Capsule 3TB. I have an Ipad 2 which is using the network that I have setup via the Time Machine. Is there anyway I can access files - music, films etc from the time capsule directly from the ipad ? Many thanks i

  • In TMS, can you have routes from a dev to multiple consolidation systems?

    My developers want to be able to choose from a list of target systems when creating a transport so that transport would go to a target group, or individual systems. Currently, I have my my ECC 6.0 Dev system transport routes configured to send to a t

  • Problems with adobe flash player

    Hi, ever since I have installed adobe flash player 11.5.502.146 on Windows 8 (64-bit), pop up adds trouble my internet sites - it's quite a chaos. This is getting really annoying, and I would like to know how to get rid of this.. Your answers and adv

  • How to test Airport Card?

    How can I make sure that my Airport Card is working properly?