rkaplan Posted April 18, 2005 Report Share Posted April 18, 2005 Is there a way to use GFDisplay to display manifold pressure and propeller RPM? Link to comment Share on other sites More sharing options...
Pete Dowson Posted April 18, 2005 Report Share Posted April 18, 2005 Is there a way to use GFDisplay to display manifold pressure and propeller RPM? Have you looked these up in the FSUIPC programmer's document? Both are listed. Use a search on the text. Engine 1's MP is a 16-bit word at offset 08C0 in inches * 1024, so you can display that simply by something like (for example): D0=X8C0 U16 D22 /1024 ;MP in inches as nn.nn The prop 1 RPM is best taken from the 64-bit floating point value at offset 2400, so, for example: D1=X2400 F64 D40 ;RPM as nnnn or -nnnn (neg for contra-rotation) Change the formatting to suit your needs. These are only examples. Regards, Pete Link to comment Share on other sites More sharing options...
rkaplan Posted April 18, 2005 Author Report Share Posted April 18, 2005 Thanks! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now