| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | # Set some global esptool.py variables
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | #
 | 
					
						
							|  |  |  | # Many of these are read when generating flash_app_args & flash_project_args
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  | idf_build_get_property(python PYTHON)
 | 
					
						
							|  |  |  | set(ESPTOOLPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/esptool.py" --chip esp32)
 | 
					
						
							|  |  |  | set(ESPSECUREPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/espsecure.py")
 | 
					
						
							|  |  |  | set(ESPEFUSEPY ${python} "${CMAKE_CURRENT_LIST_DIR}/esptool/espefuse.py")
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | set(ESPFLASHMODE ${CONFIG_ESPTOOLPY_FLASHMODE})
 | 
					
						
							|  |  |  | set(ESPFLASHFREQ ${CONFIG_ESPTOOLPY_FLASHFREQ})
 | 
					
						
							|  |  |  | set(ESPFLASHSIZE ${CONFIG_ESPTOOLPY_FLASHSIZE})
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | set(ESPTOOLPY_BEFORE "${CONFIG_ESPTOOLPY_BEFORE}")
 | 
					
						
							|  |  |  | set(ESPTOOLPY_AFTER  "${CONFIG_ESPTOOLPY_AFTER}")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-09 14:10:35 +02:00
										 |  |  | if(CONFIG_SECURE_BOOT_ENABLED OR CONFIG_SECURE_FLASH_ENC_ENABLED)
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  |     # If security enabled then override post flash option
 | 
					
						
							|  |  |  |     set(ESPTOOLPY_AFTER "no_reset")
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | set(ESPTOOLPY_SERIAL "${ESPTOOLPY}" | 
					
						
							|  |  |  |     --port "${ESPPORT}"
 | 
					
						
							|  |  |  |     --baud ${ESPBAUD}
 | 
					
						
							|  |  |  |     --before "${ESPTOOLPY_BEFORE}"
 | 
					
						
							|  |  |  |     --after "${ESPTOOLPY_AFTER}"
 | 
					
						
							|  |  |  |     )
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if(CONFIG_ESPTOOLPY_COMPRESSED)
 | 
					
						
							|  |  |  |     set(ESPTOOLPY_COMPRESSED_OPT -z)
 | 
					
						
							|  |  |  | else()
 | 
					
						
							|  |  |  |     set(ESPTOOLPY_COMPRESSED_OPT -u)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 18:40:46 +08:00
										 |  |  | set(ESPTOOLPY_FLASH_OPTIONS | 
					
						
							| 
									
										
										
										
											2018-02-27 15:45:30 +11:00
										 |  |  |     --flash_mode ${ESPFLASHMODE}
 | 
					
						
							|  |  |  |     --flash_freq ${ESPFLASHFREQ}
 | 
					
						
							|  |  |  |     --flash_size ${ESPFLASHSIZE}
 | 
					
						
							|  |  |  |     )
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | # String for printing flash command
 | 
					
						
							|  |  |  | string(REPLACE ";" " " ESPTOOLPY_WRITE_FLASH_STR | 
					
						
							|  |  |  |     "${ESPTOOLPY} --port (PORT) --baud (BAUD) --before ${ESPTOOLPY_BEFORE} --after ${ESPTOOLPY_AFTER} "
 | 
					
						
							| 
									
										
										
										
											2019-05-10 18:40:46 +08:00
										 |  |  |     "write_flash ${ESPTOOLPY_FLASH_OPTIONS} ${ESPTOOLPY_EXTRA_FLASH_OPTIONS} ${ESPTOOLPY_COMPRESSED_OPT}")
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-15 20:02:16 +08:00
										 |  |  | if(NOT BOOTLOADER_BUILD)
 | 
					
						
							|  |  |  |     set(ESPTOOLPY_ELF2IMAGE_OPTIONS --elf-sha256-offset 0xb0)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2019-01-09 20:06:01 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 18:40:46 +08:00
										 |  |  | if(CONFIG_SECURE_BOOT_ENABLED AND | 
					
						
							|  |  |  |     NOT CONFIG_SECURE_BOOT_ALLOW_SHORT_APP_PARTITION
 | 
					
						
							|  |  |  |     AND NOT BOOTLOADER_BUILD)
 | 
					
						
							|  |  |  |     set(ESPTOOLPY_ELF2IMAGE_OPTIONS ${ESPTOOLPY_ELF2IMAGE_OPTIONS} --secure-pad)
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | if(CONFIG_ESPTOOLPY_FLASHSIZE_DETECT)
 | 
					
						
							| 
									
										
										
										
											2018-02-27 15:45:30 +11:00
										 |  |  |     # Set ESPFLASHSIZE to 'detect' *after* elf2image options are generated,
 | 
					
						
							|  |  |  |     # as elf2image can't have 'detect' as an option...
 | 
					
						
							|  |  |  |     set(ESPFLASHSIZE detect)
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  | idf_build_get_property(build_dir BUILD_DIR)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | idf_build_get_property(elf_name EXECUTABLE_NAME GENERATOR_EXPRESSION)
 | 
					
						
							|  |  |  | idf_build_get_property(elf EXECUTABLE GENERATOR_EXPRESSION)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | if(CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES AND NOT BOOTLOADER_BUILD)
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     set(unsigned_project_binary "${elf_name}-unsigned.bin")
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | else()
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     set(unsigned_project_binary "${elf_name}.bin")
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  | set(PROJECT_BIN "${elf_name}.bin")
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | #
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | # Add 'app.bin' target - generates with elf2image
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | #
 | 
					
						
							| 
									
										
										
										
											2019-06-17 12:20:12 +08:00
										 |  |  | add_custom_command(OUTPUT "${build_dir}/.bin_timestamp" | 
					
						
							| 
									
										
										
										
											2019-05-10 18:40:46 +08:00
										 |  |  |     COMMAND ${ESPTOOLPY} elf2image ${ESPTOOLPY_FLASH_OPTIONS} ${ESPTOOLPY_ELF2IMAGE_OPTIONS}
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |         -o "${build_dir}/${unsigned_project_binary}" "${elf}"
 | 
					
						
							| 
									
										
										
										
											2019-06-17 12:20:12 +08:00
										 |  |  |     COMMAND ${CMAKE_COMMAND} -E echo "Generated ${build_dir}/${unsigned_project_binary}"
 | 
					
						
							|  |  |  |     COMMAND ${CMAKE_COMMAND} -E md5sum "${build_dir}/${unsigned_project_binary}" > "${build_dir}/.bin_timestamp"
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     DEPENDS ${elf}
 | 
					
						
							| 
									
										
										
										
											2018-02-27 15:45:30 +11:00
										 |  |  |     VERBATIM
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     WORKING_DIRECTORY ${build_dir}
 | 
					
						
							| 
									
										
										
										
											2019-06-17 12:20:12 +08:00
										 |  |  |     COMMENT "Generating binary image from built executable"
 | 
					
						
							| 
									
										
										
										
											2018-02-27 15:45:30 +11:00
										 |  |  |     )
 | 
					
						
							| 
									
										
										
										
											2019-06-17 12:20:12 +08:00
										 |  |  | add_custom_target(gen_project_binary DEPENDS "${build_dir}/.bin_timestamp")
 | 
					
						
							| 
									
										
										
										
											2018-11-11 15:36:10 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 18:40:46 +08:00
										 |  |  | set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" | 
					
						
							|  |  |  |     APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
 | 
					
						
							|  |  |  |     "${build_dir}/${unsigned_project_binary}"
 | 
					
						
							|  |  |  |     )
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-14 12:53:46 +08:00
										 |  |  | add_custom_target(app ALL DEPENDS gen_project_binary)
 | 
					
						
							| 
									
										
										
										
											2019-06-17 12:20:12 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 15:25:25 +08:00
										 |  |  | if(NOT BOOTLOADER_BUILD AND CONFIG_SECURE_SIGNED_APPS)
 | 
					
						
							|  |  |  |     if(CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES)
 | 
					
						
							|  |  |  |         # for locally signed secure boot image, add a signing step to get from unsigned app to signed app
 | 
					
						
							|  |  |  |         add_custom_command(OUTPUT "${build_dir}/.signed_bin_timestamp" | 
					
						
							|  |  |  |             COMMAND ${ESPSECUREPY} sign_data --keyfile ${secure_boot_signing_key}
 | 
					
						
							|  |  |  |                 -o "${build_dir}/${PROJECT_BIN}" "${build_dir}/${unsigned_project_binary}"
 | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND} -E echo "Generated signed binary image ${build_dir}/${PROJECT_BIN}"
 | 
					
						
							|  |  |  |                                     "from ${build_dir}/${unsigned_project_binary}"
 | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND} -E md5sum "${build_dir}/${PROJECT_BIN}" > "${build_dir}/.signed_bin_timestamp"
 | 
					
						
							|  |  |  |             DEPENDS "${build_dir}/.bin_timestamp"
 | 
					
						
							|  |  |  |             VERBATIM
 | 
					
						
							|  |  |  |             COMMENT "Generating signed binary image"
 | 
					
						
							|  |  |  |             )
 | 
					
						
							|  |  |  |         add_custom_target(gen_signed_project_binary DEPENDS "${build_dir}/.signed_bin_timestamp")
 | 
					
						
							|  |  |  |         add_dependencies(gen_project_binary gen_signed_project_binary)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         set_property(DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" | 
					
						
							|  |  |  |             APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES
 | 
					
						
							|  |  |  |             "${build_dir}/${PROJECT_BIN}"
 | 
					
						
							|  |  |  |             )
 | 
					
						
							|  |  |  |     else()
 | 
					
						
							|  |  |  |         string(REPLACE ";" " " espsecurepy "${ESPSECUREPY}")
 | 
					
						
							|  |  |  |         add_custom_command(TARGET app POST_BUILD | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND} -E echo
 | 
					
						
							|  |  |  |                 "App built but not signed. Sign app before flashing"
 | 
					
						
							|  |  |  |             COMMAND ${CMAKE_COMMAND} -E echo
 | 
					
						
							|  |  |  |                 "\t${espsecurepy} sign_data --keyfile KEYFILE ${build_dir}/${PROJECT_BIN}"
 | 
					
						
							|  |  |  |             VERBATIM)
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2018-10-20 00:32:55 +05:30
										 |  |  | endif()
 | 
					
						
							| 
									
										
										
										
											2018-01-19 15:47:49 +11:00
										 |  |  | 
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # Add 'flash' target - not all build systems can run this directly
 | 
					
						
							|  |  |  | #
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | function(esptool_py_custom_target target_name flasher_filename dependencies)
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     idf_build_get_property(idf_path IDF_PATH)
 | 
					
						
							| 
									
										
										
										
											2018-02-27 15:45:30 +11:00
										 |  |  |     add_custom_target(${target_name} DEPENDS ${dependencies} | 
					
						
							| 
									
										
										
										
											2018-09-13 14:13:20 +10:00
										 |  |  |         COMMAND ${CMAKE_COMMAND}
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |         -D IDF_PATH="${idf_path}"
 | 
					
						
							| 
									
										
										
										
											2018-09-13 14:13:20 +10:00
										 |  |  |         -D ESPTOOLPY="${ESPTOOLPY}"
 | 
					
						
							|  |  |  |         -D ESPTOOL_ARGS="write_flash;@flash_${flasher_filename}_args"
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |         -D ESPTOOL_WORKING_DIR="${build_dir}"
 | 
					
						
							| 
									
										
										
										
											2018-09-13 14:13:20 +10:00
										 |  |  |         -P run_esptool.cmake
 | 
					
						
							|  |  |  |         WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
 | 
					
						
							|  |  |  |         USES_TERMINAL
 | 
					
						
							| 
									
										
										
										
											2018-02-27 15:45:30 +11:00
										 |  |  |         )
 | 
					
						
							| 
									
										
										
										
											2018-01-23 17:08:28 +11:00
										 |  |  | endfunction()
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | esptool_py_custom_target(flash project "app;partition_table;bootloader")
 | 
					
						
							|  |  |  | esptool_py_custom_target(app-flash app "app")
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-21 22:14:56 +08:00
										 |  |  | if(CONFIG_SECURE_FLASH_ENCRYPTION_MODE_DEVELOPMENT)
 | 
					
						
							|  |  |  |     esptool_py_custom_target(encrypted-flash encrypted_project "app;partition_table;bootloader")
 | 
					
						
							|  |  |  |     esptool_py_custom_target(encrypted-app-flash encrypted_app "app")
 | 
					
						
							|  |  |  | endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | # esptool_py_flash_project_args
 | 
					
						
							|  |  |  | #
 | 
					
						
							| 
									
										
										
										
											2019-06-21 19:48:41 +08:00
										 |  |  | # Add file to the flasher args list, to be flashed at a particular offset.
 | 
					
						
							|  |  |  | #
 | 
					
						
							|  |  |  | # When a template FLASH_FILE_TEMPLATE is given, the variables OFFSET and IMAGE
 | 
					
						
							|  |  |  | # hold the value of arguments offset and image, respectively.
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | function(esptool_py_flash_project_args entry offset image)
 | 
					
						
							|  |  |  |     set(options FLASH_IN_PROJECT)  # flash the image when flashing the project
 | 
					
						
							|  |  |  |     set(single_value FLASH_FILE_TEMPLATE) # template file to use to be able to
 | 
					
						
							|  |  |  |                                         # flash the image individually using esptool
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     cmake_parse_arguments(_ "${options}" "${single_value}" "" "${ARGN}")
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if(${entry} IN_LIST flash_project_entries)
 | 
					
						
							|  |  |  |         message(FATAL_ERROR "entry '${entry}' has already been added to flash project entries")
 | 
					
						
							|  |  |  |     endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 12:18:29 +08:00
										 |  |  |     idf_component_set_property(esptool_py FLASH_PROJECT_ENTRIES "${entry}" APPEND)
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 12:18:29 +08:00
										 |  |  |     idf_build_get_property(build_dir BUILD_DIR)
 | 
					
						
							|  |  |  |     file(RELATIVE_PATH image ${build_dir} ${image})
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Generate the standalone flash file to flash the image individually using esptool
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     set(entry_flash_args ${build_dir}/flash_${entry}_args)
 | 
					
						
							|  |  |  |     if(NOT __FLASH_FILE_TEMPLATE)
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  |         file(GENERATE OUTPUT ${entry_flash_args} CONTENT "${offset} ${image}")
 | 
					
						
							|  |  |  |     else()
 | 
					
						
							| 
									
										
										
										
											2019-06-21 19:48:41 +08:00
										 |  |  |         set(OFFSET ${offset})
 | 
					
						
							|  |  |  |         set(IMAGE ${image})
 | 
					
						
							| 
									
										
										
										
											2019-06-26 14:55:20 +10:00
										 |  |  | 
 | 
					
						
							|  |  |  |         get_filename_component(template_in "${__FLASH_FILE_TEMPLATE}" ABSOLUTE)
 | 
					
						
							|  |  |  |         get_filename_component(template_name "${template_in}" NAME)
 | 
					
						
							|  |  |  |         set(template_partial "${CMAKE_CURRENT_BINARY_DIR}/${template_name}.in2")
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         configure_file("${template_in}" "${template_partial}")
 | 
					
						
							|  |  |  |         file(GENERATE OUTPUT ${entry_flash_args} INPUT "${template_partial}")
 | 
					
						
							| 
									
										
										
										
											2019-06-21 19:48:41 +08:00
										 |  |  |         set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | 
					
						
							|  |  |  |                     APPEND PROPERTY
 | 
					
						
							| 
									
										
										
										
											2019-06-26 14:55:20 +10:00
										 |  |  |                     ADDITIONAL_MAKE_CLEAN_FILES "${template_partial}")
 | 
					
						
							| 
									
										
										
										
											2019-06-21 19:48:41 +08:00
										 |  |  |         unset(OFFSET)
 | 
					
						
							|  |  |  |         unset(IMAGE)
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  |     endif()
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} | 
					
						
							|  |  |  |                 APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES ${entry_flash_args})
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Generate standalone entries in the flasher args json file
 | 
					
						
							| 
									
										
										
										
											2019-06-21 12:18:29 +08:00
										 |  |  |     idf_component_set_property(esptool_py FLASH_PROJECT_ARGS_ENTRY_JSON | 
					
						
							|  |  |  |                 "\"${entry}\" : { \"offset\" : \"${offset}\", \"file\" : \"${image}\" }" APPEND)
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # Generate entries in the flasher args json file
 | 
					
						
							| 
									
										
										
										
											2019-05-10 10:53:08 +08:00
										 |  |  |     if(__FLASH_IN_PROJECT)
 | 
					
						
							| 
									
										
										
										
											2019-06-21 12:18:29 +08:00
										 |  |  |         idf_component_set_property(esptool_py FLASH_PROJECT_ARGS | 
					
						
							|  |  |  |                                 "${offset} ${image}" APPEND)
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-06-21 12:18:29 +08:00
										 |  |  |         idf_component_set_property(esptool_py FLASH_PROJECT_ARGS_JSON | 
					
						
							|  |  |  |                                 "\"${offset}\" : \"${image}\"" APPEND)
 | 
					
						
							| 
									
										
										
										
											2019-01-22 11:45:45 +08:00
										 |  |  |     endif()
 | 
					
						
							| 
									
										
										
										
											2019-05-09 14:10:35 +02:00
										 |  |  | endfunction()
 |