Skip to content

Commit

Permalink
Simulate: Add TLS support to the firmware per default
Browse files Browse the repository at this point in the history
Add TLS support via Kconfig option as a default. TLS is currently only
used for OTA updates, not yet for LwM2M.

Signed-off-by: Jonas Remmert <[email protected]>
  • Loading branch information
jonas-rem authored and Kappuccino111 committed Aug 4, 2024
1 parent dd1b392 commit c8c7f2c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion simulation/simulate.py
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,9 @@ def build_clients(num_clients, logging):

build_cmd = [
'west', 'build', '-p=auto', '-b', 'native_sim', APP, '--',
f'-DEXTRA_CONF_FILE=overlay-lwm2m-1.1.conf ../{file_path}'
'-DEXTRA_CONF_FILE=overlay-lwm2m-1.1.conf '
'overlay-tls.conf '
f'../{file_path}'
]

# Run the command, capturing both stdout and stderr
Expand Down

0 comments on commit c8c7f2c

Please sign in to comment.