Version FC

Dependencies:   DmTftLibrary eeprom SX1280Lib filesystem mbed

Fork of MSNV2-Terminal_V1-5 by Francis CHATAIN

Revision:
23:d7df2e2d28de
Parent:
21:8524d815c587
Child:
38:9b43b2415093
Child:
41:5a436163dddf
--- a/Controller.cpp	Wed Sep 05 21:58:07 2018 +0000
+++ b/Controller.cpp	Tue Sep 11 21:11:35 2018 +0000
@@ -8,6 +8,13 @@
  *
  */
 
+/*
+#include <sstream>
+#include <iostream>
+#include <iomanip>
+#include <string>
+*/
+
 #include "Context.h"
 
 #ifndef TEST_ENVIRONMENT
@@ -41,6 +48,16 @@
     // Basic  instance
     //this.dataBase    =  DataBase;
     //this.messageFactory     =  Message   ;      // Messages Maker   (Sensors, Config, Synchro ...)
+    uint32_t   aValue = 65985;
+    std::cout << "0x" << std::hex << aValue << std::endl;
+
+    std::stringstream stream;
+    
+    stream << "0x" << std::hex << aValue;
+    std::string result(stream.str());
+
+    std::cout << result.c_str() << std::endl;
+
 }
 
 Controller::~Controller() { }   // delete xxx;