diff --git a/openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c b/openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
index fe683ca0bce21cf9f54690e0a9e69b6b1082c225..e6eed513b07f9d88b7b72ebe689b90739ea3984a 100644
--- a/openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
+++ b/openair1/PHY/NR_ESTIMATION/nr_ul_channel_estimation.c
@@ -570,7 +570,7 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
 
 
 
-#ifdef NO_INTERP
+#if NO_INTERP
       for (int i=0;i<12;i++) ((int32_t*)ul_ch)[i] = *(int32_t*)ch;
       ul_ch+=24;
 #else
@@ -640,7 +640,7 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
         ch[0] = ch_0 / 6;
         ch[1] = ch_1 / 6;
 
-#ifdef NO_INTERP
+#if NO_INTERP
       for (int i=0;i<12;i++) ((int32_t*)ul_ch)[i] = *(int32_t*)ch;
       ul_ch+=24;
 #else
@@ -713,7 +713,7 @@ int nr_pusch_channel_estimation(PHY_VARS_gNB *gNB,
       ch[0] = ch_0 / 6;
       ch[1] = ch_1 / 6;
 
-#ifdef NO_INTERP
+#if NO_INTERP
       for (int i=0;i<12;i++) ((int32_t*)ul_ch)[i] = *(int32_t*)ch;
       ul_ch+=24;
 #else
diff --git a/openair1/SIMULATION/NR_PHY/ulsim.c b/openair1/SIMULATION/NR_PHY/ulsim.c
index 4e00b53b1834269a8e4d09cec59f5ed151c547e7..9b07386ca007309238d79b4df39cc3a53c605af3 100644
--- a/openair1/SIMULATION/NR_PHY/ulsim.c
+++ b/openair1/SIMULATION/NR_PHY/ulsim.c
@@ -1228,6 +1228,8 @@ int main(int argc, char **argv)
 		&gNB->pusch_vars[0]->rxdataF_ext[0][start_symbol*NR_NB_SC_PER_RB * pusch_pdu->rb_size],nb_symb_sch*(off+(NR_NB_SC_PER_RB * pusch_pdu->rb_size)),1,1);
 	  LOG_M("chestF0.m","chF0",
 		&gNB->pusch_vars[0]->ul_ch_estimates[0][start_symbol*frame_parms->ofdm_symbol_size],frame_parms->ofdm_symbol_size,1,1);
+	  LOG_M("chestT0.m","chT0",
+		&gNB->pusch_vars[0]->ul_ch_estimates_time[0][0],frame_parms->ofdm_symbol_size,1,1);
 	  LOG_M("chestF0_ext.m","chF0_ext",
 		&gNB->pusch_vars[0]->ul_ch_estimates_ext[0][(start_symbol+1)*(off+(NR_NB_SC_PER_RB * pusch_pdu->rb_size))],
 		(nb_symb_sch-1)*(off+(NR_NB_SC_PER_RB * pusch_pdu->rb_size)),1,1);