diff --git a/flasher.py b/flasher.py
new file mode 100644
index 0000000..e69de29
diff --git a/ked.py b/ked.py
index e89053c..7eac712 100644
--- a/ked.py
+++ b/ked.py
@@ -6,6 +6,8 @@ import os
 import shutil
 import subprocess
 
+import flasher
+
 class bcolors:
     HEADER = '\033[95m'
     OKBLUE = '\033[94m'
@@ -32,6 +34,7 @@ def build(TARGET_DEVICE):
     os.chdir(buildDirectory)
     os.system('make -j4')
 
+'''
 def flash(TARGET_DEVICE):
     # find out what platform the build is done (e.g. linux, win32, etc.)
 
@@ -44,6 +47,8 @@ def flash(TARGET_DEVICE):
         os.chdir(buildDirectory)
 
     print('this platform is not supported by KED!')
+'''
+
 
 ###########################################################################################################################