File tree Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Expand file tree Collapse file tree 1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change @@ -761,18 +761,11 @@ def compile(): # NOQA
761
761
dst_file = os .path .join (dst_path , file )
762
762
shutil .copyfile (src_file , dst_file )
763
763
764
- mpconfigport_path = 'lib/micropython/ports/esp32/mpconfigport.h'
764
+ # have yet to test to see if removing this is going to cause an issue.
765
+ # mpconfigport_path = 'lib/micropython/ports/esp32/mpconfigport.h'
765
766
766
- with open (mpconfigport_path , 'rb' ) as f :
767
- data = f .read ().decode ('utf-8' )
768
-
769
- if '#define MICROPY_BLUETOOTH_NIMBLE (0)' not in data :
770
- data = data .replace (
771
- '#define MICROPY_BLUETOOTH_NIMBLE (1)' ,
772
- '#define MICROPY_BLUETOOTH_NIMBLE (0)'
773
- )
774
- with open (mpconfigport_path , 'wb' ) as f :
775
- f .write (data .encode ('utf-8' ))
767
+ # with open(mpconfigport_path, 'rb') as f:
768
+ # data = f.read().decode('utf-8')
776
769
777
770
# if '#define MICROPY_PY_MACHINE_I2S (0)' not in data:
778
771
# data = data.replace(
You can’t perform that action at this time.
0 commit comments