Skip to content

Commit 12623bb

Browse files
RMorales25ErickOF
authored andcommitted
clean Here prints
1 parent a95d859 commit 12623bb

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

modules/communication/src/img_initiator.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ struct img_initiator: sc_module
162162
{
163163
//Call event queue
164164
m_peq.notify(trans, phase, delay);
165-
cout<<"HERE"<<endl;
166165
return tlm::TLM_ACCEPTED;
167166
}
168167

@@ -175,8 +174,6 @@ struct img_initiator: sc_module
175174
switch (phase) {
176175
case tlm::BEGIN_RESP: {
177176

178-
cout<<"HERE3"<<endl;
179-
180177
trans.acquire();
181178
this->data_length = trans.get_data_length();
182179
this->data = new unsigned char[this->data_length];
@@ -195,8 +192,6 @@ struct img_initiator: sc_module
195192
printf("\n");
196193
//-----------DEBUG-----------
197194

198-
cout<<"HERE3"<<endl;
199-
200195
transaction_received_e.notify();
201196
//-----------DEBUG-----------
202197
printf("[DEBUG] Reading at Initiator: ");
@@ -205,7 +200,6 @@ struct img_initiator: sc_module
205200
}
206201
printf("\n");
207202
//-----------DEBUG-----------
208-
cout<<"HERE10"<<endl;
209203
break;
210204
}
211205
default: {

modules/communication/src/img_target.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ struct img_target: sc_module
106106

107107
response_phase = tlm::BEGIN_RESP;
108108
status = socket->nb_transport_bw(trans, response_phase, response_delay);
109-
cout << "HERE" << endl;
110109

111110
//Check Initiator response
112111
switch(status) {

modules/communication/src/tb_edge_detector_tlm.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,8 @@ SC_MODULE(Tb_top)
226226

227227
localResult = (int)sqrt((float)(pow((int)localGradientX, 2)) + (float)(pow((int)localGradientY, 2)));
228228
#endif // EDGE_DETECTOR_AT_EN
229-
cout << "HERE01" << endl;
230229
localGradientX = *data_returned;
231230
localGradientY = *(data_returned+1);
232-
cout << "HERE01" << endl;
233231

234232
localResult = (int)sqrt((float)(pow(localGradientX, 2)) + (float)(pow(localGradientY, 2)));
235233
#ifdef TEST_NORMALIZE_MAGNITUDE

0 commit comments

Comments
 (0)