Skip to content

Commit 2bd6cb5

Browse files
committed
fixes #502
1 parent f537778 commit 2bd6cb5

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

builder/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def generate_manifest(
399399
if not os.path.exists(tmp_file):
400400
raise RuntimeError(f'File not found "{file}"')
401401

402-
if file.startswith('ft'):
402+
if file.lower().startswith('ft'):
403403
focaltech_touch = (
404404
f'{script_dir}/api_drivers/common_api_drivers/'
405405
f'indev/focaltech_touch.py'

builder/esp32.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1023,7 +1023,6 @@ def find_esp32_ports(chip):
10231023

10241024

10251025
SDKCONFIG_PATH = f'build/sdkconfig.board'
1026-
10271026
MPTHREADPORT_H_PATH = 'lib/micropython/ports/esp32/mpthreadport.h'
10281027
MPTHREADPORT_PATH = 'lib/micropython/ports/esp32/mpthreadport.c'
10291028
MPCONFIGPORT_PATH = 'lib/micropython/ports/esp32/mpconfigport.h'

0 commit comments

Comments
 (0)