diff options
| author | Zixun LI <[email protected]> | 2025-12-02 12:00:59 +0100 |
|---|---|---|
| committer | Zixun LI <[email protected]> | 2025-12-02 12:00:59 +0100 |
| commit | 7a4af1e9b833d334cca8fa98bc200d4738cb6b82 (patch) | |
| tree | d92ff05ba76c9f752a418089bad64cdc3c42535d /tools | |
| parent | 97c5151b34158f08fbfb51684cbfbc807abd77e5 (diff) | |
| parent | 7ee288bc223db393d68c7bdb09bf7c05ffd2eb03 (diff) | |
Merge remote-tracking branch 'tinyusb/master' into hcd_fsdev
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/get_deps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/get_deps.py b/tools/get_deps.py index e915bf108..a6c44b05a 100755 --- a/tools/get_deps.py +++ b/tools/get_deps.py @@ -246,7 +246,7 @@ deps_optional = { 'imxrt kinetis_k32l2 kinetis_kl lpc51 lpc54 lpc55 mcx mm32 msp432e4 nrf saml2x ' 'lpc11 lpc13 lpc15 lpc17 lpc18 lpc40 lpc43 ' 'stm32c0 stm32f0 stm32f1 stm32f2 stm32f3 stm32f4 stm32f7 stm32g0 stm32g4 stm32h5 ' - 'stm32h7 stm32h7rs stm32l0 stm32l1 stm32l4 stm32l5 stm32u0 stm32u5 stm32wb stm32wba' + 'stm32h7 stm32h7rs stm32l0 stm32l1 stm32l4 stm32l5 stm32u0 stm32u5 stm32wb stm32wba ' 'sam3x samd11 samd21 samd51 samd5x_e5x same5x same7x saml2x samg ' 'tm4c '], 'lib/CMSIS_6': ['https://github.com/ARM-software/CMSIS_6.git', @@ -343,7 +343,7 @@ def main(): for f in families: for d in deps_optional: - if d not in deps and f in deps_optional[d][2]: + if d not in deps and f in deps_optional[d][2].split(): deps.append(d) if print_only: |
