// Creates the target EMI format using a cEMI L-Data message
 private byte[] createEmi(final CEMILData f) {
   if (cEMI) {
     final CEMILData adjusted = adjustMsgType(f);
     addMediumInfo(adjusted);
     return adjusted.toByteArray();
   }
   return CEMIFactory.toEmi(f);
 }