diff --git a/crazyflie_groundstation/inc/CTOC.h b/crazyflie_groundstation/inc/CTOC.h
index c07aed490f3900db93f3b5201f7c318bb2843d0e..cb56ed1b3086d9c83ede0a83af22cd32a09c1303 100644
--- a/crazyflie_groundstation/inc/CTOC.h
+++ b/crazyflie_groundstation/inc/CTOC.h
@@ -82,7 +82,7 @@ class CTOC {
   int m_nRadioChannel;
   CCrazyRadio *m_crRadio;
   CCrazyflie *m_crazyflie;
-  int m_nItemCount;
+  uint16_t m_nItemCount;
   std::list<struct TOCElement> m_lstTOCElements;
   std::list<struct LoggingBlock> m_lstLoggingBlocks;
   std::vector<std::string> m_lstActiveLogging;
diff --git a/crazyflie_groundstation/src/CTOC.cpp b/crazyflie_groundstation/src/CTOC.cpp
index 745e05ff5517872c03765a9ad577efcb2d253e3e..098547b324a0c079950ce019377b850cd632e338 100644
--- a/crazyflie_groundstation/src/CTOC.cpp
+++ b/crazyflie_groundstation/src/CTOC.cpp
@@ -90,7 +90,10 @@ bool CTOC::requestMetaData() {
 	// 	bReturnvalue = true;
 	// }
 	if(crtpReceived->data()[0] == 0x03) {
-		m_nItemCount = (uint8_t) crtpReceived->data()[1];
+		char amount[2];
+		amount[0] = crtpReceived->data()[1];
+		amount[1] = crtpReceived->data()[2];
+		memcpy(&m_nItemCount, amount, sizeof(uint16_t));
 		bReturnvalue = true;
 	}
 
diff --git a/crazyflie_groundstation/src/ccrazyradio/CCrazyRadio_loopFuncs.cpp b/crazyflie_groundstation/src/ccrazyradio/CCrazyRadio_loopFuncs.cpp
index 1d2d7d0e133da86eee49ed71a09ffda730dff601..5772cf441ab1559deaedd5e1272f0efe047ceb79 100644
--- a/crazyflie_groundstation/src/ccrazyradio/CCrazyRadio_loopFuncs.cpp
+++ b/crazyflie_groundstation/src/ccrazyradio/CCrazyRadio_loopFuncs.cpp
@@ -23,7 +23,7 @@ void CCrazyRadio::mainLoop() {
 			(*it)->writeLogData();
 		}
 
-		//usleep(100);
+		usleep(500);
 
 		// Check if the thread has been told to terminate
 		if (this->m_exitThread) {
diff --git a/crazyflie_groundstation/src/crazyflieGroundStation.cpp b/crazyflie_groundstation/src/crazyflieGroundStation.cpp
index 5ac66203bfb3b6663f77c71b05ce3b5c5f686003..112f44c4fc8c6444e0f52af25e62e0dcebe8c953 100644
--- a/crazyflie_groundstation/src/crazyflieGroundStation.cpp
+++ b/crazyflie_groundstation/src/crazyflieGroundStation.cpp
@@ -494,8 +494,9 @@ void closeoutProgram() {
 		cout << "\tBattery" << ": " << crazyflie_info[i].cflieCopter->batteryLevel() << endl;
 		crazyflie_info[i].cflieCopter->cycle();
 		crazyflie_info[i].cflieCopter->resetLoggingBlocks();
-		crazyflie_info[i].cflieCopter->test_stand->close();
-
+		if(crazyflie_info[i].cflieCopter->test_stand != NULL) {
+			crazyflie_info[i].cflieCopter->test_stand->close();
+		}
 		delete crazyflie_info[i].cflieCopter;
 	}