Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Therefore, bit8 should be activated when IFR Processing is required.

How to configure the upfront button?

Code Block
static private TlvTree getTableE1(){
      TlvTree E1 = null;    
      TlvTree inner = TlvTree.FromRaw(ArkosConfiguration.Get());        
      TlvTree nexoFastConfig = inner.GetChild(Configuration.NEXO_FAST_CONFIGURATION);        
      if (nexoFastConfig != null) {
        E1 = nexoFastConfig.GetChild(NexoFastConfiguration.E1_TABLE);
      }          
      return E1;
    }

Code Block
static public boolean isUpfrontButtonConfigured(){
      TlvTree e1 = getTableE1();    
      if (e1 == null) {
          return false;    
      }
      byte[] eeaProcessSettings = e1.GetElementValue(E1Table.EEA_PROCESS_SETTINGS);    
      return ((eeaProcessSettings[0] & 0x80) !=0);
    }

Bit 6 and 5 are not supported since Arkos does not provide support to override selected application during CVM Process.

...