Any way to tap into USB internally in a Mac Pro?

I have a 2008 quad-core (not a 8-core, mine's a "CTO") Mac-Pro. An outfit called Koutech Systems makes 8-port RS-232 PCI-e cards. Problem is, it needs to tap into a USB header-pin connector on the mother board, or plug into an internal USB port. I think it grabs power from the PCI-e bus, and converts the usb serial into RS-232 serial (I know the card shows up as a usb device in system profiler). Is there a way to gain access, internally, to a USB port, and if so, how?

Kinda hate to have to buy a 5-port USB PCI-e card when I already have numerous unused USB ports on the outside. There is a (not easily accessible - ya' gotta pull the front panel fans to get to it) pin-header connector on the motherboard that is labeled "FP-USB" so I'm guessing that means "front panel USB" -- it goes to a small PCB that has the front panel USB and firewire connectors on it -- I wonder if I could hijack that, at the expense of rendering the two(?) (not sitting in front of that computer at the moment) front panel USBs inoperative, but not affecting anything else on that PCB (i.e., the 1394 FW ports or the audio port)?

Similar Messages

  • Is there any way I can get more GB on my Mac Pro?

    Is there any way I can get more GB on my Mac Pro?

    The hard drive is what contains all your data, the RAM is random access memory, the more you have, the happier your machine will be.

  • Is there any way to hook into the SQL report pagination process?

    I have a SQL report (based on EMP) with a radiogroup row selector.
    The scenario 1 and 2 are in place
    1) When the employee row radio group is clicked the P900007_JOB the text item is populated with the JOB for the employee.
    2) When the page is initially displayed or submitted via the button the first row’s radio group is programmatically clicked and therefore populates the additional job information in P900007_JOB
    Info (radio Group) Employee No Name
    (+) 7369 SMITH
    () 7499 ALLEN
    () 7521 WARD
    P900007_JOB CLERK
    1-3 Next>
    Once the report has been displayed and the next or previous pagination is used then none of the radio groups will be selected and the data in the P900007_JOB text item will still display the job of the last selected employee row.
    What I require is on pagination some sort of mechanism to either
    a) Call the page_init() that should then set the first row as selected and populate the text item via the programmatic click. (preferred option)
    b) OR blank out the additional text item P900007_JOB.
    Is there any way to hook into the pagination process?
    I have a work around – Set the ‘Enable Partial Page Refresh’ to ‘No’ but this means a full refresh every time the pagination is used.
    Details of my page
    Report Region (Based on EMP table) – radio group as a row selector
    select     APEX_ITEM.RADIOGROUP(1,EMPNO,'X21',null) CHECKRG, EMPNO,
         ENAME,
         JOB
    from     EMP
    Report Attributes -
    Report template :- P900007_ROWTEMPLATE (custom template see later)
    Report Attributes Substitution :- id="emp_report" (used in page_init see later)
    Enable Partial Page Refresh :- Yes
    Columns – All columns are selected as show but job is left out of the template below.
    P900007_JOB - Text item in report region (disabled does not save state). Populated with the employees job when the radio group is clicked.
    Control region :- HTML region that just holds a button <GO> just to submit the page and redirect back to the same page.
    P900007_ROWTEMPLATE (named column row template)
    Row template 1
    <tr style="cursor: hand; cursor: pointer;" onmouseover="row_mouse_over(this, 1)" onmouseout="row_mouse_out(this, 1)" #HIGHLIGHT_ROW# ">
    <td class="t15data" onclick="selectRow('#JOB#');">#CHECKRG# </td>
    <td class="t15data">#EMPNO# </td>
    <td class="t15data">#ENAME# </td>
    </tr>
    Before rows
    <table class="t15standard" summary="" #REPORT_ATTRIBUTES# id="report_#REGION_STATIC_ID#" >
    <th class="t15header" #ALIGNMENT# >Info</th>
    <th class="t15header" #ALIGNMENT# >Employee Number</th>
    <th class="t15header" #ALIGNMENT# >Name</th>
    After Rows
    <tr>
    <td colspan="99" class="t15afterrows">
    <span class="left">#EXTERNAL_LINK##CSV_LINK#</span>
    <table style="float:right;text-align:right;" summary="pagination">
    #PAGINATION#</table>
    </td>
    </tr>
    </table>
    *Javascript in page Header*
    <script src="#WORKSPACE_IMAGES#apex_show_hide_region.js" type="text/javascript"></script>
    <script language="JavaScript" type="text/javascript">
    <!--
    function selectRow(pJob)
    /* console.log('pete got here!'+pJob)*/
    $x('P900007_JOB').value =pJob;
    /* Start Page init*/
    function *page_init*()
    /* Used to set radio groups on reports */
    /*console.log('START pete got here!');*/
    var is_checked = false;
    var l_check = $x_FormItems($x('emp_report'), 'radio');
    /*Loop and set flag if checked*/
    for(var i=0,len=l_check.length;i<len;i++)
    if(l_check.checked){
    is_checked = true;
    /*end loop*/
    /*If none checked force a click*/
    if(!is_checked){
    /*no longer need as doing click below*/
    l_check[0].checked=true;
    /*Force a click on the first radio group - extra details should then be
    populated*/
    var l_click = l_check[0].click();
    /* console.log('END pete got here!');*/
    /*END page_init*/
    // -->
    </script>
    *Application shared component.* – This fires a DB packaged procedure when the page is loaded.
    P330_PART_NO_HIST
    Process Point On load after Body region
    Process Text show_hide_memory.part_no_history_details();
    *Packaged Procedure* – This kicks off the page_init javascript in the header (earlier) to click on the radio group in the first row.
    PROCEDURE part_no_history_details AS
    BEGIN
    htp.prn('<script type="text/javascript">' || CHR(10));
    htp.prn('<!--' || CHR(10));
    htp.prn('page_init();'|| CHR(10));
    htp.prn('//-->' || CHR(10));
    htp.prn('</script>' || CHR(10));
    END part_no_history_details;
    Thanks Pete
    Edited by: Pete @ LSC on 26-Jan-2010 06:56

    Anybody any ideas? Should I be looking down the route of using my own pagination buttons and adding my code to this?
    There seems to be a routine $a_report that I can use for the pagination but I am finding it difficult to get the current first and last record values that I would need to pass. I've seen references to below in the form but when I'm using partial refresh they do not seem to change.
    wwv_flow.g_flow_current_min_row
    wwv_flow.g_flow_current_max_rows
    wwv_flow.g_flow_current_rows_fetched
    wwv_flow.g_request
    Thanks Pete

  • Is there any way to break into an ipod after it has been disabled

    i need help is there any way to break into an ipod touch after it has been disabled

    Maybe the CIA could get data from an disabled iPod.
    It is easy for anybody to erase the iPod and regain use of the iPod for their own use.  Just place in recovery mode and retore.

  • Is there any way to sync notes from iPhone 4 to MacBook Pro?

    Is there any way to sync notes from iPhone 4 to MacBook Pro?

    If the phone doesn't power on and isn't seen by the computer then you wouldn't be able to pull data off it with the USB connection to your computer.
    You could pursue data recovery if the notes are very valuable, but the cost can be similar to having data recovered from a failed computer drive(possibly prohibitively expensive).

  • I have read up on all about crashes and i cant even open it in safe mode :( i have tried deleting it and reinstalling it but the problem still persists. What would you suggest i do and is there any way i canget hold of firefox 6 for mac?

    i have read up on all about crashes and i cant even open it in safe mode :( i have tried deleting it and reinstalling it but the problem still persists. What would you suggest i do and is there any way i canget hold of firefox 6 for mac?

    Does the regular Firefox 8 release version work or does the version crash as well?
    *Firefox 8.0.x: http://www.mozilla.com/en-US/firefox/all.html
    Create a new profile as a test to check if your current profile is causing the problems.
    See "Basic Troubleshooting: Make a new profile":
    *https://support.mozilla.com/kb/Basic+Troubleshooting#w_8-make-a-new-profile
    There may be extensions and plugins installed by default in a new profile, so check that in "Tools > Add-ons > Extensions & Plugins" in case there are still problems.
    If that new profile works then you can transfer some files from the old profile to that new profile, but be careful not to copy corrupted files.
    See:
    *http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox

  • I have bought a used macbook, to bad i do not have the admin password. is there any way to bypass this issue with out the Mac OS X disk? (without loosing my obtained files?)

    i have bought a used macbook, to bad i do not have the admin password. is there any way to bypass this issue with out the Mac OS X disk? (without loosing my obtained files?)   I NEED HELP BADLY PLEASE....

    What version of the Mac OS X are you running. Go to the Apple in the upper left corner and select About This Mac and post the version.

  • Is there any way to download the Adobe Application Manager for Mac 10.5.8?

    I just subscribed to the monthly inDesign plan and was unaware I had to upgrade my system. Is there any way to download the Adobe Application Manager for Mac 10.5.8?

    LisaK78 wrote:
    I am trying to upgrade to Snow Leopard but I cannot figure out how to do it online. Do I actually need to purchase the disc and install it that way? Is there no way to download the update?
    See:
    Software update, upgrade--what's the difference?
    http://support.apple.com/kb/HT1444

  • Is there any way to make fade transitions in movies using quicktime pro 7?

    is there any way to make fade transitions in movies using quicktime pro 7?

    thanks. i eventually found your discussion trace from a few years ago on this shubject--after i posted my question. i do have i movies--another program to learn--which i guess does have the ability to do fade transitions. i'll figure it out....
    vr
    dr

  • My iPhone 5s is stolen and I want to restore iPhone photos from iCloud. I have use iCloud to backup the iPhone photos. Is there any way to restore my photos from iCloud to mac?

    My iPhone 5s is stolen and I want to restore iPhone photos from iCloud. I have use iCloud to backup the iPhone photos. Is there any way to restore my photos from iCloud to mac?

    The backup of your iPod Touch would include your camera roll photos.  Restoring the backup to another iPod Touch or iPhone would recover them.  Photos will not be restored by restoring the backup to an iPad.
    Note: Apple deletes iCloud backups after 180 days of inactivity so be sure to do this before then.

  • The best way to get 5.1 sound out of Mac Pro

    Hello. I'm not sure if this is the right place to ask this, but could someone recommend me the best way to get 5.1 sound of a Mac Pro. Since I don't require hi-fi -level sound, just simple directional audio for gaming and such, I wouldn't like to pour a lot of money to this. As I see it, I'd need an external sound card, internal PCI-E soundcard or speakers that have an optical input. I would like for the cost to be in two digits, euro or dollar.
    Any suggestions about hardware?

    Once again, the issue of 5.1 w/Apple comes up.
    Here is the bottom line.
    You will only get 5.1 audio if the following conditions are true:
    - You are using the OPTICAL output on your Mac
    - You are playing a DVD with a 5.1 soundtrack
    That's it. The simple truth is, that even if you have a Z-5500 setup (like I do), you still will not get 5.1 surround in ///any/// applications other then while playing a DVD.
    There is no way to get 5.1 out of a game on a Mac Pro. No matter how much money you throw at it. The support simply is not there. It is not a software issue, it is not a driver issue. It is the game developer's issue (sort of), and it is a //lack of hardware// issue.
    The complex truth, and I will attempt to explain, isn't that simple.
    Your Mac Pro or Macbook only has a single line-out, that supports 2 channels at the maximum. Optical audio will only handle 2 channels as well- it's the same signal (in two channels) on a different medium, basically.
    All PC soundcards that support proper 5.1 (save for a select few) have //multiple// line-out jacks for Front Left/Right, Center/Sub, and Rear Left/Right (3 plugs total for 5.1). Since your Mac/Mac Pro doesn't have this, you can't hook up a 5.1 speaker set and expect true 5.1.
    You do have optical audio, however, this only works in 5.1 when a Dolby Digital signal is piped through the optical cable.
    Dolby Digital works by encoding a 5.1 signal as a data stream, sending it to a receiver, where it is decoded and played back as 5.1 stereo. DVD's have this audio pre-encoded on the disk.
    If you wanted 5.1 output from your games, they'd need to ether have the sound/audio data encoded as Dolby 5.1, or support encoding on the fly to take a 5.1 signal, encode it, and pipe it out the optical audio plug. Xbox360 does this, because they've licensed the technology from Dolby- as have the game developers.
    Unfortunately, none of the developers for Macintosh gaming have yet to include live Dolby 5.1 encoding (I think Doom 3 had a beta patch that did- I could be wrong).
    If the game doesn't support the above feature, then you only get basic 2 channel audio.
    *Do not buy a Fireface 800.*
    This is a professional audio interface (like an external soundcard). While it supports 5.1 output via 6 individual outputs, you need SPEAKERS that have +built in amplifiers+ (called a Studio Monitor). Not just one amplifier- all the speakers have it built in and take a balanced stereo input.
    You're looking at $1300 for the Fireface 800, and another $200 per speaker. This is not cheap, is not meant for gaming, and is not consumer grade equipment. It's pro audio, designed for Logic 8 and similar.
    Even if you did spend the money, trust me, I'd know... I have a 5.1 setup running through an Apogee Ensemble (a $2000 "soundcard"), and I do not get 5.1 support from Quake 4, C&C 3, or any other game. I only get 5.1 surround from my audio production in Logic 8.
    To recap, since this has been asked many times- and I don't want you wasting your money here (just trying to be helpful!)...
    *There is no simple or cost-efficient way to get 5.1 from your Mac, other then while playing a DVD movie.*
    I would highly recommend that you buy a very good pair of 2.1 speakers with a Sub woofer. Maybe even a pair that takes an optical input for audio. If you really want to spend the money to *watch a DVD in surround sound,* then you can... And it'll work wonderfully, but gaming will not give you surround sound at all.
    *Again- There are no games out that support 5.1. Just because you technically support Dolby 5.1, doesn't mean the applications are aware of it and can utilize the 5.1 surround.*
    Edit: I may have neglected to also mention that the Firewave unit will support 5.1 properly through 3 separate plugs (much like a PC soundcard does), however the only game I am aware of that supports this is Unreal Tournament 2003 for Mac (or was it 04?), with an experimental patch for 5.1 via OpenAL. Last I heard, it worked okay, but crashed occasionally.
    Most of the other games out there just don't support 5.1, period (probably due to the lack of hardware on the Mac computers from the factory).
    -SC
    Message was edited by: ScottishCaptain

  • I have a belkin 7 adapter for additional USB slots for my Mac Pro. It was working well till just recently I am getting a message that says the usb port on the Mac Pro is shutting down due to a very high power drain. Then it shuts the usb port down.

    I have a belkin 7 adapter for additional usb ports for my mac pro. It worked fine without problems till recently when the message regarding usb port drawing too much power and the computer shuts the port on the mac pro down. The strip comes with its own power supply adapter. The attachments are additional hard drives used as backups and independent data. Other than disconnecting it are there any fixes?

    You're getting the message because you're exceeding the available current, probably as a result of bus-powered drives. The power sources for hubs are rather small. Try using drives with their own power supplies.

  • I need lots of USB ports with New Mac Pro, now what?

    because I'm in the audio business I needs lot of USB ports with my Mac Pro. On my current 2008 machine, that's not really an issue, with 5 ports on teh MP itself and I installed some USB hubs over PCIe that give me a total of 13 port. I'm not really sure what is the best way to get that amount on the new MP.
    Oh, and I really like the stability of my current set up. Before I went with an external USB Hub that always gave me headaches with ports not being recognized.

    The only two things I found so far are:
    a/ going back to the external USB hubs, which I find very frustrating to work with, because instable with connection and I would need to add some interface to go from USB to TB (which are also rather expensive at the moment)
    b/ use some external PCIe enclosures that are really expensive.
    So I havent really found the right solution for my situation. Which makes me hesitant to migrate to new MP at the moment.

  • Booting from USB 3 on a Mac Pro 2010

    Two issues:  I've been looking for a USB 3 Card for Mac pro without much luck.  Therefore, any suggestions for a good, reliable card would be much appreciated.  One piece of information I came across is that apparently USB 3 does not support booting from an external drive(Clone), but not sure if this pertains to a MacPro 2010.  Can anyone verify this information?  I assume eSATA does support an external bootable drive, but I may be wrong on that.  Again, any info would be appreciated.
    Thank you,
    Gary

    I have the CalDigit USB3/eSATA card in my 2010 Mac Pro. It works well; however, drives attached to it are no more immune than any other external drives to the Improper Disk Ejection bug that occurs with Mountain Lion, Mavericks and Yosemite in the process of sleeping/waking from sleep. Apple is apparently never going to fix this. In Snow Leopard, any drive attached to the CalDigit card behaves perfectly. I have never tried booting from the eSATA interface.
    BTW there is a CalDigit FASTA-6GU3 USB3 eSATA card on eBay right now:
    http://www.ebay.com/itm/201264131915?_trksid=p2060778.m1438.l2649&ssPageName=STR K%3AMEBIDX%3AIT
    I didn't see any mention of which card it is. The first version works with OS 10.5 and newer; the second-generation card requires 10.8.2 or newer.
    I have experimented with the Mountain utility on my Yosemite test drive, and with Mountain running, the improper ejection problem has so far not occurred. But I spend little time in Yosemite, so I am not 100% positive that Mountain has solved the problem.

  • I have just recently bought a MacBook Air. I am looking for an email which I put into a folder on my Mac Pro. The smart folders have come across to the Air, but not the 'On my Mac' folders. Are they lost?

    I have just recently bought a MacBook Air. I am looking for an email which I put into a folder on my Mac Pro. The smart folders have come across to the Air, but not the 'On my Mac' folders. Are they lost?

    Are you sure that the "On My Mac" folders weren't empty? If all your mail accounts are IMAP, they may have been.

Maybe you are looking for

  • Connecting Enterprise Directly to Pervasive

    Good Afternoon, I'm working as a remote consultant with a firm that wants me to find out about running pervasive direct from the BO Server.  They are migrating from simple client server with an Enterprise Server to Data Warehousing.  Right now though

  • File is not picked up through NFS.

    hi guruz , iam doing a simple file to file scenerio . sender file (.txt file tab delimeted) NFS  file adapter. reciver file (.txt file tab delimeted) NFS  file adapter. i putted the file in xi  server  c:\sender\file.txt. and for reciever i made c:\r

  • Pricing Condition type triggering based on other condition type

    Hello sir, There are some pricing condition types in our system. Based on condition records you can trigger one condition type based on other    condition type. For eg: PR00 condition type is there and amount is  suppose 1000rs and other condition ty

  • Read-only attributes

    Using OCS 9 I would like to set the default rights of calenders so that by default nobody can see the tasks and events of others, and then open up for others on an as-needed basis, usually everyone in the department. To avoid to have to do this for s

  • HT4059 How can I see the price of an ibook I recently downloaded?

    I recently downloaded an ibook and I forgot how much I paid for it. It just tells me that the book is downloaded and I see no indication of the price in the description.