Prime Graphing Calculator Identifica​tion of Older Prime Hardware Version A

Hello,
I have been trying to update the firmware version to the latest version (2014 07 02 (6031)) on my Prime Graphing Calculator without luck, the release_info.txt file indicates that (for firmware version 2014 03 31 (6030)):
There is limited backward compatibility between this and earlier releases.
Older Prime hardware (Revision A) does support this release, however the wireless, unit-to-unit, and data streamer functionality is not supported on earlier models. In the Help->About HP Prime screen the hardware revision will be displayed along with software version information.
How can I tell if my calculator hardware number is the Revision A hardware?
Is the CAS version the hardware number?
Thank you very much,
H.
This question was solved.
View Solution.

Hi,
All HP Primes are upgradeable to version 6030 (note that 6031 is for the PC emulator only). It is just that Hardware A has a problem with some communications.
Firmware versions prior to 6030 (i.e. 5447 and older) do not show the hardware version in the 'about' screen.
When you upgrade to 6030 the hardware version will be displayed in the 'about' screen.
You can also determine the hardware version from the model number (found on the back of the box it came in, near the bar code):
NW280AA is Revision A hardware
G8X92AA is Revision C hardware
By the way, the following process is recommended for upgrading the Prime:
Install the Connectivity Kit from the CD.
Once the connectivity kit is installed, update the calculator.
The following method is recommended:
Connect your HP Prime calculator via the supplied USB cable (directly connected, do not use a USB hub)
Start the HP Connectivity Kit 
Click the Calculator tab 
Right-click the name of the HP Prime you wish to update (it would be the one you connected before starting this procedure) 
Make a note of the version number and then click the OK button 
Click on the Help Menu and select Check for update 
Check for update pop-up box, check version number that it is newer than the one you wish to update. 
Then click download button 
That's it, you'll see on the screen of your calculator the update being loaded and installed. Don't click too fast to get out of the HP Connectivity Kit, wait a minute or so after completion. 
Also, there is a step in the Connectivity Kit where it is advised to back-up the version you had before you run the procedure, just in case. That way you have a way to re-cover.
Regards.
Note: I do not work for HP, I just like playing with calculators :-)

Similar Messages

  • HP Prime Virtual Calculator missing mfc120u.dll error since upgrade to version 1.21.8151.102

    The HP Prime virtual calculator will not start since the most recent update (version 1.21.8151.102). A windows system error popup window comes up when attempting to start the virt calc saying "The program can't start because mfc120u.dll is missing from your computer. Try reinstalling the program to fix this problem." Needless to say "re-installing" did not fix the problem. From searches it appears the specified DLL is associated with debug builds so wondering if the latest version was built incorrectly?? Anyone else having this problem? Any solution from HP? I have had to revert to my "shipped" version which is sub-optimal. There has been no problem so far with my actual HP Prime device since the latest firmware update so phew... but the virtual calc is handy when working on the PC with code. I am running 64bit windows 7 -- all latest updates applied from MS etc. had no problems until this version of the vCalc 

    One possible scenario: On installation, the 64 bit OS is recognised and the 64 bit version of the redistributable is installed.The emulator is probably a 32 bit version (compatibility, 32 bit programs usually work on 64 bit systems but not vice versa).It looks for the 32 bit version of the redistributable which isn't installed. Note, this is one of many possibilities in todays software world. However, the fact that 32 bit programs require the 32 bit redistributable and 64 bit programs require the 64 bit redistributable is why I suggested to install both versions. This is not only useful for HP's emulators, but many other programs (hence I have so many installed already). Best regards.

  • Simple Graphing Calculator with 2D array

    Hello,
    I am building a simple graphing calculator which reads in coefficients from a txt file. All is going well except when I plot the points, the graph is at the corner of the screen and sideways. As we all know, the origin of the array is at the top right corner, so how do I transform/slide it so that it is at the xy origin? Code is posted below, thanks!
    import javax.swing.*;
    import java.awt.*;
    public class baseClass extends JFrame{
         private shapesPanel panel;
         public baseClass(String title){
              panel = new shapesPanel();
              setTitle(title);
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              getContentPane().add(panel);
              pack();
              setVisible(true);
         public void drawLine(int x1, int y1, int x2, int y2){
              panel.addLine((short)x1,(short)y1,(short)x2,(short)y2);
              panel.repaint();
         public void drawDot(int x, int y){
              panel.addOval((short)x,(short)y,(short)1,(short)1);
              panel.repaint();
         private class shapesPanel extends JPanel{
              final private short max = 10000;
              private short[][] lines, ovals;
              private int numLines, numOvals;
              public shapesPanel(){
                   setBackground(Color.white);
                   setPreferredSize (new Dimension(500,500));
                   lines = new short[max][4];
                   ovals = new short[max][4];
                   numLines = 0;
                   numOvals = 0;
              public void paintComponent(Graphics g){
                   super.paintComponent(g);
                   g.setColor(new Color(0,0,255));
                   for(int i = 0; i < numLines;++i){
                        g.drawLine(lines[0],lines[i][1],lines[i][2],lines[i][3]);
                   g.setColor(new Color(255,0,0));
                   for(int i = 0; i < numOvals;++i){
                        g.drawOval(ovals[i][0],ovals[i][1],ovals[i][2],ovals[i][3]);
              public void addLine(short x1, short y1, short x2, short y2){
                   lines[numLines][0] = x1;
                   lines[numLines][1] = y1;
                   lines[numLines][2] = x2;
                   lines[numLines][3] = y2;
                   ++numLines;
              public void addOval(short x, short y, short w, short h){
                   ovals[numOvals][0] = x;
                   ovals[numOvals][1] = y;
                   ovals[numOvals][2] = w;
                   ovals[numOvals][3] = h;
                   ++numOvals;
    import java.util.Scanner;
    import java.io.*;
    public class graphingCalculator extends baseClass{
         // CONTAINS THE FOUR FUNCTION COEFFICIENTS
         private double[] theFunction;
    // CONTAINS THE DISCRETE FUNCTION PLOT
    private boolean[][] grid;
    // SIZE OF THE COORDINATE SYSTEM
    private final int columns = 500, rows = 500;
    public graphingCalculator(String filename) throws IOException{
         // INITIALIZATIONS ///////////////////////////////////////
    super("GRAPHING CALCULATOR");
    theFunction = new double[4];
         grid = new boolean[rows][columns];
    for(int i = 0;i<rows;++i){
    for(int j = 0;j<columns;++j){
    grid[i][j] = false;
    // DRAW THE COORDINATE SYSTEM ON THE SCREEN /////////////
    drawLine(0,250,500,250);
    drawLine(250,0,250,500);
    for(int i = 0; i < columns;i+=20){
    drawLine(i,247,i,253);
    for(int i = 0; i < rows;i+=20){
    drawLine(247,i,253,i);
    // GET THE FUNCTION COEFFICIENTS ///////////////////////
    // theFunction[0] will have the x^3 coefficient
    // theFunction[1] will have the x^2 coefficient
    // theFunction[2] will have the x^1 coefficient
    // theFunction[3] will have the x^0 coefficient
    Scanner scan1 = new Scanner(new File(filename));
    for(int i=0;i<4;++i){
         theFunction[i] = scan1.nextDouble();
    scan1.close();
    // DRAW THE FUNCTION ////////////////////////////////////
    computeGrid();
    drawDiscrete();
    drawContinuous();
    private double computeFunction(int x)
         double a=theFunction[0];
         double b=theFunction[1];
         double c=theFunction[2];
         double d=theFunction[3];
         double answer=(a*Math.pow(x,3.0)+b*Math.pow(x,2.0)+c*Math.pow(x,1.0)+d*Math.pow(x,0.0));
         return answer;
    private void computeGrid()
              // Populate the 'grid' array with true values that correspond
              // to the discrete function.
              // The 'grid' array is the internal representation of the function
         for(int x=0; x<columns; x++)
                   if(computeFunction(x)>=0&&computeFunction(x)<500)
                   grid[(int)computeFunction(x)][x]=true;
    private void drawDiscrete()
              // Use drawDot(x,y) to draw the discrete version of the function
         for(int x=0;x<columns;x++)
              for(int j=0;j<rows;j++)
         if(grid[x][j])
              drawDot(x,j);
    private void drawContinuous()
              // Use drawLine(x1,y1,x2,y2) to draw the continuous version of the function

    Rest of code:
    import java.util.Scanner;
    import java.io.*;
    public class Main {
        public static void main(String[] args) throws IOException{
        String infile;
        Scanner scan = new Scanner(System.in);
        // The input file should have 4 doubles in it
        // corresponding to the 4 coefficients of a cubic function.
        // A GOOD EXAMPLE:
        //                  0.01
        //                  0.0
        //                  -5.0
        //                          50.0
        // CORRESPONDS TO FUNCTION: 0.01*X^3 - 5.0*X + 50.0       
        // ANOTHER GOOD EXAMPLE:
        //                  0.0
        //                  0.01
        //                  -1.0
        //                          -100.0
        // CORRESPONDS TO FUNCTION: 0.01*X^2 - X - 100.0       
        System.out.println("Please enter filename of input file: ");
        infile = scan.next();
        graphingCalculator cal = new graphingCalculator(infile);
    }

  • Error -1074384569; NI-XNET: (Hex 0xBFF63147) The database information on the real-time system has been created with an older NI-XNET version. This version is no longer supported. To correct this error, re-deploy your database to the real-time system.

    Hello
    I have a VeriStand-Project (VSP) created with my Laptop-Host (LTH) which works with my PXI, while
    deploying it from my LTH. Then I have installed the whole NI enviroment for PXI and VeriStand use on a
    industrial PC (iPC). I have tried to deploy my VSP from the iPC to the PXI but the following error
    message arose on my iPC:
    The VeriStand Gateway encountered an error while deploying the System Definition file.
    Details: Error -1074384569 occurred at Project Window.lvlibroject Window.vi >> Project
    Window.lvlib:Command Loop.vi >> NI_VS Workspace ExecutionAPI.lvlib:NI VeriStand - Connect to System.vi
    Possible reason(s):
    NI-XNET:  (Hex 0xBFF63147) The database information on the real-time system has been created with an
    older NI-XNET version. This version is no longer supported. To correct this error, re-deploy your
    database to the real-time system. ========================= NI VeriStand:  NI VeriStand
    Engine.lvlib:VeriStand Engine Wrapper (RT).vi >> NI VeriStand Engine.lvlib:VeriStand Engine.vi >> NI
    VeriStand Engine.lvlib:VeriStand Engine State Machine.vi >> NI VeriStand Engine.lvlib:Initialize
    Inline Custom Devices.vi >> Custom Devices Storage.lvlib:Initialize Device (HW Interface).vi
    * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * • Unloading System
    Definition file... • Connection with target Controller has been lost.
    The software versions of the NI products (MAX/My System/Software) between my LTH and the iPC are
    almost the same. The only differences are:
    1. LabView Run-Time 2009 SP1 (64-bit); is installed on LTH but missing on iPC. The iPC has a 32-bit system.
    2. LabView Run-Time 2012 f3; is installed on LTH but missing on iPC.
    3. NI-DAQmx ADE Support 9.3.5; something strage on the LTH, because normally I am using NI-DAQmx 9.5.5 and all other DAQmx products on my LTH are 9.5.5. That means NI-DAQmx Device Driver 9.5.5 and NI-DAQmx Configuration 9.5.5.. On the iPC side all three products are 9.5.5.. That means NI-DAQmx ADE Support 9.5.5, NI-DAQmx Device Driver 9.5.5 and NI-DAQmx Configuration 9.5.5..
    4. Traditional NI-DAQ 7.4.4; The iPC has this SW installed. On the LTH this SW is missing.
    In order to fix this problem I have formatted my PXI and I have installed the following SW from the iPC:
    1. LabVIEW Real-Time 11.0.1
    2. NI-488.2 RT 3.0.0
    3. NI_CAN 2.7.3
    Unfortunately the above stated problem still arose.
    What can I do to fix this problem?
    I found a hint on http://www.labviewforum.de/Thread-XNET-CAN-die-ersten-Gehversuche.
    There it is written to deploy the dbc file againt.
    If this is a good hint, so how do I deploy a dbc file?
    I would feel very pleased if somebody could help me! :-)
    Best regards
    Lukas Nowak

    Hi Lukas,
    I think the problem is caused by differenet drivers for the CAN communication.
    NI provides two driver for CAN: NI-CAN and NI-XNET.
    NI-CAN is the outdated driver which is not longer used by new hardware. NI replaced the NI-CAN driver with NI-XNET some years ago, which supports CAN, LIN and the FLEXRAY communication protocol.
    You wrote:
    In order to fix this problem I have formatted my PXI and I have installed the following SW from the iPC:
    3. NI_CAN 2.7.3
    NI CAN is the outdated driver. I think that you should try to install NI-XNET instead of NI-CAN on your PXI-System, to get rid of the error message.
    Regards, stephan

  • Why Can't Older Internet Explorer Versions Be Self-Destructed?

    Web Designers And Developers Always Have To Pay The Price For Older Browsers, esp. older I.E versions. Lot's of people especially old folks and computer illiterates still use them due to the fact they know very little About Browsers
    and updates, Why Can't All the Older Unsupported version be Killed.
    How?
    Same way browsers or any other software get prompted(their users get prompted) there's a new version once they connect to the web, then told they should click 'update' to update, all users of older browsers would be prompted "this
    browser is just stupidly outdated, it'll self-destruct in 10 secs, and the latest supported version would be downloaded automatically, sit back and enjoy" Problem solved!

    Hi Dar,
    Thanks for your idea. But this forum is help people develop them own web site, so you could submit a suggestion or share your idea to the IE uservoice.
    http://blogs.msdn.com/b/ie/archive/2014/10/16/introducing-the-ie-platform-suggestion-box-on-uservoice.aspx
    It seems someone others have the same idea as yours.
    https://wpdev.uservoice.com/forums/257854-internet-explorer-platform/suggestions/6509607-auto-update-older-ie-versions
    Best regards,
    Shu Hu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • My Mac OS X version is 10.6.8. I'd like to download Pages, but my computer cannot support its latest version. As I don't intend to upgrade my computer anytime soon, is it possible to buy an older (and compatible) version of Pages anywhere?

    My Mac OS X version is 10.6.8. I'd like to download Pages, but my computer cannot support its latest version. As I don't intend to upgrade my computer anytime soon, is it possible to buy an older (and compatible) version of Pages anywhere?

    Holvi,
    You will probably be able to find the iWork'09 DVD at Amazon or similar online vendor. Install from the DVD and immediately run Software Update to get to the latest version.
    The Terms of Use here dictate that we test our suggestions before posting, but obviously I'm not going to try this myself, so there's an element of risk, but it seems your only option. It has worked for users in the past, but you never know how OS upgrades can change such things. If you go this route, please post back with your results.
    Good luck,
    Jerry

  • No compatability with older printer hardware/software and no windows media center

    What can I say except that Microsoft is the only company that releases an inferior product after years of having a great product. Windows 8.1 and 8 would be fine if it were compatible with old hardware i.e. printers and had Windows Media Center. This is
    now a very bare bones product. I certainly won't be paying the $129 price tag for Windows Pro 8.1 pack, just to get media center - not when there's so many free alternatives around for that. In future, don't purchase a photo quality printer that costs a fortune.
    Buy a nasty cheap one with inexpensive cartridges, as eventually you won't be able to install the older software for your far superior printer i.e. Epson stylus photo 1270.  Sounds like a collusion with both Microsoft and Printer manufacturers to get
    folk purchasing hardware they don't want or need, while they're older hardware works just fine - it's the new operating systems that don't. No thank you.

    Hi,
    Please understand that Microsoft's partners have shared clear concerns over the costs associated with codec licensing for traditional media playback, especially as Windows 8 enables an unprecedented variety of form factors. Windows has addressed these concerns
    in the past by limiting availability of these experiences to specialized “media” or “premium” editions.  
    That's why the Media center is separated for additional cost.
    For the compatibility thing about older device, you can use the compatible mode to install the related driver on Windows 8 and 8.1 to get it work.
    Making older programs compatible with this version of Windows
    http://windows.microsoft.com/en-gb/windows-8/older-programs-compatible-version-windows
    Kate Li
    TechNet Community Support

  • I have an older Mac desktop, version 10.5.8. I need to reinstall Image Capture. Help, please.

    I have an older Mac desktop, version 10.5.8. I need to reinstall Image Capture. Help, please.

    Do you have the original gray system disks that came with the computer, or a full retail install disk set for 10.5? If so, you can use a utiltiy:
    http://charlessoft.com/pacifist_olderversions.html
    to extract just Image Capture from the disk and install it. Otherwise, you  would have to reinstall the entire OS

  • Bought a new windows computer and older and newer versions of photoshop have extremely small icons/font/tools...etc., making it almost unusable.  Any suggestions?  Or, do I take my new computer back?

    bought a new windows computer and older and newer versions of photoshop have extremely small icons/font/tools...etc., making it almost unusable.  Any suggestions?  Or, do I take my new computer back?

    That's Adobe for you!
    No matter how much we request, beg and/or complain, nothing is done about the miserably small interface.
    We're still left with the three inadequate choices in preferences:
    Other than that, you can change your monitor's resolution.

  • If I have a droid Maxx (older 32 GB version) should it be working with xlte? or is that exclusive to the newer 16GB versions?

    If I have a droid Maxx (older 32 GB version) should it be working with xlte? or is that exclusive to the newer 16GB versions?

    ihaveaquestion. wrote:
    The Droid Maxx shows up on the list of phones there.
    As long as it was the DROID Maxx and not the older DROID Razr Maxx and DROID Razr Maxx HD.

  • HT1145 I have an older plug in version of Airport Express and am trying to connect it to my wifi network to boost coverage but it is not connecting to my network.

    I have an older plug in version of Airport Express and am trying to connect it to my wifi network to boost coverage but it is not connecting to my network.

    What is the make & model of the wireless router that you are trying to "boost" with the AirPort Express? Is your Express an 802.11g or 802.11n model? Is the connection between routers going to be a wired or wireless one?

  • Problem installing older NI-DAQ version

    I have installed Labview 6.02 without NI-DAQ option.
    I want to install older NI-DAQ version (6.0) but during installation a window tell me that "Labview as a newer version of the NI-DAQ 6.0 installer"
    I have tried to clean my registry with regclean but problem still.
    Where do I go in my registry to disable the newer NI-DAQ Installed?
    Need Help!
    Harold Hebert
    National Research Council Canada

    Have you tried following NI's solution for installing older NI-DAQs w/ LV 6?
    Article:
    http://digital.ni.com/public.nsf/3efedde4322fef19862567740067f3cc/f7d5934af18eaa038625694600453df2?OpenDocument
    2006 Ultimate LabVIEW G-eek.

  • Upgrading from Prime 1.2 to 1.3 - What about WLC version?

    If I upgrade to prime v1.3, from v1.2, am I required to upgrade my WLC controllers to v7.4, or will my current version (v7.2) work fine?
    Thanks.

    No upgrade to your WLCs is required. Any v7.0 or later should be fine. See the Release Notes here for details.

  • Can Prime report on what devices are in Prime but not running SSH or TACACS+

    I currently have 150+ switches and routers in Prime Infrastructure 2.1. I was looking to see if there was an easy way to run a report on the switches and routers to see if any were not running SSH or TACACS+.
    Thanks

    Configuration discrepancy reports such as you're asking about are not quite in Prime Infrastructure in any robust form. they are in Prime LMS and targeted for a future release of PI. This is noted in the functional comparison document.

  • System identifica​tion for open loop unstable plant?

    Hello,
    I have been trying to use system identification on labview. My problem is that my plant is open loop unstable and none of the tutorials or examples I have found seem to cover this so I cannot get it to work. Does anyone have any suggestions as to how I should go about it? My plant has an RC servo so it needs a PWM signal to stimulate it.
    Thanks
    Adam

    adamkse wrote:
    I want to control my plant with lead/lag control but I do not know the plant model which makes this very difficult. I cannot theoretically calculate it because the information I need to obtain a numerical transfer function or state space model is unavailable.
    I have it controlled with PID at the moment but this is not ideal.
    I am trying to use the system identification toolkit to obtain a transfer function but I do not know what to do because the examples do not work for open loop unstable plants.
    Adam
    Ok Open loop unstable functions cannot be predictably controlled (hence the terms; open loop and unstable,)  Not being able to model the actions is a bit of a problem too.
    Somehow, someway you need to get some kind of model or some kind of feedback to either provide stability in the plant or close the loop.
    Adding hardware (sensors) is the most likely solution.
    tell me more about the plant, I do this kind of thing for a living, so I could offer some ideas. 
    Jeff

Maybe you are looking for

  • Negative Qty in Pick and Pack Manager

    Hi all, I've the following problem with SBO 2005A, is there someone who can help me? I need to print pick lists even if "qty available to release" is less than the open qty. Scenario is when I have to provide information to the wherehouse about sales

  • ITunes 11.0.4.4 crashes when I play certain songs and the problem is spreading.

    Ever since I downloaded iTunes 11.0.4.4 (for windows 7), the program has been crashing whenever I play certain songs and at this point the problem is spreading, more and more songs that weren't problems before. I have been through just about every tr

  • Is there a way to view Desktop App fullscreen?

    Is there a way to view Desktop App full screen? Too much scrolling in new Market section.  Now I seem limited on window size.

  • Purchase Requistion ME52n

    Hi, This is a requirement in ME52N. If some user opens the ME52N in change mode, then he should be able to change only Purchasing Organization and no other fields. I have got one BADI for this : ME_PROCESS_REQ_CUST and OPEN method. I am not sure how

  • Issue with ACPI themal_zones

    So today I set up lm_sensors on my AMD Phenom II. Unfortunately, this proc does not support coretemp, but it did seem to detect both my CPU and motherboard thermal sensors. The output for sensors is: http://pastebin.com/J4k4DCtn. However /proc/acpi/t