Changeset 12229 for trunk/FACT++/src/ConnectionUSB.cc
- Timestamp:
- 10/22/11 19:25:48 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/ConnectionUSB.cc
r12213 r12229 175 175 } 176 176 177 #ifdef DEBUG 178 ofstream fout("tansmitted.txt", ios::app); 179 fout << Time() << ": "; 180 for (int i=0; i<fOutQueue.front().size(); i++) 181 fout << hex << setfill('0') << setw(2) << (uint32_t)fOutQueue.front()[i]; 182 fout << endl; 183 #endif 184 177 185 HandleTransmittedData(n); 178 186 … … 216 224 if (!first_message_in_queue) 217 225 return; 226 227 #ifdef DEBUG 228 ofstream fout("send.txt", ios::app); 229 fout << Time() << ": "; 230 for (int i=0; i<msg.size(); i++) 231 fout << hex << setfill('0') << setw(2) << (uint32_t)msg[i]; 232 fout << endl; 233 #endif 218 234 219 235 // AsyncWrite + Deadline
Note:
See TracChangeset
for help on using the changeset viewer.