Delta / Mbed OS Delta_CLI

Fork of NNN40_CLI by Delta

Revision:
20:bd1760975052
Parent:
13:7eaec228ad23
Child:
21:72d7a6e85d7f
--- a/CLI_Source/command-interpreter.cpp	Wed Oct 19 06:49:09 2016 +0000
+++ b/CLI_Source/command-interpreter.cpp	Wed Oct 19 10:34:28 2016 +0000
@@ -489,15 +489,4 @@
 	return commandState.totalIndex;
 }
 
-uint8_t isValidGPIO(uint8_t num)
-{
-    uint8_t cfgPin[] = {0,4,5,6,7,13,21,23,24,25,29,30,31};
-    uint8_t i;
 
-    for ( i = 0; i < sizeof(cfgPin) ; i++ ) {
-        if ( num == cfgPin[i] )
-            return 1;
-    }
-
-    return 0;
-}