From: chrishoder Date: Tue, 26 Feb 2013 02:45:08 +0000 (+0000) Subject: changes to the comments X-Git-Url: http://git.rot13.org/?p=goodfet;a=commitdiff_plain;h=34be758fc20244fe47823652172ba620f3ad5faf;ds=sidebyside changes to the comments git-svn-id: https://svn.code.sf.net/p/goodfet/code/trunk@1536 12e2690d-a6be-4b82-a7b7-67c4a43b65c8 --- diff --git a/client/FordExperiments.py b/client/FordExperiments.py index 5becb86..cf70b8a 100644 --- a/client/FordExperiments.py +++ b/client/FordExperiments.py @@ -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);