meson.build: remove wrap target for Module17

Module17 does not required "wrapped" binaries and this target was added
only for compatibility. In the end, it was more confusing than useful.

Signed-off-by: Silvano Seva <silseva@fastwebnet.it>
This commit is contained in:
Silvano Seva 2025-10-05 12:14:41 +02:00
parent 09e2736c20
commit 7aa0451a08
1 changed files with 1 additions and 8 deletions

View File

@ -985,13 +985,6 @@ foreach t : targets
# Module17 uses dfu-tool for flashing
elif name == 'openrtx_mod17'
# Wrap target for Module17 for consistency, same output as bin target
custom_target(name+'_wrap',
output : name+'_wrap',
input : exe,
command : [objcopy, '-O', 'binary', '@INPUT@', '@OUTPUT@'])
custom_target(name+'_flash',
input : bin,
output : name+'_flash',
@ -1011,7 +1004,7 @@ foreach t : targets
custom_target(name+'_wrap',
output : name+'_wrap',
input : bin,
command : [cs7000_wrap, '@INPUT@', '@OUTPUT@.bin'])
command : [cs7000_wrap, '@INPUT@', '@OUTPUT@'])
custom_target(name+'_flash',
input : bin,