Skip to content

Commit

Permalink
Updated query for MCUs
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanRuzavin committed Aug 1, 2024
1 parent 34eaccb commit df5faeb
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions scripts/recursive_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,7 @@ def get_all_mcus(sdk_version):
FROM SDKToDevice
INNER JOIN Devices ON SDKToDevice.device_uid = Devices.uid
WHERE SDKToDevice.sdk_uid = '{sdk_version}'
AND SDKToDevice.device_uid NOT LIKE '%PIM%'
AND SDKToDevice.device_uid NOT LIKE '%CARD%'
AND SDKToDevice.device_uid NOT LIKE '%SPARKFUN%'
AND SDKToDevice.device_uid NOT LIKE '%SIBRAIN%';
AND SDKToDevice.device_uid NOT LIKE '%\\_%' ESCAPE '\\';
""")
rows = cursor.fetchall()
if rows:
Expand Down

0 comments on commit df5faeb

Please sign in to comment.