changes to the comments
authorchrishoder <chrishoder@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Tue, 26 Feb 2013 02:45:08 +0000 (02:45 +0000)
committerchrishoder <chrishoder@12e2690d-a6be-4b82-a7b7-67c4a43b65c8>
Tue, 26 Feb 2013 02:45:08 +0000 (02:45 +0000)
git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1536 12e2690d-a6be-4b82-a7b7-67c4a43b65c8

client/FordExperiments.py

index 5becb86..cf70b8a 100644 (file)
@@ -307,6 +307,13 @@ class FordExperiments(experiments):
                 self.multiPacketSpit(packet0rts=True)
 
     def rpmHack(self, inputs):
+        """
+        This method will increase the rpm by the given rpm amount.
+        
+        @type inputs: List
+        @param inputs: Single element of a list that corresponds to the amount the user
+                       wishses to 
+        """
     
         self.client.serInit()
         self.spitSetup(500)
@@ -359,6 +366,7 @@ if __name__ == "__main__":
         
             speedometerHack
             fakeVIN
+            rpmHack
         ''')
     parser.add_argument('verb', choices=['speedometerHack', 'rpmHack']);
     parser.add_argument('-v', '--variable', type=int, action='append', help='Input values to the method of choice', default=None);