Index: branches/FEPSimulator/DataPacker.cpp
===================================================================
--- branches/FEPSimulator/DataPacker.cpp	(revision 80)
+++ branches/FEPSimulator/DataPacker.cpp	(revision 113)
@@ -1,3 +1,4 @@
 #include "DataPacker.h";
+#include <stdio.h>
 
 unsigned char * DataPacker::msg;
@@ -7,5 +8,5 @@
     DataPacker packer;
     msg = packer.staticDataPack(station);
-    pos = packer.dynamicDataPack(station, 5, pos);    
+/*    pos = packer.dynamicDataPack(station, 5, pos);    
     pos = packer.dynamicDataPack(station, 6, pos);
     pos = packer.dynamicDataPack(station, 7, pos);
@@ -19,5 +20,5 @@
     // will need to check if queue override is enabled (Currently, no queue
     // ldsMap[i].dataPack[16-1] = ;
-
+*/
     // byte 23: MAINLINE total volume
     msg[23 - 1] = station->MlTotVol;
@@ -30,10 +31,10 @@
             packer.chksum(msg, station->length - 1 - 1);
     
-    /*
     for (int j = 0; j < station->length; j++) {
         printf("%02X", msg[j]);
     }
     printf("\n");
-    */
+
+    return msg;	
 }
 
