Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Add OTA port for rx65n-rsk to CMake files #2315

Merged
merged 1 commit into from
Jul 28, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions vendors/renesas/rx_mcu_boards/boards/rx65n-rsk/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,21 @@ target_link_libraries(
INTERFACE AFR::secure_sockets_freertos_plus_tcp
)

# OTA
afr_mcu_port(ota)
target_sources(
AFR::ota::mcu_port
INTERFACE "${rx65nrsk_ports_dir}/ota/aws_ota_pal.c"
)
target_link_libraries(
AFR::ota::mcu_port
INTERFACE
AFR::crypto
AFR::pkcs11
AFR::ota_mqtt
AFR::ota_http
)

# -------------------------------------------------------------------------------------------------
# FreeRTOS demos and tests
# -------------------------------------------------------------------------------------------------
Expand Down