RTSI at 80 MHz

Hi
I'm using a NI5640R board. Is it possible to set the RTSI clock at 80 Mhz in the Host vi changing in some way the Configuration timebase vi?
With this vi I can set the RTSI clock at 200 100 50 25 12.5 MHz but 100 is to high for the FPGA vi (the maximun when compiled is 95 MHz)  and 50 is too low for what I need to do. I tried to pipeline the FPGA but there were no significant results.
Thanks in advance for your help.
Emanuele

Hi David
If your code is not in a single cycle times loop, or in the normal while loop, all the code will be clocked at the 20 MHz rate, but that does not mean that the full chain of code will complete in one clock cycle.  In these case most LabVIEW functions will take a number of clock cycles to completes it function.  Then the data is passed onto the next function, and so on until the end of the chain of functions.  Then the loop starts from the beginning again.  A loop will have a loop rate determined by the total length of pipeline delays from each function in the chain.
Here is a link that discusses optimize loops for LV FPGAs.
http://zone.ni.com/devzone/cda/tut/p/id/3749
Jerry

Similar Messages

  • How to synchroniz​e with RTSI?

    Hi all 
    I am working with  2 PCIe card (#6351 and #6536) connected via RTSI. The bus RTSI permit to solve 2 critical problems in my application: simultaneous triggering and synchronization
    For the synchronization, I would like to generate a rectangular signal with a fixed low level (5 microseconds) and a high level that I can tune with the card 6351 on the RTSI line 0
    For the simultaneous triggering, RTSI line 1 is at 0 (low level) by default. The acquisition and the emission of the synchronization signal is triggered on a rising edge.
    Here is the chronogram of the signals RTSI lines 0 and 1:
    a) acquisition starts
    b) 5 microseconds
    c) measuring something
    d) refreshing all the digital outputs
    e) end 
    Could you help me with the vi because I really do not know how to proceed 
    Thanks by advance
    Attachments:
    Coupled_RTSI.pdf ‏145 KB

    I've programmed a bit of FPGA, but not to the point where I'd call myself an expert with it.  I understand everything going on in the attached FPGA vi and our primary FPGA vi (not attached).
    I was hoping to implement it into the host because the desired frequency of the pulse from the daqmx counter has already been implemented in a much larger application, and it is actually a control on the front panel.  Changing the location of the source would require rewriting a lot of code.  65536 Hz will be the fastest possible frequency so I went ahead and wired the worst case scenario into the attached vi.  Also the desired frequency is approximately 65 kHz, not MHz.
    I'd simply like to find a way to use the 65536 Hz pulse from /Dev1/Ctr0InternalOutput to run the FPGA subvi at every rising edge of the pulse if possible.
    Thanks for your help!

  • PXI 6608 80 MHz timebase

    I have a PXI system with a 6608 timer device in slot 2 and a 5122 digitizer in slot 3.  I know that the 6608 has an internal 80 MHz timebase, and I would like to use this timebase as a clock source for the 5122 using LabVIEW.  I would prefer to route the timebase internally through the PXI backplane or a RTSI line, but would accept routing the timebase to something like PFI 0 and wiring it externally to the digitizer CLK IN.  I have not been able to learn how to route the timer's 80 MHz timebase to another line that the digitizer can use for a clock source, and I have not learned how to use any digitizer external clock source but CLK IN and PXI Star.  Any help would be appreciated in learning any of these things.

    Please see this post.
    Regards,
    Natasa

  • Setting 6602 registers to latch encoder values on RTSI trigger

    Greetings,
    I am currently using the 6602, comedi driver, and  real time linux to read 6 quadrature encoders.  I would like to add some functionality to the comedi driver that would latch the encoder values from a RTSI trigger.  I have the register programming manual for the 6602; However, I am not quite sure how I should set up the registers for this task.  Any help would be greatly appreciated.
    Thanks,
    Greg

    Thanks Tom and David for your help.
    I have looked over the examples that Tom listed and I think I understand the necessary register settings.  Just in case I missed something I have includded an example configuration and read function for your review.  The configuration is a combination of gpct_ex7.cpp and gpct_ex8.cpp.  Also, am I correct in assuming that if using a RTSI signal to latch the encoder values that the encoder index can not be used to reset the counter?  It seems they would both need access to the gate.   Thanks again for your help,
    Greg
    // configuring 6602...
    void test(iBus *bus)
        tAddressSpace  cardSpace;
        tTIO *board;
        cardSpace = bus->createAddressSpace(kPCI_BAR1);
        board = new tTIO(cardSpace);
        //Reset
        board->G01_Joint_Reset_Register.writeG0_Reset(1);
        //Disarm
        board->G0_Command_Register.writeG0_Disarm(1);
        //load initial value of 0
        board->G0_Load_A_Registers.writeG0_Load_A(0x00000000);
        board->G0_Command_Register.writeG0_Load(1);
        //set the counting mode to quadrature encoding X4
        board->G0_Counting_Mode_Register.setG0_Encoder_Counting_Mode(3);
        //set source to the internal timebase (20 MHz)
        board->G0_Input_Select_Register.writeG0_Source_Select(0);
        //set gate to latch encoder value on rising edge of RTSI 0
        board->G0_Input_Select_Register.writeG0_Gate_Select(11);
        board->G0_Mode_Register.writeG0_Gate_Polarity(0);
        board->G0_Mode_Register.writeG0_Gating_Mode(2);
        board->G0_Mode_Register.writeG0_Trigger_Mode_For_Edge_Gate(3);
        //set counting direction to Gate IO connector
        board->G0_Command_Register.writeG0_Up_Down(2);
        //use the DMA registers as a two element FIFO
        //The TIO will alternate save locations between the HW save and SW
        //save registers.
        board->G0_DMA_Config_Register.writeG0_DMA_Enable(1);
        board->G0_DMA_Config_Register.writeG0_DMA_Int_Enable(1);
        //arm counter
        board->G0_Command_Register.writeG0_Arm(1);
    // reading the counter value would go something like this...
    void generic_read(tTIO *board)
        int HWsaveOrSWsave;
        //the DMA Read register tells us where the most recent sample was saved:
        // 1 for SW save register, 0 for the HW save register
        HWsaveOrSWsave = board->G0_DMA_Status_Register.readG0_DMA_Read_Register();
        if(HWsaveOrSWsave == 1)
            printf("SW Save Register is 0x%08lx\n",
                board->G0_Save_Registers.readRegister());
        else
            printf("HW Save Register is 0x%08lx\n",
                board->G0_HW_Save_Registers.readRegister());

  • 6608 80 MHz timebase

    I have a PXI system with a 6608 timer device in slot 2 and a 5122
    digitizer in slot 3.  I know that the 6608 has an internal 80 MHz
    timebase, and I would like to use this timebase as a clock source for
    the 5122 using LabVIEW.  I would prefer to route the timebase
    internally through the PXI backplane or a RTSI line, but would accept
    routing the timebase to something like PFI 0 and wiring it externally
    to the digitizer CLK IN.  I have not been able to learn how to route
    the timer's 80 MHz timebase to another line that the digitizer can use
    for a clock source, and I have not learned how to use any digitizer
    external clock source but CLK IN and PXI Star.  Any help would be
    appreciated in learning any of these things.
    This has also been posted to the LabVIEW board, I'm posting here to cover my bases.

    Hi Tim,
    The 5122 digitizer can be synchronized with external sample clock only if this clock is routed on the CLK IN (front panel SMB connector) or the PXI_Star_Trigger of the card. In your scenario, it would be easiest to export the 80MHz timebase from the 6608 to the PXI_Star_Trigger line and then specify that the clock source for the 5122 is the PXI_Star_Trigger. Use the Daqmx_Connect_Terminals.vi to export the 80MHz timebase to the PXI_Star_Trigger line on the 5122. On the digitizer side, you will have to use a property node in order to specify the source clock. Please see the jpg attached below.
    I hope this helps.
    Regards,
    Natasa
    Attachments:
    export_signal.JPG ‏11 KB

  • AMD Athlon XP 2800 (Barton Core) will not post at FSB 166 MHz.

    Per top of the board “stickys” I have read a great number of the post on this board and done my homework to provide as much technical info to help you help me. This should explain some of it’s lengthy nature.
    Aside from Memory, HDD and Video card every thing else has been unplugged from board and power or stripped out of slots to isolate the problem.
    Presently running BIOS: A6712 V. 1B
    *As seen on face of MoBo: KT4V MS-6712   Ver:10A
    *The Original Box bar code label: KT4V-L (601-6712-050)
    K7, KT400. 5.1 chnl. S/W Audio, LAN, D-Bracket 2.
    CPU: AMD Athlon AXDL 2800 DLV4D 
    Q334763K40034  AQYHA 0447APMW
    Chip lable
    Athlon XP (Barton) Low Power Processor (Model 10) 2083 MHz
    OPGA Organic Pin Grid Array 1.50 Volt max. Temp. 85°C
    512 KB L2 Cache 333 MHz System bus (166 MHz FSB) x 12.5
    Memory: x3- PC 2700 512 mb DDR 333 Super Talent
      And shows at post as running 333MHz. MemTested to 1,000% with first 1 stick, then all 3 sticks presently on bios A6712vms.1B0. at fsb 100MHz (aprox. 24hr.) I even installed and ran other AMD utillitys while MemTest was running to “stress” the system memory with zero errors. During this period I checked Windows Task Manager > Performance, CPU usage at 100%, PF usage 1.35gb. No Probs.
    Video card: Removed: MSI AGP-8X Ti4200- VTD8X 128 MB DDR 533MHz
    Replace with: PCI card (to rule out AGP card prob.) Gilmont, nVidia 64mb
    (also tried Matrox AGP 32mb card with no different results then above cards)
    Power Supply: L&C Model: LC-B350 ATX = 350 watt
          115/130v      B/4a      60/50 hz
          +3.3v/+5v   1+12v   -12/-5v    +5vsb
          28a   35a    16a    0.8a    0.3a   2a
       +3.3v combined load 200w
    Cooler: Slim Volcano 10+,   P/N A1671,  rated for up to AMD Athlon CP 3400+ & fresh heat sink compound. Freshly re-seated.
    All PCI  slots empty as I attempt to run bare bones to eliminate problems. (except now running Vido card in 1 slot)
    Floppy Drive: ribbon unplugged from board
    HDD-0: Seagate 8 gb master, (HDD tested w/no errors)
    O/S: Win. XP w/sp2
    HDD-1: slave/  unplugged from ribbon and power
    Sony CD-Rom: Unplugged from PCI slot and power
    SATA/RAID-usb 2.0 card and other HDD’s, removed and not included till Sys. runs at full potential.
    Exterior HDD and Burner beyond the scope here and not attached.
    O/S Win. XP-sp2
    BIOS I have tried: The original; Ver:10A, ran fine on Athlon XP 1600 (1400 MP) 3 years.
    •   Then with MSI Live Update 3: Installed v. 1c which couldn’t run FSB 166MHz (MSI:” Fixes system reports incorrect message for AMD 3200+ CPU.
    - Supports Sempron L2 512K 3000+ CPU.)
    However, v. 1.c did not work and would not post at all with the newly installed Barton AMD-XP 2800. [frankly this attempt was months ago and I do not remember whether it would post at the slower 100 and 133 FSB speeds, and also to muddle my memory further I was upgrading an A7N8X-D with a Barton XP 3000 and having similar problems on the ASUS,,, which is now running fine at full potential. ; - p
    •   Then I selected and flashed A6712 V 1.7 122602, boots and runs Win.XP-sp2 at FSB 100MHz & 133MHZ.  (MSI:” Supports AMD Barton XP2800+ (FSB333) CPU
    -Fixes system sometimes will have IDE CRC error   -Fixes D-bracket2+USB keyboard, cannot use keyboard on DOS mode.)”    which couldn’t run FSB 166MHz.
    I checked with the Tech. at the local shop where I purchased the KT4V MoBo. He suggested I try a different BIOS but he didn’t specify which one. He is a personal friend and admits to some bad luck and dead boards due to flashing bios so reluctant to mess with it.
    •   Now running:  A6712vms.1B0 – MSI hid this BIOS V. found here:
    •   http://www.msi.com.tw/program/support/bios/bos/spt_bos_detail.php?UID=362&kind=1
    •    On a different page than the 2 versions mentioned above. http://www.msicomputer.com/support/bios_result.asp
    •    No wonder people are frustrated and confused about different MoBo versions there ID #’s and the BIOS versions them selves as seen on this news board. MSI’s fault, no fault of anyone here trying to help.
    A6712vms.1B0
    Runs fine at FSB 100 (shows as XP 1250+) and FSB 133 (shows as XP 2200+) Booting to Win. XP-sp2 on CMOS, default setup other than minor tweaks to accommodate MSI Ti 4200 AGP 8X 125mb graphics card or Gilmond PCI card. But which couldn’t run FSB 166MHz .
    No post at FSB 166 mhz (once, it did flash a post screen stating AMD Athlon XP 2800 for about 2 sec. before going blank) Manual power down. Just now I rebooted with FSB 166, and again saw the AMD Athlon XP 2800 at top of the post screen as I hit pause break,,,, then the machine power crashed to Off. Once it even loaded Win.XP-sp2 but crashed to power off with in 2 min.
    I must have booted this beast a dozen times or more after Clear CMOS jumper each time it went to blank screen with mach. still running. Start over; set Default settings and work up with FSB 100, 133, each time to read what POST says and see if it will boot to O/S.
    Btw: I have looked for clear evidence through the not so specific descriptions MSI uses to separate these board model #s and may be part of my current problem with correct board ID = correct BIOS ID.
    Found here:
    [VIA] unofficial FAQ for KT4 series motherboards
    https://forum-en.msi.com/index.php?topic=6090.0
    Eg: - KT4 Ultra (MS-6590), 6-channel hardware audio codec
       • KT4 Ultra (Pure Version)
       • KT4 Ultra-B (Bluetooth ready)
       • KT4 Ultra-BSR (Bluetooth ready + Serial ATA RAID)
       • KT4 Ultra-FISR (Bluetooth ready, Serial ATA RAID, Gigabit LAN, IEEE 1394)
    - KT4V (MS-6712), 6-channel software audio codec
       • KT4V-L, with onboard 10/100 LAN
    - KT4M (MS-6596) micro-ATX board
       • KT4M-L, with onboard 10/100 LAN
    - KT4A Ultra, (MS-6590) NEW!! based on KT400A chipset
       • KT4A Ultra (Standard Version)
       • KT4A Ultra-SR (Serial ATA RAID)
       • KT4A Ultra-FISR (Serial ATA RAID, Gigabit LAN, IEEE 1394)
    And a very similar version of this on Official MSI site. Both seem to try and make a difference between modles with on board Lan, and Blue Tooth ready.
    Take a look at my original box sticker:
    *As seen on face of MoBo: KT4V MS-6712   Ver:10A
    *The Original Box bar code label: KT4V-L (601-6712-050)
    K7, KT400. 5.1 chnl. S/W Audio, LAN, D-Bracket 2.
    Yup, it says all this on the sticker and the in the manual and verified on the MoBo. So I can only guess at all parts of the puzzle as they gave them to me which lead me to the afore mention BIOS versions I ran, or am running. The sticker points to nearly half of the boards above except for the MS-6712 and the Ver:10a which is what I based my BIOS choices on. If someone knows differently and can lead me to official Nfo with a better answer I’m all ears.
    Just saw this: Latest Official BIOS : KT4 MS-6590 (1.4), KT4V  MS-6712 (1.8 ) , KT4M MS-6596 (1.1)>>Here: [VIA] unofficial FAQ for KT4 series motherboards
    « on: 24 October 02, 05:14:04 »  But these links and all but one link in this ‘sticky’ are broken .
    So if  (1.8) is the Latest Official BIOS for KT4V MS-6712  then what is this at the Official MSI SITE ?
    KT4V
    BIOS Type
    AMI® BIOS      File Sizes
    485KB
    Version
    1.C      Update date
    Update Description   -Support Sempron L2 512K 3000+ CPU.
     BIOS Type
    AMI® BIOS      File Size
    Version
    1.B      Update date
    2004-8-9
    Update Description   Support Sempron 2200+/2300+/2400+/2500+/2600+/2800+ CPU.
        BIOS Type
    AMI® BIOS      File Sizes
    485Kb Version
    1.A      Update date
    2004-5-13
    Update Description   - System is unstable to run 3DMark03 with ATI 9600 PRO
    - Add "PS/2 Keyboard Detection" Function.
    - Support AMD 2400+ CPU.
    BIOS Type
    AMI® BIOS      File Sizes
    514KB
    Version
    1.9      Update date
    2003-7-29
    Update Description   -Fixed Adaptec 2100S SCSI card cannot be used
    -Modify CPU temperature detection
    -Support boot from Onboard LAN
    BIOS Type
    AMI® BIOS      File Sizes
    514KB
    Version
    1.8      Update date
    2003-2-12
    Update Description   -Support AMD Barton XP3000+ (FSB333) CPU
    -Add "CPU Halt Command Detection" item in the BIOS Setup
     Please also keep in mind I’m not trying to scuff anyone’s shoes…I just want to get what’s right for my board so that it and the CPU can live up to their full, "as advertised" potential and run with the other 3 big dogs under my desk.
    This seems descriptive enough and rather lengthy. Just doing my homework and reporting my findings so I won’t include actual CMOS settings unless requested. I have notes on all settings I currently use to boot with this problem.
    Other Dogs:
      ASUS A7N8X-D running Athlon XP 3000 barton core 10 (runs fsb 400..whoknew?), Mem:2.5gb Super Talent
       ASUS A7M266-D running Athlon XP 2800 (mp), Mem: 3gb Super Talent
                                                   Athlon XP 2800 (mp)
      I don’t want to boar you with the details.
    Yes, and the above have been upgraded w/new chips GFX cards and BIOS,,, NP.
      Cut to sound track: Down on the BIOS again,,, wasn’t that Creedance Clear Water Revival?
    Any suggestions or insights are much appreciated. 

    Welcome, and thank you for a thorough input! Hope I don't miss something you already said!
    Quick version: Try setting processor voltage to 1,5 volt.
    Long version:
    Posting at wrong FSB can be put down to two things:
    1 The processor isn't what you thought it is, but I think you eliminated that.
    2 The system cannot run the processor at the correct speed. Mainly this has to with overheating, and/or that memory and processor cannot cooperate. This must be it, as you noticed the processor is correctly recognised.
    You have little connected right? Then the best thing would be to pull power cable out. Take the motherboard and redo the seating of the processor, this is much better done with motherboard taken out.
    At the same time, I suggest you clear CMOS. Should always be done when changing processor, and I've noticed on the Internet there are a few 1,5V XP2800 around.
    http://64.233.183.104/search?q=cache:Q4eIa6OhudcJ:forums.amd.com/lofiversion/index.php/t47487.html+AXDL2800DLV4D+problem&hl=sv&gl=se&ct=clnk&cd=1

  • Upgrade from 10.2 to 10.4 on iMac G3 600 MHz ? OS install disk ejects.

    I am trying to help my friend with this one. I gave her my old iMac G3 600 MHz. it has 384 MB memory and currently has Mac OS 10.2.8 which I had installed previously. Now she has a new iPod nano and so the iMac needs the OS system upgraded to be able to use the iPod. I have the install discs for Mac OS 10.4 from an iMac G5 however when I simply put the install disk(s) into the drive slot, after about 20 seconds or so it ejects. Do I need a different install disk?? Cause I don't think I have another 10.4 disk anywhere. I really want her to be able to use her iPod Nano on her iMac! If I can do something on the iMac to be able to upgrade it I would really appreciate any suggestions or help. Thank you.

    Thank you. I might try that with the iMac G4 I am using right now.
    Are there any other suggestions??
    This is random, but I have an extra iMac G4 which has been unused for a while. if I could get Tiger onto it, does anybody think it would be worth it to let her use the G4 instead and go through with transferring all her data? I guess what I'm asking if I get this iMac G4 to work would there be a significant difference running Tiger on it compared to the iMac G3 she already has?
    I hope I've made sense. I really want my friend to have a decent computer with Tiger on it so she can use her iPod Nano.
    Thanks for all your help.

  • Memory Speed (MHz) missing in 'About This Mac'

    Hi
    I'm using a Macbook Pro with 10.4.9 and all updates and I recently noticed that the memory speed is missing in the 'About This Mac' window.
    It's saying: Memory 1GB 0 MHz RAM.
    Am I the only one with this problem or is this a bug?

    Please search the discussions before posting, as this topic has already been covered:
    http://discussions.apple.com/thread.jspa?messageID=4489699

  • Connect 17" Studio CRT to Quicksilver 867 mhz G4

    I have a 17" CRT Studio Display connected to my B&W G3. I just got a Quicksilver 867 mhz G4 and I am wondering what kind of adapter(s) I will need to connect the Studio Display to the G4. Thanks.

    Hi,
    Thanks for the information. That's plug looks exactly like what I need. However, I am still wondering about the other half of the solution that involves the monitor's power source. Currently, I am using this monitor on an old B&W G3. The power cord that comes from the monitor plugs directly into the back of the G3 tower to get its power. That connection is a female plug rather than the standard male wall-socket plug. I am guessing that I could just replace that monitor cord with a standard computer power cord, plug it in, and have the monitor get its power directly from the wall socket rather than through the computer.
    Does that make sense?

  • HT5219 When I connect my MacBook Pro to a TV (Thunderbolt to HDMI) no display is recognized and I am unable to mirror.  I have a 2.9 GHz Intel Core i7 with 8GB 1600 MHz DDR3 running OSX v 10.8.3.

    When I connect my MacBook Pro to a TV (Thunderbolt to HDMI) no display is recognized and I am unable to mirror.  I have a 2.9 GHz Intel Core i7 with 8GB 1600 MHz DDR3 running OSX v 10.8.3.

    You are being scammed. Please ignore and close. Do not click any links or call any phone numbers!
    Remove Browser Pop-up Problems
         AdwareMedic
         Adblock Plus 1.8.9
         remove adware that displays pop-up ads and graphics on your Mac

  • HT1338 Can I update my Mini 2 GHz Intel Core 2 Duo /4 GB 667 MHz DDR2?

    My Mini -- 2 GHz Intel Core 2 Duo /4 GB 667 MHz DDR2 —is "mid 2007". 
    What happens if I try to install Mtn Lion?
    Because there is a lot of buggy stuff about 10.7.x.  For instance,
    Wifi does not maintain a steady connection when using a non-airport wireless router (maddening when it goes "looking for Networks" when there is a steady signal coming from the modem.  This is consistently a buzz-kill when streaming virtually any video, and consistently happens w/ netfix.
    No, it's not the wifi router.  Non-Apple equip has rock steady wifi signal and smooth, HD streaming.
    Hardwired w/ Cat5, streaming video is no problem--and yes, I have trashed and reloaded Airport Utility, which definitely appears to be the culprit.
    Itunes does all kinds of wonky things w/ smart playlists, etc/. etc. 
    Bluetooth has a mind of it's own--forgetting it's already paired to an Apple keyboard and trackpad when I power up another Mac within 20 feet.
    DVD Player is so eratic I have given up and gone to VLC altogether--not quite as elegant an interface, but at least it's consistent AND alows me to jump over the junk promos studios insist I can't skip when played on DVD Player
    In short —All the usual loose ends the software update never gets around to addressing, but that typically an upgrade will fix.
    Theoretically, Mtn. Lion will only work on 2009 and later Mini's, but aside from buggy OS, (and, uh, eratic breaks in wifi signal) this mini works fine as a media center.
    So what happens if I try to upgrade?
    Is there perhaps a firmware update or a work around?
    Yes, I am aware the unit is 5 years old, but I am strongly opposed to being strong-armed into buying new equip because of Apple's ever increasing tendency to eliminate legacy compatibillity.  Sure it's good for Apple, but terrible for both the environment and people like me on a fixed income in this economy.  Why toss a perfectly functional unit just to make the richest corporation in the world (or 2nd, whatever) richer?
    Thanks

    Many thanks for your prompt reponse.  I expected as much, but thought the question worth asking. 
    Must admit it escapes why Mtn Lion should not be more broadly accessible, except for the blatant greed factor, which is growing increasingly tiresome. 
    I bought my 1st PowerBook in the late 80's for close to $3,000 and was a loyal evangelist for decades—both purchasing and recommending many, many Macs, until I started to buy a new MacBook Pro last year and encountered all that thunderbolt/HDMI baloney.  Then I started taking a harder look at whether Apple was genuinely attemtping to meet loyal user's needs, or simply exploiting the strength of the brand by non-legacy compatibility to drive increased sales.
    Looking around a tad after I posted, the erratic wifi problem appears to be endemic--not just minis and not just 10.7.
    I've gone through all the fixes, but Lion stubbornly persists in giving the flakest wif around--which is my main reason for wanting to try Mtn. Lion.  The rest of the new, uh, "features" definitely strike me as onanistic tweaking added gimmicks in the OS for tweaker's sake--no significant gain in usability.
    Remember when stability was the Apple OS's chief virtue?  Ah, those were the days!
    Now I am waiting for the Kool-Aid quaffers to start wising up before I can begin shorting the grossly over-valued stock.  The iPhone is losing ground fast.  Arrogant development and marketing strategies the likes of which driving Apple these days never last forever.  Remember as well when Microsoft caused fear and trembling with it's heedless hegemony?  Or how about IBM?  Or AOL?  Technology has a way of dealing with hubris.
    Best wishes for all, &c.

  • Is it possible to install CS5 or CS5.5 on a 2.4 GHz Intel Core 2 Duo 4 GB 667 Mhz DDR2 SDRAM MacBook Pro running 10.6 (Snow Leopard)?

    Is it possible to install CS5 or CS5.5 on a 2.4 GHz Intel Core 2 Duo 4 GB 667 Mhz DDR2 SDRAM MacBook Pro running 10.6 (Snow Leopard)?

    Hi Carolyn, thanks for your quick reply. First thing I did before posting my question was to check the system requirements for Creative Suite, both on Apple and Adobe's websites. But I am however confused about the difference between "Multicore Intel processor" vs "Core 2 Duo", and keep hearing stories about CS5 not working properly.

  • Want To Use D-Link AirPlus G Card DWL-G630 On 500 MHZ Pismo

    I bought a D-Link AirPlus G Card DWL-G630 for my work PC, but I want to also use it on my 500 MHZ Pismo. Does anyone know if there is a way to make it work?

    styler,
    There is only one third-party wireless driver that I am aware of which supports 802.11g PC cards and it is OrangeWare:
    http://www.orangeware.com/endusers/wirelessformac.html
    Unfortunately, your card is not in the supported list. OrangeWare's driver supports cards that use the Atheros chipset, and apparently your card uses either the Prism or ACX 111. As is often the case, D-Link and others will often switch chipsets yet keep the same model number of the card and give it a revision number.
    I am unfamiliar with Windows, but you should be able to find the specs on your wireless card when inserted in the card slot. But unless it has a Ralink or Broadcom (Apple) or Atheros chipset, I don't see how it will work.

  • QS 867 Mhz processor in a QS 2002 motherboard??

    Hi there.
    I'm trying to get a Quicksilver 867 Mhz processor (with L3 cache) to run in a Quicksilver 2002 motherboard, but it ain't working. I've been pretty consistent in my troubleshooting, but before I toss it out (or try soldering the L3 cache onto a QS 733 mhz cpu... muhaaahhuuhhahhh), I'd thought I'd throw this out for some feedback in these lovely discussion pages.
    I did earlier get this cpu to run on a Digital Audio motherboard and it booted up no problem - even the L3 cache was recognized. But it was unstable (unstable, but very fast...). I had originally thought that the motherboard was faulty (I got the exact same errors with the original 466 mhz cpu and a QS 733 mhz cpu - both a digital audio and a quicksilver psu have checked out ok in a different machine). I went through much trouble, troubleshooting, and eventually got a new/used Quicksilver motherboard, only to find out that the actual trouble-maker was a piece of RAM. Which was very insidious, because the mac(s) booted okay (the system profiler even said it passed), it only caused problems when I'd open certain applications, such as Firefox or System Preferences (which would eventually crash), or tried to do a new OS install or did a software update (none of which would complete, either in panther or tiger). I'm thinking it might have been a high density piece of ram that got pass me. I think Techtool said there was a problem with a piece of RAM earlier, but I thought it was refering to the new piece of 512mb (which had come from another quicksilver) and I tested that piece in other machines and it was fine, so I discounted it as the source of the errors. It turned out to be a piece I already had (256 mb hynix) and which I thought I'd used before with no problems, but I guess not (I had a couple of extra sticks).
    Anyway, back to the current problem, now even with the new (tested) quicksilver board (it's a 2002 - but that shouldn't matter), the QS 867 mhz processor won't work and I don't know why! It did run in the digital audio board, only exhibiting the same errors as the other cpu's due to the bad piece of ram. It hasn't been treated any differently than the other 3 processors I used testing, in fact, probably even more carefully, and they are all ok.
    It sometimes will boot to the apple OS X icon but stays there. I also get either a single beep, two beeps, three beeps, four beeps or no beeps at all (ie no power light, just the red light of the board, fans running, etc). I don't know if it got damaged earlier when testing (I did try it on another digital audio motherboard that I think was damaged in shipping), but I'm very careful (and have done a lot of computer updgrading, peecee and mac). The only thing I can think of is that when I first plugged this cpu into the latest QS motherboard, I tried to boot up without putting the heatsink on it first (not sure if this is important or not, it got hot but so did the 733mhz cpu which I'm using now - and nothing smells burned). I heard two little pop sounds, then the computer shut down (as it did before... many times with the other motherboard). I did also find out later that one of the cpu mounting posts wasn't tight to the board (it had snapped from the screw when I tightened it - didn't know my own strength), but usually no contact to the board would just cause no response, not a short to the cpu - and once again, the 733mhz cpu which is fine, went thru the same thing. I did get it to boot after this to the apple os x icon (I let it sit for a day). The motherboard is fine - I'm running from it now with the QS 733 mhz processor (and from whence I troubleshooted the bad piece of ram). And I've methodically zapped pram, reset the pmu, removed/changed batteries, took this part out, put that part in, threatened, cajoled, even sang to it... til I'm literally blue in the face - to no avail!
    Any suggestions? Or it this processor fried? Or is there something I'm missing (maybe in regards to the QS 2002 motherboard)? I've searched and nothing comes up that I have to do differently, and when I put the old 733 mhz cpu back in it (not changing anything else), everything runs fine (a lot slower, but fine, as I wipe a regretful tear away).
    Thanks for any input.
    *Hardware Overview:*
    Machine Name: Power Mac G4
    Machine Model: PowerMac3,5
    CPU Type: PowerPC G4 (2.0)
    Number Of CPUs: 1
    CPU Speed: 733 MHz
    L2 Cache (per CPU): 256 KB
    Memory: 1 GB
    Bus Speed: 133 MHz
    *Boot ROM Version: 4.3.3f2*
    Tiger 10.4.11 (a clean install, but it didn't like Panther either though)
    1 GB PC133-333 RAM (1 x 512mb, 2 x 256mb)
    ATI Radeon 9800 Pro 128 mb (PC flashed into Mac - no problems anywhere)
    ACARD 6280M PCI card (2 drives on it - but the 867mhz cpu didn't like a drive directly attached to the board either)
    Power On Self-Test:
    Last Run: 28/09/08 08:06
    Result: Passed
    This configuration has been running stably using the QS 733 Mhz processor (and ran stably before with an earlier qs motherboard in a different machine). So unless there is something different with the 2002 motherboard, and all research indicated it completely backward compatible, nothing I have installed is causing the problem. I have stripped the machine(s) down to the original configurations at some point, and...

    Can anyone tell if it would?
    Yes, if it fits into the slot.
    She was asking me if their is a way that a password can be put on the system to prevent him from getting into the Mac?
    Use the Accounts pane of System Preferences to disable automatic login and log out or use Fast User Switching to change to another account as needed.
    (43502)

  • How can I implement a Digital I/O counter with a maximum source frequency of 80 MHz (like 6602 board) using CompactRIO?

    How can I implement a Digital I/O counter with a maximum source frequency of 80 MHz (like 6602 board) using CompactRIO? It appears as if the Digital I/O modules for CompactRIO are much slower than this.
    Thank you,
    --Ray

    Hi Ray,
    The highest frequency input we offer for C Series modules is 20 MHz if you are doing LVTTL and 10 MHz for 5 V TTL.  These modules are the 9402 and 9401, respectively.  Unfortunately, there is no 80 MHz input on this form-factor.
    Regards,
    Chris E.
    Applications Engineer
    National Instruments
    http://www.ni.com/support

Maybe you are looking for