|
2 | 2 | """ |
3 | 3 | Arduino-mk Makefile and project initialiser |
4 | 4 |
|
5 | | -This script can be used in it's basic form create a project specific Makefile |
| 5 | +This script can be used in its basic form create a project specific Makefile |
6 | 6 | for use with Arduino-mk. Addionally, it can be used to create a template |
7 | 7 | Arduino source file and a traditional boilerplate project file structure. |
8 | 8 |
|
@@ -46,7 +46,7 @@ PARSER.add_argument('-v', '--verbose', action='store_true', |
46 | 46 | PARSER.add_argument('-d', '--directory', default=os.getcwd(), help='directory to run generator') |
47 | 47 | PARSER.add_argument('-b', '--board', default='uno', help='board tag') |
48 | 48 | PARSER.add_argument('-u', '--micro', default='AUTO', help='microcontroller on board') |
49 | | -PARSER.add_argument('-f', '--freq', default='AUTO', help='mlock frequency') |
| 49 | +PARSER.add_argument('-f', '--freq', default='AUTO', help='clock frequency') |
50 | 50 | PARSER.add_argument('-p', '--port', default='AUTO', help='monitor port') |
51 | 51 | PARSER.add_argument('-n', '--name', default=os.path.basename(os.getcwd()), help='project name') |
52 | 52 | PARSER.add_argument('-q', '--quiet', action='store_true', help='run quiet without user prompts') |
|
0 commit comments