From 4c0edf9e933dbd4e54f1ce4329836a9ba0edce11 Mon Sep 17 00:00:00 2001 From: odaki Date: Sun, 16 Aug 2020 09:47:18 +0900 Subject: [PATCH] Fix configurator (#549) * Update configure-features.py to match the latest file names. * Update configure-features.py to adopt the latest source tree. --- configure-features.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure-features.py b/configure-features.py index 4419ae06..17ea6c34 100755 --- a/configure-features.py +++ b/configure-features.py @@ -3,7 +3,7 @@ # # Grbl_Esp32 configurator # Copyright (C) 2020 Michiyasu Odaki -# +# # This is useful for automated testing, to make sure you haven't broken something # # Grbl_Esp32 is free software: you can redistribute it and/or modify @@ -22,8 +22,8 @@ from __future__ import print_function import os, sys, argparse, re -configDirName = r'Grbl_Esp32' -configFileName = r'config.h' +configDirName = r'Grbl_Esp32/src' +configFileName = r'Config.h' validFeatureList = [ 'BLUETOOTH', @@ -88,7 +88,7 @@ def checkFeatureList(optname, features, verbose=False): return -1 else: #if verbose: - # print(optname + " is not specified") + # print(optname + " is not specified") return 0 return len(features)