Skip to content
View in the app

A better way to browse. Learn more.

The AVSIM Community

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

I Spoke too soon!

Featured Replies

Well it seems that once again I spoke too soon. All though FS COMM does make programing buttons, leds ect... a snap it does have a problem in reciving the proper value into Pigeon holes. look at the log from EPICINFO and then the log from FS COMM. you will note the EPICINFO sends the two bytes but FS COMM does not. and I can't figure out how to deal with that. I have tried the code as a word, as two bytes, as one byte one word ect.. but all I get is bad data. I can however send a value thru FS COMM to FLT.SIM. as a word and that works. I am at a loss. several days now. Ray look at the code on reciving the PH. It is your code. It works wonderfull with EPICINFO but no matter what I try I can't get it work with FS COMM.log from EPICINFO5363 PH001 = 030 026, 02630 [Hex 1E 1A, 46 0A], orig val=4.82999e-320 [0x0000000000002630] COM_FREQUENCYlog from FS COMM7:55:48 AM/Send value1->:0 and value2->:15 to PH Nr. 1 with return-code=No Errornext is the send code to EPICINFO 5328 SetJoy 3 Axis P: COM_RADIO_SET = 0000 -> 2630now the send from FS COMM7:55:34 AM/Write to FSUIPC: Offset: 0x34E Size:2 Data:10032 with return-code: FSUIPC OK7:55:34 AM/Epic Queue included 1 Events !7:55:34 AM/Received Nqw ( 600 , 2730 ) from Hardware.now the epl code that reads the PHph PH1(1){ //-------- Get COM1 Active Freqbyte B0; byte B1;rv_COM1a_LO = PH1.B0;rv_COM1a_HI = PH1.B1;jump(Set_COM1_DISP);I don't know what to do. I have e-mailed the Author about this but he has not responded yet. ????????? eaakkk!!! any ideas???? Ron.

Hi!I don't have so much experience with sending PH, but when I tried to send the AP HDG or IAS value to my EPIC with FSCOMM it worked fine. I have the latest version. Make also sure that you have the latest version of EPICINFO.dll in your FSCOMM Dir. Have you checked the scaling method? I think you have to use the internal processing procedure to convert from hex to decimal. Perhaps you take a look at the author's EPL Code.hope I helped you,steve

>Hi! >>I don't have so much experience with sending PH, but when I >tried to send the AP HDG or IAS value to my EPIC with FSCOMM >it worked fine. I have the latest version. Make also sure >that you have the latest version of EPICINFO.dll in your >FSCOMM Dir. Have you checked the scaling method? I think you >have to use the internal processing procedure to convert >from hex to decimal. Perhaps you take a look at the author's >EPL Code. >>hope I helped you, >steve I've just noticed that I mixed up EPICINFO.dll with EPICIO.dll. So make sure you have the latest version of EPICIO.dll in your FSCOMM dir.steve

Thanks steve, but I got it work. heres how. It seems that FS COMM uses a word instead of the byte. I had to split my read into two reads to get the PH freq.example codeph PH10(10){ //-------- Get COM1 Active Freq HUNDbyte B0; byte B1;word W1; rv_COM1a_HI = PH10.W1;jump(Set_COM1_DISP);};ph PH11(11){ //-------- Get COM1 Active Freq TENSbyte B0;byte B1;word W1;rv_COM1a_LO = PH11.W1;jump(Set_COM1_DISP);}; this is how I get the two words out of FS COMM instead of thisph PH10(10){ //-------- Get COM1 Active Freq byte B0; byte B1;rv_COM1a_LO = PH10.B0;rv_COM1a_HI = PH10.B1;jump(Set_COM1_DISP);}; anyway back to it. With FS COMM it is coming along.:-outta

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.