added -q ( quiet ) option to the play command
[clinton/Smoothieware.git] / src / libs / Kernel.cpp
index 49570a9..3355dae 100644 (file)
@@ -52,10 +52,10 @@ Kernel::Kernel(){
     // Serial second, because the other modules might want to say something
     this->streams        = new StreamOutputPool();
 
-    this->serial         = new SerialConsole(USBTX, USBRX, this->config->value(uart0_checksum,baud_rate_setting_checksum)->by_default(9600)->as_number());
-    
+    //this->serial         = new SerialConsole(USBTX, USBRX, this->config->value(uart0_checksum,baud_rate_setting_checksum)->by_default(9600)->as_number());
+   
     this->add_module( this->config );
-    this->add_module( this->serial );
+    //this->add_module( this->serial );
 
     // HAL stuff 
     this->slow_ticker          = new SlowTicker();