├── README.md ├── code ├── CMakeLists.txt ├── Makefile ├── README.md ├── build │ ├── .ninja_deps │ ├── .ninja_log │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.13.4 │ │ │ ├── CMakeASMCompiler.cmake │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeOutput.log │ │ ├── TargetDirectories.txt │ │ ├── bootloader.dir │ │ │ ├── Labels.json │ │ │ └── Labels.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── git-data │ │ │ ├── HEAD │ │ │ ├── grabRef.cmake │ │ │ └── head-ref │ ├── a2dp_sink.bin │ ├── a2dp_sink.map │ ├── bootloader-prefix │ │ └── tmp │ │ │ ├── bootloader-cfgcmd.txt │ │ │ └── bootloader-cfgcmd.txt.in │ ├── bootloader │ │ ├── .bin_timestamp │ │ ├── .ninja_deps │ │ ├── .ninja_log │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.13.4 │ │ │ │ ├── CMakeASMCompiler.cmake │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeOutput.log │ │ │ ├── TargetDirectories.txt │ │ │ ├── bootloader.elf.dir │ │ │ │ └── project_elf_src.c.obj │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ ├── feature_tests.cxx │ │ │ └── git-data │ │ │ │ ├── HEAD │ │ │ │ ├── grabRef.cmake │ │ │ │ └── head-ref │ │ ├── build.ninja │ │ ├── cmake_install.cmake │ │ ├── compile_commands.json │ │ ├── config.env │ │ ├── config │ │ │ ├── kconfig_menus.json │ │ │ ├── sdkconfig.cmake │ │ │ ├── sdkconfig.h │ │ │ └── sdkconfig.json │ │ ├── esp-idf │ │ │ ├── bootloader │ │ │ │ └── cmake_install.cmake │ │ │ ├── bootloader_support │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_bootloader_support.dir │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── bootloader_clock.c.obj │ │ │ │ │ │ ├── bootloader_common.c.obj │ │ │ │ │ │ ├── bootloader_flash.c.obj │ │ │ │ │ │ ├── bootloader_flash_config.c.obj │ │ │ │ │ │ ├── bootloader_init.c.obj │ │ │ │ │ │ ├── bootloader_random.c.obj │ │ │ │ │ │ ├── bootloader_utility.c.obj │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ ├── bootloader_sha.c.obj │ │ │ │ │ │ ├── flash_encrypt.c.obj │ │ │ │ │ │ ├── secure_boot.c.obj │ │ │ │ │ │ └── secure_boot_signatures.c.obj │ │ │ │ │ │ ├── esp_image_format.c.obj │ │ │ │ │ │ ├── flash_encrypt.c.obj │ │ │ │ │ │ ├── flash_partitions.c.obj │ │ │ │ │ │ └── flash_qio_mode.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libbootloader_support.a │ │ │ ├── cmake_install.cmake │ │ │ ├── efuse │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_efuse.dir │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ └── esp_efuse_table.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── esp_efuse_api.c.obj │ │ │ │ │ │ ├── esp_efuse_fields.c.obj │ │ │ │ │ │ └── esp_efuse_utility.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libefuse.a │ │ │ ├── esp32 │ │ │ │ └── cmake_install.cmake │ │ │ ├── esp_common │ │ │ │ └── cmake_install.cmake │ │ │ ├── esp_rom │ │ │ │ └── cmake_install.cmake │ │ │ ├── esptool_py │ │ │ │ └── cmake_install.cmake │ │ │ ├── log │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_log.dir │ │ │ │ │ │ └── log.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── liblog.a │ │ │ ├── main │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_main.dir │ │ │ │ │ │ └── bootloader_start.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libmain.a │ │ │ ├── micro-ecc │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_micro-ecc.dir │ │ │ │ │ │ └── micro-ecc │ │ │ │ │ │ └── uECC.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libmicro-ecc.a │ │ │ ├── partition_table │ │ │ │ └── cmake_install.cmake │ │ │ ├── soc │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_soc.dir │ │ │ │ │ │ ├── esp32 │ │ │ │ │ │ ├── cpu_util.c.obj │ │ │ │ │ │ ├── gpio_periph.c.obj │ │ │ │ │ │ ├── rtc_clk.c.obj │ │ │ │ │ │ ├── rtc_clk_init.c.obj │ │ │ │ │ │ ├── rtc_init.c.obj │ │ │ │ │ │ ├── rtc_periph.c.obj │ │ │ │ │ │ ├── rtc_pm.c.obj │ │ │ │ │ │ ├── rtc_sleep.c.obj │ │ │ │ │ │ ├── rtc_time.c.obj │ │ │ │ │ │ ├── rtc_wdt.c.obj │ │ │ │ │ │ ├── sdio_slave_periph.c.obj │ │ │ │ │ │ ├── sdmmc_periph.c.obj │ │ │ │ │ │ ├── soc_memory_layout.c.obj │ │ │ │ │ │ └── spi_periph.c.obj │ │ │ │ │ │ └── src │ │ │ │ │ │ ├── hal │ │ │ │ │ │ ├── spi_flash_hal.c.obj │ │ │ │ │ │ ├── spi_flash_hal_iram.c.obj │ │ │ │ │ │ ├── spi_hal.c.obj │ │ │ │ │ │ ├── spi_hal_iram.c.obj │ │ │ │ │ │ ├── spi_slave_hal.c.obj │ │ │ │ │ │ └── spi_slave_hal_iram.c.obj │ │ │ │ │ │ ├── lldesc.c.obj │ │ │ │ │ │ ├── memory_layout_utils.c.obj │ │ │ │ │ │ └── soc_include_legacy_warn.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libsoc.a │ │ │ ├── spi_flash │ │ │ │ ├── CMakeFiles │ │ │ │ │ └── __idf_spi_flash.dir │ │ │ │ │ │ └── spi_flash_rom_patch.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libspi_flash.a │ │ │ └── xtensa │ │ │ │ ├── CMakeFiles │ │ │ │ └── __idf_xtensa.dir │ │ │ │ │ ├── debug_helpers.c.obj │ │ │ │ │ ├── debug_helpers_asm.S.obj │ │ │ │ │ ├── eri.c.obj │ │ │ │ │ └── trax.c.obj │ │ │ │ ├── cmake_install.cmake │ │ │ │ └── libxtensa.a │ │ ├── project_description.json │ │ ├── project_elf_src.c │ │ └── rules.ninja │ ├── build.ninja │ ├── cmake_install.cmake │ ├── compile_commands.json │ ├── config.env │ ├── config │ │ ├── kconfig_menus.json │ │ ├── sdkconfig.cmake │ │ ├── sdkconfig.h │ │ └── sdkconfig.json │ ├── esp-idf │ │ ├── app_trace │ │ │ └── cmake_install.cmake │ │ ├── app_update │ │ │ └── cmake_install.cmake │ │ ├── asio │ │ │ └── cmake_install.cmake │ │ ├── bootloader │ │ │ ├── cmake_install.cmake │ │ │ └── flash_bootloader_args.in.in2 │ │ ├── bootloader_support │ │ │ └── cmake_install.cmake │ │ ├── bt │ │ │ └── cmake_install.cmake │ │ ├── cmake_install.cmake │ │ ├── coap │ │ │ └── cmake_install.cmake │ │ ├── console │ │ │ └── cmake_install.cmake │ │ ├── cxx │ │ │ └── cmake_install.cmake │ │ ├── driver │ │ │ └── cmake_install.cmake │ │ ├── efuse │ │ │ └── cmake_install.cmake │ │ ├── esp-tls │ │ │ └── cmake_install.cmake │ │ ├── esp32 │ │ │ └── cmake_install.cmake │ │ ├── esp_adc_cal │ │ │ └── cmake_install.cmake │ │ ├── esp_common │ │ │ └── cmake_install.cmake │ │ ├── esp_eth │ │ │ └── cmake_install.cmake │ │ ├── esp_event │ │ │ └── cmake_install.cmake │ │ ├── esp_gdbstub │ │ │ └── cmake_install.cmake │ │ ├── esp_http_client │ │ │ └── cmake_install.cmake │ │ ├── esp_http_server │ │ │ └── cmake_install.cmake │ │ ├── esp_https_ota │ │ │ └── cmake_install.cmake │ │ ├── esp_https_server │ │ │ └── cmake_install.cmake │ │ ├── esp_local_ctrl │ │ │ └── cmake_install.cmake │ │ ├── esp_ringbuf │ │ │ └── cmake_install.cmake │ │ ├── esp_rom │ │ │ └── cmake_install.cmake │ │ ├── esp_websocket_client │ │ │ └── cmake_install.cmake │ │ ├── esp_wifi │ │ │ └── cmake_install.cmake │ │ ├── espcoredump │ │ │ └── cmake_install.cmake │ │ ├── esptool_py │ │ │ ├── cmake_install.cmake │ │ │ ├── flash_project_args.in │ │ │ ├── flash_project_args.in2 │ │ │ ├── flasher_args.json.in │ │ │ └── flasher_args.json.in2 │ │ ├── expat │ │ │ └── cmake_install.cmake │ │ ├── fatfs │ │ │ └── cmake_install.cmake │ │ ├── freemodbus │ │ │ └── cmake_install.cmake │ │ ├── freertos │ │ │ └── cmake_install.cmake │ │ ├── heap │ │ │ └── cmake_install.cmake │ │ ├── idf_test │ │ │ └── cmake_install.cmake │ │ ├── jsmn │ │ │ └── cmake_install.cmake │ │ ├── json │ │ │ └── cmake_install.cmake │ │ ├── libsodium │ │ │ └── cmake_install.cmake │ │ ├── log │ │ │ └── cmake_install.cmake │ │ ├── lwip │ │ │ └── cmake_install.cmake │ │ ├── main │ │ │ └── cmake_install.cmake │ │ ├── mbedtls │ │ │ ├── cmake_install.cmake │ │ │ └── mbedtls │ │ │ │ ├── cmake_install.cmake │ │ │ │ ├── include │ │ │ │ └── cmake_install.cmake │ │ │ │ └── library │ │ │ │ └── cmake_install.cmake │ │ ├── mdns │ │ │ └── cmake_install.cmake │ │ ├── mqtt │ │ │ └── cmake_install.cmake │ │ ├── newlib │ │ │ └── cmake_install.cmake │ │ ├── nghttp │ │ │ └── cmake_install.cmake │ │ ├── nvs_flash │ │ │ └── cmake_install.cmake │ │ ├── openssl │ │ │ └── cmake_install.cmake │ │ ├── partition_table │ │ │ └── cmake_install.cmake │ │ ├── protobuf-c │ │ │ └── cmake_install.cmake │ │ ├── protocomm │ │ │ └── cmake_install.cmake │ │ ├── pthread │ │ │ └── cmake_install.cmake │ │ ├── sdmmc │ │ │ └── cmake_install.cmake │ │ ├── soc │ │ │ └── cmake_install.cmake │ │ ├── spi_flash │ │ │ └── cmake_install.cmake │ │ ├── spiffs │ │ │ └── cmake_install.cmake │ │ ├── tcp_transport │ │ │ └── cmake_install.cmake │ │ ├── tcpip_adapter │ │ │ └── cmake_install.cmake │ │ ├── ulp │ │ │ └── cmake_install.cmake │ │ ├── unity │ │ │ └── cmake_install.cmake │ │ ├── vfs │ │ │ └── cmake_install.cmake │ │ ├── wear_levelling │ │ │ └── cmake_install.cmake │ │ ├── wifi_provisioning │ │ │ └── cmake_install.cmake │ │ ├── wpa_supplicant │ │ │ └── cmake_install.cmake │ │ └── xtensa │ │ │ └── cmake_install.cmake │ ├── flash_app_args │ ├── flash_bootloader_args │ ├── flash_partition_table_args │ ├── flash_project_args │ ├── flasher_args.json │ ├── ldgen_libraries │ ├── ldgen_libraries.in │ ├── project_description.json │ └── rules.ninja ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── bt_app_av.c │ ├── bt_app_av.h │ ├── bt_app_core.c │ ├── bt_app_core.h │ ├── component.mk │ ├── dsp.h │ └── main.c ├── sdkconfig ├── sdkconfig.defaults └── sdkconfig.old └── esp32 bluetooth dsp speaker.pdf /README.md: -------------------------------------------------------------------------------- 1 | # ESP32 Bluetooth DSP Speaker 2 | 3 | I tried to build up a Bluetooth-Speaker based on the A2DP_Sink_Example from Espressif. 4 | I connected a PCM5102 DAC and a TPA3116 amplifier (both from TI) and integrated everything into a cheap bookshelf-speaker. 5 | I did the frequency X-Over for the woofer and the tweeter digitally inside the ESP32 with the help of IIR filters. 6 | 7 | For more information please watch my YouTube video: https://youtu.be/_nCOluMHfGI 8 | -------------------------------------------------------------------------------- /code/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | # The following lines of boilerplate have to be in your project's 2 | # CMakeLists in this exact order for cmake to work correctly 3 | cmake_minimum_required(VERSION 3.5) 4 | 5 | include($ENV{IDF_PATH}/tools/cmake/project.cmake) 6 | project(a2dp_sink) 7 | -------------------------------------------------------------------------------- /code/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # This is a project Makefile. It is assumed the directory this Makefile resides in is a 3 | # project subdirectory. 4 | # 5 | 6 | PROJECT_NAME := a2dp_sink 7 | 8 | include $(IDF_PATH)/make/project.mk 9 | 10 | -------------------------------------------------------------------------------- /code/README.md: -------------------------------------------------------------------------------- 1 | ESP-IDF A2DP-SINK demo 2 | ====================== 3 | 4 | Demo of A2DP audio sink role 5 | 6 | This is the demo of API implementing Advanced Audio Distribution Profile to receive an audio stream. 7 | 8 | This example involves the use of Bluetooth legacy profile A2DP for audio stream reception, AVRCP for media information notifications, and I2S for audio stream output interface. 9 | 10 | Applications such as bluetooth speakers can take advantage of this example as a reference of basic functionalities. 11 | 12 | ## How to use this example 13 | 14 | ### Hardware Required 15 | 16 | To play the sound, there is a need of loudspeaker and possibly an external I2S codec. Otherwise the example will only show a count of audio data packets received silently. Internal DAC can be selected and in this case external I2S codec may not be needed. 17 | 18 | For the I2S codec, pick whatever chip or board works for you; this code was written using a PCM5102 chip, but other I2S boards and chips will probably work as well. The default I2S connections are shown below, but these can be changed in menuconfig: 19 | 20 | | ESP pin | I2S signal | 21 | | :-------- | :----------- | 22 | | GPIO22 | LRCK | 23 | | GPIO25 | DATA | 24 | | GPIO26 | BCK | 25 | 26 | If the internal DAC is selected, analog audio will be available on GPIO25 and GPIO26. The output resolution on these pins will always be limited to 8 bit because of the internal structure of the DACs. 27 | 28 | ### Configure the project 29 | 30 | ``` 31 | idf.py menuconfig 32 | ``` 33 | 34 | * Set the use of external I2S codec or internal DAC for audio output, and configure the output PINs under A2DP Example Configuration 35 | 36 | * Enable Classic Bluetooth and A2DP under Component config --> Bluetooth --> Bluedroid Enable 37 | 38 | ### Build and Flash 39 | 40 | Build the project and flash it to the board, then run monitor tool to view serial output. 41 | 42 | ``` 43 | idf.py -p PORT flash monitor 44 | ``` 45 | 46 | (To exit the serial monitor, type ``Ctrl-]``.) 47 | 48 | ## Example Output 49 | 50 | After the program is started, the example starts inquiry scan and page scan, awaiting being discovered and connected. Other bluetooth devices such as smart phones can discover a device named "ESP_SPEAKER". A smartphone or another ESP-IDF example of A2DP source can be used to connect to the local device. 51 | 52 | Once A2DP connection is set up, there will be a notification message with the remote device's bluetooth MAC address like the following: 53 | 54 | ``` 55 | I (106427) BT_AV: A2DP connection state: Connected, [64:a2:f9:69:57:a4] 56 | ``` 57 | 58 | If a smartphone is used to connect to local device, starting to play music with an APP will result in the transmission of audio stream. The transmitting of audio stream will be visible in the application log including a count of audio data packets, like this: 59 | 60 | ``` 61 | I (120627) BT_AV: A2DP audio state: Started 62 | I (122697) BT_AV: Audio packet count 100 63 | I (124697) BT_AV: Audio packet count 200 64 | I (126697) BT_AV: Audio packet count 300 65 | I (128697) BT_AV: Audio packet count 400 66 | 67 | ``` 68 | 69 | Also, the sound will be heard if a loudspeaker is connected and possible external I2S codec is correctly configured. For ESP32 A2DP source example, the sound is noise as the audio source generates the samples with a random sequence. 70 | 71 | ## Troubleshooting 72 | * For current stage, the supported audio codec in ESP32 A2DP is SBC. SBC data stream is transmitted to A2DP sink and then decoded into PCM samples as output. The PCM data format is normally of 44.1kHz sampling rate, two-channel 16-bit sample stream. Other decoder configurations in ESP32 A2DP sink is supported but need additional modifications of protocol stack settings. 73 | * As a usage limitation, ESP32 A2DP sink can support at most one connection with remote A2DP source devices. Also, A2DP sink cannot be used together with A2DP source at the same time, but can be used with other profiles such as SPP and HFP. 74 | -------------------------------------------------------------------------------- /code/build/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/.ninja_deps -------------------------------------------------------------------------------- /code/build/CMakeFiles/3.13.4/CMakeASMCompiler.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_ASM_COMPILER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe") 2 | set(CMAKE_ASM_COMPILER_ARG1 "") 3 | set(CMAKE_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe") 4 | set(CMAKE_ASM_COMPILER_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe") 5 | set(CMAKE_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe") 6 | set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") 7 | set(CMAKE_LINKER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe") 8 | set(CMAKE_ASM_COMPILER_LOADED 1) 9 | set(CMAKE_ASM_COMPILER_ID "GNU") 10 | set(CMAKE_ASM_COMPILER_VERSION "") 11 | set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") 12 | 13 | 14 | set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) 15 | set(CMAKE_ASM_LINKER_PREFERENCE 0) 16 | 17 | 18 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/3.13.4/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_C_COMPILER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe") 2 | set(CMAKE_C_COMPILER_ARG1 "") 3 | set(CMAKE_C_COMPILER_ID "GNU") 4 | set(CMAKE_C_COMPILER_VERSION "8.2.0") 5 | set(CMAKE_C_COMPILER_VERSION_INTERNAL "") 6 | set(CMAKE_C_COMPILER_WRAPPER "") 7 | set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") 8 | set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") 9 | set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") 10 | set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") 11 | set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") 12 | 13 | set(CMAKE_C_PLATFORM_ID "") 14 | set(CMAKE_C_SIMULATE_ID "") 15 | set(CMAKE_C_SIMULATE_VERSION "") 16 | 17 | 18 | 19 | set(CMAKE_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe") 20 | set(CMAKE_C_COMPILER_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe") 21 | set(CMAKE_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe") 22 | set(CMAKE_C_COMPILER_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") 23 | set(CMAKE_LINKER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe") 24 | set(CMAKE_COMPILER_IS_GNUCC 1) 25 | set(CMAKE_C_COMPILER_LOADED 1) 26 | set(CMAKE_C_COMPILER_WORKS TRUE) 27 | set(CMAKE_C_ABI_COMPILED TRUE) 28 | set(CMAKE_COMPILER_IS_MINGW ) 29 | set(CMAKE_COMPILER_IS_CYGWIN ) 30 | if(CMAKE_COMPILER_IS_CYGWIN) 31 | set(CYGWIN 1) 32 | set(UNIX 1) 33 | endif() 34 | 35 | set(CMAKE_C_COMPILER_ENV_VAR "CC") 36 | 37 | if(CMAKE_COMPILER_IS_MINGW) 38 | set(MINGW 1) 39 | endif() 40 | set(CMAKE_C_COMPILER_ID_RUN 1) 41 | set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) 42 | set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) 43 | set(CMAKE_C_LINKER_PREFERENCE 10) 44 | 45 | # Save compiler ABI information. 46 | set(CMAKE_C_SIZEOF_DATA_PTR "4") 47 | set(CMAKE_C_COMPILER_ABI "ELF") 48 | set(CMAKE_C_LIBRARY_ARCHITECTURE "") 49 | 50 | if(CMAKE_C_SIZEOF_DATA_PTR) 51 | set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") 52 | endif() 53 | 54 | if(CMAKE_C_COMPILER_ABI) 55 | set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") 56 | endif() 57 | 58 | if(CMAKE_C_LIBRARY_ARCHITECTURE) 59 | set(CMAKE_LIBRARY_ARCHITECTURE "") 60 | endif() 61 | 62 | set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") 63 | if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) 64 | set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") 65 | endif() 66 | 67 | 68 | 69 | 70 | 71 | set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") 72 | set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib") 73 | set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") 74 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_CXX_COMPILER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++.exe") 2 | set(CMAKE_CXX_COMPILER_ARG1 "") 3 | set(CMAKE_CXX_COMPILER_ID "GNU") 4 | set(CMAKE_CXX_COMPILER_VERSION "8.2.0") 5 | set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") 6 | set(CMAKE_CXX_COMPILER_WRAPPER "") 7 | set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") 8 | set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20") 9 | set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") 10 | set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") 11 | set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") 12 | set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") 13 | set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") 14 | 15 | set(CMAKE_CXX_PLATFORM_ID "") 16 | set(CMAKE_CXX_SIMULATE_ID "") 17 | set(CMAKE_CXX_SIMULATE_VERSION "") 18 | 19 | 20 | 21 | set(CMAKE_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe") 22 | set(CMAKE_CXX_COMPILER_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe") 23 | set(CMAKE_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe") 24 | set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") 25 | set(CMAKE_LINKER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe") 26 | set(CMAKE_COMPILER_IS_GNUCXX 1) 27 | set(CMAKE_CXX_COMPILER_LOADED 1) 28 | set(CMAKE_CXX_COMPILER_WORKS TRUE) 29 | set(CMAKE_CXX_ABI_COMPILED TRUE) 30 | set(CMAKE_COMPILER_IS_MINGW ) 31 | set(CMAKE_COMPILER_IS_CYGWIN ) 32 | if(CMAKE_COMPILER_IS_CYGWIN) 33 | set(CYGWIN 1) 34 | set(UNIX 1) 35 | endif() 36 | 37 | set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") 38 | 39 | if(CMAKE_COMPILER_IS_MINGW) 40 | set(MINGW 1) 41 | endif() 42 | set(CMAKE_CXX_COMPILER_ID_RUN 1) 43 | set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) 44 | set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) 45 | set(CMAKE_CXX_LINKER_PREFERENCE 30) 46 | set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) 47 | 48 | # Save compiler ABI information. 49 | set(CMAKE_CXX_SIZEOF_DATA_PTR "4") 50 | set(CMAKE_CXX_COMPILER_ABI "ELF") 51 | set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") 52 | 53 | if(CMAKE_CXX_SIZEOF_DATA_PTR) 54 | set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") 55 | endif() 56 | 57 | if(CMAKE_CXX_COMPILER_ABI) 58 | set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") 59 | endif() 60 | 61 | if(CMAKE_CXX_LIBRARY_ARCHITECTURE) 62 | set(CMAKE_LIBRARY_ARCHITECTURE "") 63 | endif() 64 | 65 | set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") 66 | if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) 67 | set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") 68 | endif() 69 | 70 | 71 | 72 | 73 | 74 | set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") 75 | set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib") 76 | set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") 77 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /code/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /code/build/CMakeFiles/3.13.4/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.18362") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.18362") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/esp-idf/tools/cmake/toolchain-esp32.cmake") 7 | 8 | set(CMAKE_SYSTEM "Generic") 9 | set(CMAKE_SYSTEM_NAME "Generic") 10 | set(CMAKE_SYSTEM_VERSION "") 11 | set(CMAKE_SYSTEM_PROCESSOR "") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/3.13.4/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/CMakeFiles/3.13.4/CompilerIdC/a.out -------------------------------------------------------------------------------- /code/build/CMakeFiles/3.13.4/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/CMakeFiles/3.13.4/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /code/build/CMakeFiles/bootloader.dir/Labels.json: -------------------------------------------------------------------------------- 1 | { 2 | "sources" : 3 | [ 4 | { 5 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/bootloader" 6 | }, 7 | { 8 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/bootloader.rule" 9 | }, 10 | { 11 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/bootloader-complete.rule" 12 | }, 13 | { 14 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule" 15 | }, 16 | { 17 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule" 18 | }, 19 | { 20 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule" 21 | }, 22 | { 23 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule" 24 | }, 25 | { 26 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule" 27 | }, 28 | { 29 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule" 30 | }, 31 | { 32 | "file" : "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule" 33 | } 34 | ], 35 | "target" : 36 | { 37 | "labels" : 38 | [ 39 | "bootloader" 40 | ], 41 | "name" : "bootloader" 42 | } 43 | } -------------------------------------------------------------------------------- /code/build/CMakeFiles/bootloader.dir/Labels.txt: -------------------------------------------------------------------------------- 1 | # Target labels 2 | bootloader 3 | # Source files and their labels 4 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/bootloader 5 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/bootloader.rule 6 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/bootloader-complete.rule 7 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule 8 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule 9 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule 10 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule 11 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule 12 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule 13 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule 14 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /code/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- 1 | 2 | const char features[] = {"\n" 3 | "C_FEATURE:" 4 | #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 5 | "1" 6 | #else 7 | "0" 8 | #endif 9 | "c_function_prototypes\n" 10 | "C_FEATURE:" 11 | #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L 12 | "1" 13 | #else 14 | "0" 15 | #endif 16 | "c_restrict\n" 17 | "C_FEATURE:" 18 | #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L 19 | "1" 20 | #else 21 | "0" 22 | #endif 23 | "c_static_assert\n" 24 | "C_FEATURE:" 25 | #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L 26 | "1" 27 | #else 28 | "0" 29 | #endif 30 | "c_variadic_macros\n" 31 | 32 | }; 33 | 34 | int main(int argc, char** argv) { (void)argv; return features[argc]; } 35 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/git-data/HEAD: -------------------------------------------------------------------------------- 1 | 463a9d8b7f9af8205222b80707f9bdbba7c530e1 2 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/git-data/grabRef.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Internal file for GetGitRevisionDescription.cmake 3 | # 4 | # Requires CMake 2.6 or newer (uses the 'function' command) 5 | # 6 | # Original Author: 7 | # 2009-2010 Ryan Pavlik 8 | # http://academic.cleardefinition.com 9 | # Iowa State University HCI Graduate Program/VRAC 10 | # 11 | # Copyright Iowa State University 2009-2010. 12 | # Distributed under the Boost Software License, Version 1.0. 13 | # (See accompanying file LICENSE_1_0.txt or copy at 14 | # http://www.boost.org/LICENSE_1_0.txt) 15 | 16 | set(HEAD_HASH) 17 | 18 | file(READ "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) 19 | 20 | string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) 21 | if(HEAD_CONTENTS MATCHES "ref") 22 | # named branch 23 | string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") 24 | if(EXISTS "C:/esp-idf/.git/${HEAD_REF}") 25 | configure_file("C:/esp-idf/.git/${HEAD_REF}" "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/git-data/head-ref" COPYONLY) 26 | else() 27 | if(EXISTS "C:/esp-idf/.git/packed-refs") 28 | configure_file("C:/esp-idf/.git/packed-refs" "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/git-data/packed-refs" COPYONLY) 29 | file(READ "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/git-data/packed-refs" PACKED_REFS) 30 | if(${PACKED_REFS} MATCHES "([0-9a-z]*) ${HEAD_REF}") 31 | set(HEAD_HASH "${CMAKE_MATCH_1}") 32 | endif() 33 | endif() 34 | endif() 35 | else() 36 | # detached HEAD 37 | configure_file("C:/esp-idf/.git/HEAD" "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/git-data/head-ref" COPYONLY) 38 | endif() 39 | 40 | if(NOT HEAD_HASH) 41 | file(READ "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) 42 | string(STRIP "${HEAD_HASH}" HEAD_HASH) 43 | endif() 44 | -------------------------------------------------------------------------------- /code/build/CMakeFiles/git-data/head-ref: -------------------------------------------------------------------------------- 1 | 463a9d8b7f9af8205222b80707f9bdbba7c530e1 2 | -------------------------------------------------------------------------------- /code/build/a2dp_sink.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/a2dp_sink.bin -------------------------------------------------------------------------------- /code/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt: -------------------------------------------------------------------------------- 1 | cmd='C:/Users/Markus/.espressif/tools/cmake/3.13.4/bin/cmake.exe;-DSDKCONFIG=C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/sdkconfig;-DIDF_PATH=C:/esp-idf;-DIDF_TARGET=esp32;-DPYTHON_DEPS_CHECKED=1;-DEXTRA_COMPONENT_DIRS=C:/esp-idf/components/bootloader;-DLEGACY_INCLUDE_COMMON_HEADERS=;-GNinja;' 2 | -------------------------------------------------------------------------------- /code/build/bootloader-prefix/tmp/bootloader-cfgcmd.txt.in: -------------------------------------------------------------------------------- 1 | cmd='@cmd@' 2 | -------------------------------------------------------------------------------- /code/build/bootloader/.bin_timestamp: -------------------------------------------------------------------------------- 1 | b2af5d41174d4d44c9027cab28577809 C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/bootloader.bin 2 | -------------------------------------------------------------------------------- /code/build/bootloader/.ninja_deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/.ninja_deps -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/3.13.4/CMakeASMCompiler.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_ASM_COMPILER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe") 2 | set(CMAKE_ASM_COMPILER_ARG1 "") 3 | set(CMAKE_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe") 4 | set(CMAKE_ASM_COMPILER_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe") 5 | set(CMAKE_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe") 6 | set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") 7 | set(CMAKE_LINKER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe") 8 | set(CMAKE_ASM_COMPILER_LOADED 1) 9 | set(CMAKE_ASM_COMPILER_ID "GNU") 10 | set(CMAKE_ASM_COMPILER_VERSION "") 11 | set(CMAKE_ASM_COMPILER_ENV_VAR "ASM") 12 | 13 | 14 | set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) 15 | set(CMAKE_ASM_LINKER_PREFERENCE 0) 16 | 17 | 18 | -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/3.13.4/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_C_COMPILER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe") 2 | set(CMAKE_C_COMPILER_ARG1 "") 3 | set(CMAKE_C_COMPILER_ID "GNU") 4 | set(CMAKE_C_COMPILER_VERSION "8.2.0") 5 | set(CMAKE_C_COMPILER_VERSION_INTERNAL "") 6 | set(CMAKE_C_COMPILER_WRAPPER "") 7 | set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") 8 | set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") 9 | set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") 10 | set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") 11 | set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") 12 | 13 | set(CMAKE_C_PLATFORM_ID "") 14 | set(CMAKE_C_SIMULATE_ID "") 15 | set(CMAKE_C_SIMULATE_VERSION "") 16 | 17 | 18 | 19 | set(CMAKE_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe") 20 | set(CMAKE_C_COMPILER_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe") 21 | set(CMAKE_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe") 22 | set(CMAKE_C_COMPILER_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") 23 | set(CMAKE_LINKER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe") 24 | set(CMAKE_COMPILER_IS_GNUCC 1) 25 | set(CMAKE_C_COMPILER_LOADED 1) 26 | set(CMAKE_C_COMPILER_WORKS TRUE) 27 | set(CMAKE_C_ABI_COMPILED TRUE) 28 | set(CMAKE_COMPILER_IS_MINGW ) 29 | set(CMAKE_COMPILER_IS_CYGWIN ) 30 | if(CMAKE_COMPILER_IS_CYGWIN) 31 | set(CYGWIN 1) 32 | set(UNIX 1) 33 | endif() 34 | 35 | set(CMAKE_C_COMPILER_ENV_VAR "CC") 36 | 37 | if(CMAKE_COMPILER_IS_MINGW) 38 | set(MINGW 1) 39 | endif() 40 | set(CMAKE_C_COMPILER_ID_RUN 1) 41 | set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) 42 | set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) 43 | set(CMAKE_C_LINKER_PREFERENCE 10) 44 | 45 | # Save compiler ABI information. 46 | set(CMAKE_C_SIZEOF_DATA_PTR "4") 47 | set(CMAKE_C_COMPILER_ABI "ELF") 48 | set(CMAKE_C_LIBRARY_ARCHITECTURE "") 49 | 50 | if(CMAKE_C_SIZEOF_DATA_PTR) 51 | set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") 52 | endif() 53 | 54 | if(CMAKE_C_COMPILER_ABI) 55 | set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") 56 | endif() 57 | 58 | if(CMAKE_C_LIBRARY_ARCHITECTURE) 59 | set(CMAKE_LIBRARY_ARCHITECTURE "") 60 | endif() 61 | 62 | set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") 63 | if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) 64 | set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") 65 | endif() 66 | 67 | 68 | 69 | 70 | 71 | set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "") 72 | set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib") 73 | set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") 74 | -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/3.13.4/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_CXX_COMPILER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++.exe") 2 | set(CMAKE_CXX_COMPILER_ARG1 "") 3 | set(CMAKE_CXX_COMPILER_ID "GNU") 4 | set(CMAKE_CXX_COMPILER_VERSION "8.2.0") 5 | set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") 6 | set(CMAKE_CXX_COMPILER_WRAPPER "") 7 | set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") 8 | set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20") 9 | set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") 10 | set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") 11 | set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") 12 | set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") 13 | set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20") 14 | 15 | set(CMAKE_CXX_PLATFORM_ID "") 16 | set(CMAKE_CXX_SIMULATE_ID "") 17 | set(CMAKE_CXX_SIMULATE_VERSION "") 18 | 19 | 20 | 21 | set(CMAKE_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe") 22 | set(CMAKE_CXX_COMPILER_AR "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe") 23 | set(CMAKE_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe") 24 | set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe") 25 | set(CMAKE_LINKER "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe") 26 | set(CMAKE_COMPILER_IS_GNUCXX 1) 27 | set(CMAKE_CXX_COMPILER_LOADED 1) 28 | set(CMAKE_CXX_COMPILER_WORKS TRUE) 29 | set(CMAKE_CXX_ABI_COMPILED TRUE) 30 | set(CMAKE_COMPILER_IS_MINGW ) 31 | set(CMAKE_COMPILER_IS_CYGWIN ) 32 | if(CMAKE_COMPILER_IS_CYGWIN) 33 | set(CYGWIN 1) 34 | set(UNIX 1) 35 | endif() 36 | 37 | set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") 38 | 39 | if(CMAKE_COMPILER_IS_MINGW) 40 | set(MINGW 1) 41 | endif() 42 | set(CMAKE_CXX_COMPILER_ID_RUN 1) 43 | set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) 44 | set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;mm;CPP) 45 | set(CMAKE_CXX_LINKER_PREFERENCE 30) 46 | set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) 47 | 48 | # Save compiler ABI information. 49 | set(CMAKE_CXX_SIZEOF_DATA_PTR "4") 50 | set(CMAKE_CXX_COMPILER_ABI "ELF") 51 | set(CMAKE_CXX_LIBRARY_ARCHITECTURE "") 52 | 53 | if(CMAKE_CXX_SIZEOF_DATA_PTR) 54 | set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") 55 | endif() 56 | 57 | if(CMAKE_CXX_COMPILER_ABI) 58 | set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") 59 | endif() 60 | 61 | if(CMAKE_CXX_LIBRARY_ARCHITECTURE) 62 | set(CMAKE_LIBRARY_ARCHITECTURE "") 63 | endif() 64 | 65 | set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") 66 | if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) 67 | set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") 68 | endif() 69 | 70 | 71 | 72 | 73 | 74 | set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "") 75 | set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/8.2.0;C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/lib/gcc;C:/Users/Markus/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/xtensa-esp32-elf/lib") 76 | set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") 77 | -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_C.bin -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/CMakeFiles/3.13.4/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/3.13.4/CMakeSystem.cmake: -------------------------------------------------------------------------------- 1 | set(CMAKE_HOST_SYSTEM "Windows-10.0.18362") 2 | set(CMAKE_HOST_SYSTEM_NAME "Windows") 3 | set(CMAKE_HOST_SYSTEM_VERSION "10.0.18362") 4 | set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64") 5 | 6 | include("C:/esp-idf/tools/cmake/toolchain-esp32.cmake") 7 | 8 | set(CMAKE_SYSTEM "Generic") 9 | set(CMAKE_SYSTEM_NAME "Generic") 10 | set(CMAKE_SYSTEM_VERSION "") 11 | set(CMAKE_SYSTEM_PROCESSOR "") 12 | 13 | set(CMAKE_CROSSCOMPILING "TRUE") 14 | 15 | set(CMAKE_SYSTEM_LOADED 1) 16 | -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/3.13.4/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/CMakeFiles/3.13.4/CompilerIdC/a.out -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/3.13.4/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/CMakeFiles/3.13.4/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/CMakeFiles/bootloader.elf.dir/project_elf_src.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- 1 | # This file is generated by cmake for dependency checking of the CMakeCache.txt file 2 | -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- 1 | 2 | const char features[] = {"\n" 3 | "C_FEATURE:" 4 | #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 5 | "1" 6 | #else 7 | "0" 8 | #endif 9 | "c_function_prototypes\n" 10 | "C_FEATURE:" 11 | #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L 12 | "1" 13 | #else 14 | "0" 15 | #endif 16 | "c_restrict\n" 17 | "C_FEATURE:" 18 | #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 406 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201000L 19 | "1" 20 | #else 21 | "0" 22 | #endif 23 | "c_static_assert\n" 24 | "C_FEATURE:" 25 | #if (__GNUC__ * 100 + __GNUC_MINOR__) >= 304 && defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L 26 | "1" 27 | #else 28 | "0" 29 | #endif 30 | "c_variadic_macros\n" 31 | 32 | }; 33 | 34 | int main(int argc, char** argv) { (void)argv; return features[argc]; } 35 | -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/git-data/HEAD: -------------------------------------------------------------------------------- 1 | 463a9d8b7f9af8205222b80707f9bdbba7c530e1 2 | -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/git-data/grabRef.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Internal file for GetGitRevisionDescription.cmake 3 | # 4 | # Requires CMake 2.6 or newer (uses the 'function' command) 5 | # 6 | # Original Author: 7 | # 2009-2010 Ryan Pavlik 8 | # http://academic.cleardefinition.com 9 | # Iowa State University HCI Graduate Program/VRAC 10 | # 11 | # Copyright Iowa State University 2009-2010. 12 | # Distributed under the Boost Software License, Version 1.0. 13 | # (See accompanying file LICENSE_1_0.txt or copy at 14 | # http://www.boost.org/LICENSE_1_0.txt) 15 | 16 | set(HEAD_HASH) 17 | 18 | file(READ "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024) 19 | 20 | string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS) 21 | if(HEAD_CONTENTS MATCHES "ref") 22 | # named branch 23 | string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}") 24 | if(EXISTS "C:/esp-idf/.git/${HEAD_REF}") 25 | configure_file("C:/esp-idf/.git/${HEAD_REF}" "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) 26 | else() 27 | if(EXISTS "C:/esp-idf/.git/packed-refs") 28 | configure_file("C:/esp-idf/.git/packed-refs" "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/CMakeFiles/git-data/packed-refs" COPYONLY) 29 | file(READ "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/CMakeFiles/git-data/packed-refs" PACKED_REFS) 30 | if(${PACKED_REFS} MATCHES "([0-9a-z]*) ${HEAD_REF}") 31 | set(HEAD_HASH "${CMAKE_MATCH_1}") 32 | endif() 33 | endif() 34 | endif() 35 | else() 36 | # detached HEAD 37 | configure_file("C:/esp-idf/.git/HEAD" "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY) 38 | endif() 39 | 40 | if(NOT HEAD_HASH) 41 | file(READ "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024) 42 | string(STRIP "${HEAD_HASH}" HEAD_HASH) 43 | endif() 44 | -------------------------------------------------------------------------------- /code/build/bootloader/CMakeFiles/git-data/head-ref: -------------------------------------------------------------------------------- 1 | 463a9d8b7f9af8205222b80707f9bdbba7c530e1 2 | -------------------------------------------------------------------------------- /code/build/bootloader/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/bootloader/subproject 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | if(NOT CMAKE_INSTALL_LOCAL_ONLY) 36 | # Include the install script for each subdirectory. 37 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/cmake_install.cmake") 38 | 39 | endif() 40 | 41 | if(CMAKE_INSTALL_COMPONENT) 42 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 43 | else() 44 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 45 | endif() 46 | 47 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 48 | "${CMAKE_INSTALL_MANIFEST_FILES}") 49 | file(WRITE "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/${CMAKE_INSTALL_MANIFEST}" 50 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 51 | -------------------------------------------------------------------------------- /code/build/bootloader/config.env: -------------------------------------------------------------------------------- 1 | { 2 | "COMPONENT_KCONFIGS": "C:/esp-idf/components/efuse/Kconfig C:/esp-idf/components/esp32/Kconfig C:/esp-idf/components/esp_common/Kconfig C:/esp-idf/components/log/Kconfig C:/esp-idf/components/spi_flash/Kconfig", 3 | "COMPONENT_KCONFIGS_PROJBUILD": "C:/esp-idf/components/bootloader/Kconfig.projbuild C:/esp-idf/components/esptool_py/Kconfig.projbuild C:/esp-idf/components/partition_table/Kconfig.projbuild", 4 | "COMPONENT_SDKCONFIG_RENAMES": "C:/esp-idf/components/bootloader/sdkconfig.rename C:/esp-idf/components/esp32/sdkconfig.rename C:/esp-idf/components/esp_common/sdkconfig.rename C:/esp-idf/components/esptool_py/sdkconfig.rename C:/esp-idf/components/spi_flash/sdkconfig.rename", 5 | "IDF_CMAKE": "y", 6 | "IDF_TARGET": "esp32", 7 | "IDF_PATH": "C:/esp-idf" 8 | } 9 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/bootloader 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_flash_config.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/flash_encrypt.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/secure_boot_signatures.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_qio_mode.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/bootloader_support 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/bootloader_support/libbootloader_support.a -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | if(NOT CMAKE_INSTALL_LOCAL_ONLY) 36 | # Include the install script for each subdirectory. 37 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/esp32/cmake_install.cmake") 38 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/soc/cmake_install.cmake") 39 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/xtensa/cmake_install.cmake") 40 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/esp_common/cmake_install.cmake") 41 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/esp_rom/cmake_install.cmake") 42 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/log/cmake_install.cmake") 43 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/partition_table/cmake_install.cmake") 44 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/bootloader/cmake_install.cmake") 45 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake") 46 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/spi_flash/cmake_install.cmake") 47 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/efuse/cmake_install.cmake") 48 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/bootloader_support/cmake_install.cmake") 49 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/esptool_py/cmake_install.cmake") 50 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader/esp-idf/main/cmake_install.cmake") 51 | 52 | endif() 53 | 54 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/efuse/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/efuse 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/efuse/libefuse.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/efuse/libefuse.a -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/esp32/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp32 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/esp_common/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_common 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/esp_rom/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_rom 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/esptool_py/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esptool_py 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/log/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/log 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/log/liblog.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/log/liblog.a -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/main/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/bootloader/subproject/main 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/main/libmain.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/main/libmain.a -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/micro-ecc/uECC.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/micro-ecc/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/bootloader/subproject/components/micro-ecc 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/micro-ecc/libmicro-ecc.a -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/partition_table/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/partition_table 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/cpu_util.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/cpu_util.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_clk.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_clk.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_clk_init.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_clk_init.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_init.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_init.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_periph.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_periph.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_pm.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_pm.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_sleep.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_sleep.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_time.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_time.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_wdt.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_wdt.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/soc_memory_layout.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/soc_memory_layout.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_flash_hal_iram.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_hal_iram.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/hal/spi_slave_hal_iram.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/lldesc.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/memory_layout_utils.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir/src/soc_include_legacy_warn.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/soc 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/soc/libsoc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/soc/libsoc.a -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_rom_patch.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_rom_patch.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/spi_flash/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/spi_flash 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/spi_flash/libspi_flash.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/spi_flash/libspi_flash.a -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/debug_helpers_asm.S.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/trax.c.obj -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/xtensa/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/xtensa 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/bootloader/esp-idf/xtensa/libxtensa.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/esp-idf/xtensa/libxtensa.a -------------------------------------------------------------------------------- /code/build/bootloader/project_description.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_name": "bootloader", 3 | "project_path": "C:/esp-idf/components/bootloader/subproject", 4 | "build_dir": "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/bootloader", 5 | "config_file": "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/sdkconfig", 6 | "config_defaults": "", 7 | "app_elf": "bootloader.elf", 8 | "app_bin": "bootloader.bin", 9 | "git_revision": "v4.0-dirty", 10 | "phy_data_partition": "", 11 | "monitor_baud" : "115200", 12 | "config_environment" : { 13 | "COMPONENT_KCONFIGS" : "C:/esp-idf/components/efuse/Kconfig;C:/esp-idf/components/esp32/Kconfig;C:/esp-idf/components/esp_common/Kconfig;C:/esp-idf/components/log/Kconfig;C:/esp-idf/components/spi_flash/Kconfig", 14 | "COMPONENT_KCONFIGS_PROJBUILD" : "C:/esp-idf/components/bootloader/Kconfig.projbuild;C:/esp-idf/components/esptool_py/Kconfig.projbuild;C:/esp-idf/components/partition_table/Kconfig.projbuild" 15 | }, 16 | "build_components" : [ "bootloader", "bootloader_support", "efuse", "esp32", "esp_common", "esp_rom", "esptool_py", "log", "main", "micro-ecc", "partition_table", "soc", "spi_flash", "xtensa", "" ], 17 | "build_component_paths" : [ "C:/esp-idf/components/bootloader", "C:/esp-idf/components/bootloader_support", "C:/esp-idf/components/efuse", "C:/esp-idf/components/esp32", "C:/esp-idf/components/esp_common", "C:/esp-idf/components/esp_rom", "C:/esp-idf/components/esptool_py", "C:/esp-idf/components/log", "C:/esp-idf/components/bootloader/subproject/main", "C:/esp-idf/components/bootloader/subproject/components/micro-ecc", "C:/esp-idf/components/partition_table", "C:/esp-idf/components/soc", "C:/esp-idf/components/spi_flash", "C:/esp-idf/components/xtensa", "" ] 18 | } 19 | -------------------------------------------------------------------------------- /code/build/bootloader/project_elf_src.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YetAnotherElectronicsChannel/ESP32_Bluetooth_DSP_Speaker/9f2b15c37dc09f4690aaf5379414268615dc2122/code/build/bootloader/project_elf_src.c -------------------------------------------------------------------------------- /code/build/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | if(NOT CMAKE_INSTALL_LOCAL_ONLY) 36 | # Include the install script for each subdirectory. 37 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/cmake_install.cmake") 38 | 39 | endif() 40 | 41 | if(CMAKE_INSTALL_COMPONENT) 42 | set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") 43 | else() 44 | set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") 45 | endif() 46 | 47 | string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT 48 | "${CMAKE_INSTALL_MANIFEST_FILES}") 49 | file(WRITE "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/${CMAKE_INSTALL_MANIFEST}" 50 | "${CMAKE_INSTALL_MANIFEST_CONTENT}") 51 | -------------------------------------------------------------------------------- /code/build/config.env: -------------------------------------------------------------------------------- 1 | { 2 | "COMPONENT_KCONFIGS": "C:/esp-idf/components/app_trace/Kconfig C:/esp-idf/components/bt/Kconfig C:/esp-idf/components/driver/Kconfig C:/esp-idf/components/efuse/Kconfig C:/esp-idf/components/esp-tls/Kconfig C:/esp-idf/components/esp32/Kconfig C:/esp-idf/components/esp_adc_cal/Kconfig C:/esp-idf/components/esp_common/Kconfig C:/esp-idf/components/esp_eth/Kconfig C:/esp-idf/components/esp_event/Kconfig C:/esp-idf/components/esp_gdbstub/Kconfig C:/esp-idf/components/esp_http_client/Kconfig C:/esp-idf/components/esp_http_server/Kconfig C:/esp-idf/components/esp_https_ota/Kconfig C:/esp-idf/components/esp_https_server/Kconfig C:/esp-idf/components/esp_wifi/Kconfig C:/esp-idf/components/espcoredump/Kconfig C:/esp-idf/components/fatfs/Kconfig C:/esp-idf/components/freemodbus/Kconfig C:/esp-idf/components/freertos/Kconfig C:/esp-idf/components/heap/Kconfig C:/esp-idf/components/libsodium/Kconfig C:/esp-idf/components/log/Kconfig C:/esp-idf/components/lwip/Kconfig C:/esp-idf/components/mbedtls/Kconfig C:/esp-idf/components/mdns/Kconfig C:/esp-idf/components/mqtt/Kconfig C:/esp-idf/components/newlib/Kconfig C:/esp-idf/components/nvs_flash/Kconfig C:/esp-idf/components/openssl/Kconfig C:/esp-idf/components/pthread/Kconfig C:/esp-idf/components/spi_flash/Kconfig C:/esp-idf/components/spiffs/Kconfig C:/esp-idf/components/tcpip_adapter/Kconfig C:/esp-idf/components/unity/Kconfig C:/esp-idf/components/vfs/Kconfig C:/esp-idf/components/wear_levelling/Kconfig C:/esp-idf/components/wifi_provisioning/Kconfig C:/esp-idf/components/wpa_supplicant/Kconfig", 3 | "COMPONENT_KCONFIGS_PROJBUILD": "C:/esp-idf/components/app_update/Kconfig.projbuild C:/esp-idf/components/bootloader/Kconfig.projbuild C:/esp-idf/components/esptool_py/Kconfig.projbuild C:/esp-idf/components/partition_table/Kconfig.projbuild C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/main/Kconfig.projbuild", 4 | "COMPONENT_SDKCONFIG_RENAMES": "C:/esp-idf/components/app_trace/sdkconfig.rename C:/esp-idf/components/bootloader/sdkconfig.rename C:/esp-idf/components/bt/sdkconfig.rename C:/esp-idf/components/driver/sdkconfig.rename C:/esp-idf/components/esp32/sdkconfig.rename C:/esp-idf/components/esp_common/sdkconfig.rename C:/esp-idf/components/esp_event/sdkconfig.rename C:/esp-idf/components/esp_wifi/sdkconfig.rename C:/esp-idf/components/esptool_py/sdkconfig.rename C:/esp-idf/components/freemodbus/sdkconfig.rename C:/esp-idf/components/freertos/sdkconfig.rename C:/esp-idf/components/lwip/sdkconfig.rename C:/esp-idf/components/pthread/sdkconfig.rename C:/esp-idf/components/spi_flash/sdkconfig.rename C:/esp-idf/components/tcpip_adapter/sdkconfig.rename C:/esp-idf/components/vfs/sdkconfig.rename", 5 | "IDF_CMAKE": "y", 6 | "IDF_TARGET": "esp32", 7 | "IDF_PATH": "C:/esp-idf" 8 | } 9 | -------------------------------------------------------------------------------- /code/build/esp-idf/app_trace/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/app_trace 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/app_update/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/app_update 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/asio/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/asio 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/bootloader/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/bootloader 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/bootloader/flash_bootloader_args.in.in2: -------------------------------------------------------------------------------- 1 | --flash_mode dio 2 | --flash_size detect 3 | --flash_freq 40m 4 | 0x1000 bootloader/bootloader.bin 5 | -------------------------------------------------------------------------------- /code/build/esp-idf/bootloader_support/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/bootloader_support 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/bt/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/bt 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/coap/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/coap 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/console/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/console 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/cxx/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/cxx 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/driver/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/driver 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/efuse/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/efuse 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp-tls/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp-tls 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp32/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp32 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_adc_cal/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_adc_cal 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_common/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_common 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_eth/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_eth 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_event/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_event 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_gdbstub/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_gdbstub 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_http_client/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_http_client 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_http_server/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_http_server 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_https_ota/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_https_ota 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_https_server/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_https_server 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_local_ctrl/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_local_ctrl 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_ringbuf/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_ringbuf 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_rom/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_rom 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_websocket_client/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_websocket_client 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esp_wifi/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esp_wifi 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/espcoredump/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/espcoredump 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esptool_py/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/esptool_py 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/esptool_py/flash_project_args.in: -------------------------------------------------------------------------------- 1 | --flash_mode dio --flash_freq 40m --flash_size 2MB 2 | $, 3 | > 4 | -------------------------------------------------------------------------------- /code/build/esp-idf/esptool_py/flash_project_args.in2: -------------------------------------------------------------------------------- 1 | --flash_mode dio --flash_freq 40m --flash_size 2MB 2 | 0x8000 partition_table/partition-table.bin 3 | 0x1000 bootloader/bootloader.bin 4 | 0x10000 $.bin 5 | -------------------------------------------------------------------------------- /code/build/esp-idf/esptool_py/flasher_args.json.in: -------------------------------------------------------------------------------- 1 | { 2 | "write_flash_args" : [ "--flash_mode", "dio", 3 | "--flash_size", "detect", 4 | "--flash_freq", "40m" ], 5 | "flash_settings" : { 6 | "flash_mode": "dio", 7 | "flash_size": "detect", 8 | "flash_freq": "40m" 9 | }, 10 | "flash_files" : { 11 | $,, 12 | > 13 | }, 14 | $,, 15 | >, 16 | "extra_esptool_args" : { 17 | "after" : "hard_reset", 18 | "before" : "default_reset" 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /code/build/esp-idf/esptool_py/flasher_args.json.in2: -------------------------------------------------------------------------------- 1 | { 2 | "write_flash_args" : [ "--flash_mode", "dio", 3 | "--flash_size", "detect", 4 | "--flash_freq", "40m" ], 5 | "flash_settings" : { 6 | "flash_mode": "dio", 7 | "flash_size": "detect", 8 | "flash_freq": "40m" 9 | }, 10 | "flash_files" : { 11 | "0x8000" : "partition_table/partition-table.bin", 12 | "0x1000" : "bootloader/bootloader.bin", 13 | "0x10000" : "$.bin" 14 | }, 15 | "partition_table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin" }, 16 | "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin" }, 17 | "app" : { "offset" : "0x10000", "file" : "$.bin" }, 18 | "extra_esptool_args" : { 19 | "after" : "hard_reset", 20 | "before" : "default_reset" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /code/build/esp-idf/expat/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/expat 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/fatfs/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/fatfs 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/freemodbus/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/freemodbus 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/freertos/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/freertos 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/heap/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/heap 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/idf_test/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/idf_test 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/jsmn/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/jsmn 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/json/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/json 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/libsodium/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/libsodium 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/log/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/log 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/lwip/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/lwip 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/main/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/main 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/mbedtls/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/mbedtls 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | if(NOT CMAKE_INSTALL_LOCAL_ONLY) 36 | # Include the install script for each subdirectory. 37 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake") 38 | 39 | endif() 40 | 41 | -------------------------------------------------------------------------------- /code/build/esp-idf/mbedtls/mbedtls/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/mbedtls/mbedtls 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | if(NOT CMAKE_INSTALL_LOCAL_ONLY) 36 | # Include the install script for each subdirectory. 37 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake") 38 | include("C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/mbedtls/mbedtls/include/cmake_install.cmake") 39 | 40 | endif() 41 | 42 | -------------------------------------------------------------------------------- /code/build/esp-idf/mbedtls/mbedtls/library/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/mbedtls/mbedtls/library 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) 36 | file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/mbedtls/mbedtls/library/libmbedtls.a") 37 | endif() 38 | 39 | if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) 40 | file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/mbedtls/mbedtls/library/libmbedx509.a") 41 | endif() 42 | 43 | if("x${CMAKE_INSTALL_COMPONENT}x" STREQUAL "xUnspecifiedx" OR NOT CMAKE_INSTALL_COMPONENT) 44 | file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/lib" TYPE STATIC_LIBRARY PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE FILES "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a") 45 | endif() 46 | 47 | -------------------------------------------------------------------------------- /code/build/esp-idf/mdns/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/mdns 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/mqtt/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/mqtt 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/newlib/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/newlib 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/nghttp/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/nghttp 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/nvs_flash/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/nvs_flash 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/openssl/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/openssl 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/partition_table/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/partition_table 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/protobuf-c/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/protobuf-c 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/protocomm/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/protocomm 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/pthread/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/pthread 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/sdmmc/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/sdmmc 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/soc/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/soc 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/spi_flash/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/spi_flash 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/spiffs/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/spiffs 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/tcp_transport/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/tcp_transport 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/tcpip_adapter/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/tcpip_adapter 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/ulp/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/ulp 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/unity/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/unity 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/vfs/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/vfs 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/wear_levelling/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/wear_levelling 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/wifi_provisioning/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/wifi_provisioning 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/wpa_supplicant/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/wpa_supplicant 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/esp-idf/xtensa/cmake_install.cmake: -------------------------------------------------------------------------------- 1 | # Install script for directory: C:/esp-idf/components/xtensa 2 | 3 | # Set the install prefix 4 | if(NOT DEFINED CMAKE_INSTALL_PREFIX) 5 | set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/a2dp_sink") 6 | endif() 7 | string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") 8 | 9 | # Set the install configuration name. 10 | if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) 11 | if(BUILD_TYPE) 12 | string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" 13 | CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") 14 | else() 15 | set(CMAKE_INSTALL_CONFIG_NAME "") 16 | endif() 17 | message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") 18 | endif() 19 | 20 | # Set the component getting installed. 21 | if(NOT CMAKE_INSTALL_COMPONENT) 22 | if(COMPONENT) 23 | message(STATUS "Install component: \"${COMPONENT}\"") 24 | set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") 25 | else() 26 | set(CMAKE_INSTALL_COMPONENT) 27 | endif() 28 | endif() 29 | 30 | # Is this installation the result of a crosscompile? 31 | if(NOT DEFINED CMAKE_CROSSCOMPILING) 32 | set(CMAKE_CROSSCOMPILING "TRUE") 33 | endif() 34 | 35 | -------------------------------------------------------------------------------- /code/build/flash_app_args: -------------------------------------------------------------------------------- 1 | 0x10000 a2dp_sink.bin -------------------------------------------------------------------------------- /code/build/flash_bootloader_args: -------------------------------------------------------------------------------- 1 | --flash_mode dio 2 | --flash_size detect 3 | --flash_freq 40m 4 | 0x1000 bootloader/bootloader.bin 5 | -------------------------------------------------------------------------------- /code/build/flash_partition_table_args: -------------------------------------------------------------------------------- 1 | 0x8000 partition_table/partition-table.bin -------------------------------------------------------------------------------- /code/build/flash_project_args: -------------------------------------------------------------------------------- 1 | --flash_mode dio --flash_freq 40m --flash_size 2MB 2 | 0x8000 partition_table/partition-table.bin 3 | 0x1000 bootloader/bootloader.bin 4 | 0x10000 a2dp_sink.bin 5 | -------------------------------------------------------------------------------- /code/build/flasher_args.json: -------------------------------------------------------------------------------- 1 | { 2 | "write_flash_args" : [ "--flash_mode", "dio", 3 | "--flash_size", "detect", 4 | "--flash_freq", "40m" ], 5 | "flash_settings" : { 6 | "flash_mode": "dio", 7 | "flash_size": "detect", 8 | "flash_freq": "40m" 9 | }, 10 | "flash_files" : { 11 | "0x8000" : "partition_table/partition-table.bin", 12 | "0x1000" : "bootloader/bootloader.bin", 13 | "0x10000" : "a2dp_sink.bin" 14 | }, 15 | "partition_table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin" }, 16 | "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin" }, 17 | "app" : { "offset" : "0x10000", "file" : "a2dp_sink.bin" }, 18 | "extra_esptool_args" : { 19 | "after" : "hard_reset", 20 | "before" : "default_reset" 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /code/build/ldgen_libraries: -------------------------------------------------------------------------------- 1 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_ringbuf/libesp_ringbuf.a 2 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/driver/libdriver.a 3 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/wpa_supplicant/libwpa_supplicant.a 4 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/efuse/libefuse.a 5 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/bootloader_support/libbootloader_support.a 6 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/app_update/libapp_update.a 7 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/spi_flash/libspi_flash.a 8 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/nvs_flash/libnvs_flash.a 9 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_wifi/libesp_wifi.a 10 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_eth/libesp_eth.a 11 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/lwip/liblwip.a 12 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/tcpip_adapter/libtcpip_adapter.a 13 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_event/libesp_event.a 14 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/pthread/libpthread.a 15 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/espcoredump/libespcoredump.a 16 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp32/libesp32.a 17 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/xtensa/libxtensa.a 18 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_common/libesp_common.a 19 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_rom/libesp_rom.a 20 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/soc/libsoc.a 21 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/log/liblog.a 22 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/heap/libheap.a 23 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/freertos/libfreertos.a 24 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/vfs/libvfs.a 25 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/newlib/libnewlib.a 26 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/cxx/libcxx.a 27 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/app_trace/libapp_trace.a 28 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/asio/libasio.a 29 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/bt/libbt.a 30 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/coap/libcoap.a 31 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/console/libconsole.a 32 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/nghttp/libnghttp.a 33 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp-tls/libesp-tls.a 34 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_adc_cal/libesp_adc_cal.a 35 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_gdbstub/libesp_gdbstub.a 36 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/tcp_transport/libtcp_transport.a 37 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_http_client/libesp_http_client.a 38 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_http_server/libesp_http_server.a 39 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_https_ota/libesp_https_ota.a 40 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/protobuf-c/libprotobuf-c.a 41 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/protocomm/libprotocomm.a 42 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/mdns/libmdns.a 43 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_local_ctrl/libesp_local_ctrl.a 44 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/esp_websocket_client/libesp_websocket_client.a 45 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/expat/libexpat.a 46 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/wear_levelling/libwear_levelling.a 47 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/sdmmc/libsdmmc.a 48 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/fatfs/libfatfs.a 49 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/freemodbus/libfreemodbus.a 50 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/jsmn/libjsmn.a 51 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/json/libjson.a 52 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/libsodium/liblibsodium.a 53 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/mqtt/libmqtt.a 54 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/openssl/libopenssl.a 55 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/spiffs/libspiffs.a 56 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/ulp/libulp.a 57 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/unity/libunity.a 58 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/wifi_provisioning/libwifi_provisioning.a 59 | C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build/esp-idf/main/libmain.a 60 | -------------------------------------------------------------------------------- /code/build/ldgen_libraries.in: -------------------------------------------------------------------------------- 1 | $ 2 | $ 3 | $ 4 | $ 5 | $ 6 | $ 7 | $ 8 | $ 9 | $ 10 | $ 11 | $ 12 | $ 13 | $ 14 | $ 15 | $ 16 | $ 17 | $ 18 | $ 19 | $ 20 | $ 21 | $ 22 | $ 23 | $ 24 | $ 25 | $ 26 | $ 27 | $ 28 | $ 29 | $ 30 | $ 31 | $ 32 | $ 33 | $ 34 | $ 35 | $ 36 | $ 37 | $ 38 | $ 39 | $ 40 | $ 41 | $ 42 | $ 43 | $ 44 | $ 45 | $ 46 | $ 47 | $ 48 | $ 49 | $ 50 | $ 51 | $ 52 | $ 53 | $ 54 | $ 55 | $ 56 | $ 57 | $ 58 | $ 59 | $ -------------------------------------------------------------------------------- /code/build/project_description.json: -------------------------------------------------------------------------------- 1 | { 2 | "project_name": "a2dp_sink", 3 | "project_path": "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp", 4 | "build_dir": "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/build", 5 | "config_file": "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/sdkconfig", 6 | "config_defaults": "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/sdkconfig.defaults", 7 | "app_elf": "a2dp_sink.elf", 8 | "app_bin": "a2dp_sink.bin", 9 | "git_revision": "v4.0-dirty", 10 | "phy_data_partition": "", 11 | "monitor_baud" : "115200", 12 | "config_environment" : { 13 | "COMPONENT_KCONFIGS" : "C:/esp-idf/components/app_trace/Kconfig;C:/esp-idf/components/bt/Kconfig;C:/esp-idf/components/driver/Kconfig;C:/esp-idf/components/efuse/Kconfig;C:/esp-idf/components/esp-tls/Kconfig;C:/esp-idf/components/esp32/Kconfig;C:/esp-idf/components/esp_adc_cal/Kconfig;C:/esp-idf/components/esp_common/Kconfig;C:/esp-idf/components/esp_eth/Kconfig;C:/esp-idf/components/esp_event/Kconfig;C:/esp-idf/components/esp_gdbstub/Kconfig;C:/esp-idf/components/esp_http_client/Kconfig;C:/esp-idf/components/esp_http_server/Kconfig;C:/esp-idf/components/esp_https_ota/Kconfig;C:/esp-idf/components/esp_https_server/Kconfig;C:/esp-idf/components/esp_wifi/Kconfig;C:/esp-idf/components/espcoredump/Kconfig;C:/esp-idf/components/fatfs/Kconfig;C:/esp-idf/components/freemodbus/Kconfig;C:/esp-idf/components/freertos/Kconfig;C:/esp-idf/components/heap/Kconfig;C:/esp-idf/components/libsodium/Kconfig;C:/esp-idf/components/log/Kconfig;C:/esp-idf/components/lwip/Kconfig;C:/esp-idf/components/mbedtls/Kconfig;C:/esp-idf/components/mdns/Kconfig;C:/esp-idf/components/mqtt/Kconfig;C:/esp-idf/components/newlib/Kconfig;C:/esp-idf/components/nvs_flash/Kconfig;C:/esp-idf/components/openssl/Kconfig;C:/esp-idf/components/pthread/Kconfig;C:/esp-idf/components/spi_flash/Kconfig;C:/esp-idf/components/spiffs/Kconfig;C:/esp-idf/components/tcpip_adapter/Kconfig;C:/esp-idf/components/unity/Kconfig;C:/esp-idf/components/vfs/Kconfig;C:/esp-idf/components/wear_levelling/Kconfig;C:/esp-idf/components/wifi_provisioning/Kconfig;C:/esp-idf/components/wpa_supplicant/Kconfig", 14 | "COMPONENT_KCONFIGS_PROJBUILD" : "C:/esp-idf/components/app_update/Kconfig.projbuild;C:/esp-idf/components/bootloader/Kconfig.projbuild;C:/esp-idf/components/esptool_py/Kconfig.projbuild;C:/esp-idf/components/partition_table/Kconfig.projbuild;C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/main/Kconfig.projbuild" 15 | }, 16 | "build_components" : [ "app_trace", "app_update", "asio", "bootloader", "bootloader_support", "bt", "coap", "console", "cxx", "driver", "efuse", "esp-tls", "esp32", "esp_adc_cal", "esp_common", "esp_eth", "esp_event", "esp_gdbstub", "esp_http_client", "esp_http_server", "esp_https_ota", "esp_https_server", "esp_local_ctrl", "esp_ringbuf", "esp_rom", "esp_websocket_client", "esp_wifi", "espcoredump", "esptool_py", "expat", "fatfs", "freemodbus", "freertos", "heap", "idf_test", "jsmn", "json", "libsodium", "log", "lwip", "main", "mbedtls", "mdns", "mqtt", "newlib", "nghttp", "nvs_flash", "openssl", "partition_table", "protobuf-c", "protocomm", "pthread", "sdmmc", "soc", "spi_flash", "spiffs", "tcp_transport", "tcpip_adapter", "ulp", "unity", "vfs", "wear_levelling", "wifi_provisioning", "wpa_supplicant", "xtensa", "" ], 17 | "build_component_paths" : [ "C:/esp-idf/components/app_trace", "C:/esp-idf/components/app_update", "C:/esp-idf/components/asio", "C:/esp-idf/components/bootloader", "C:/esp-idf/components/bootloader_support", "C:/esp-idf/components/bt", "C:/esp-idf/components/coap", "C:/esp-idf/components/console", "C:/esp-idf/components/cxx", "C:/esp-idf/components/driver", "C:/esp-idf/components/efuse", "C:/esp-idf/components/esp-tls", "C:/esp-idf/components/esp32", "C:/esp-idf/components/esp_adc_cal", "C:/esp-idf/components/esp_common", "C:/esp-idf/components/esp_eth", "C:/esp-idf/components/esp_event", "C:/esp-idf/components/esp_gdbstub", "C:/esp-idf/components/esp_http_client", "C:/esp-idf/components/esp_http_server", "C:/esp-idf/components/esp_https_ota", "C:/esp-idf/components/esp_https_server", "C:/esp-idf/components/esp_local_ctrl", "C:/esp-idf/components/esp_ringbuf", "C:/esp-idf/components/esp_rom", "C:/esp-idf/components/esp_websocket_client", "C:/esp-idf/components/esp_wifi", "C:/esp-idf/components/espcoredump", "C:/esp-idf/components/esptool_py", "C:/esp-idf/components/expat", "C:/esp-idf/components/fatfs", "C:/esp-idf/components/freemodbus", "C:/esp-idf/components/freertos", "C:/esp-idf/components/heap", "C:/esp-idf/components/idf_test", "C:/esp-idf/components/jsmn", "C:/esp-idf/components/json", "C:/esp-idf/components/libsodium", "C:/esp-idf/components/log", "C:/esp-idf/components/lwip", "C:/esp-idf/examples/bluetooth/bluedroid/classic_bt/a2dp_sink_dsp/main", "C:/esp-idf/components/mbedtls", "C:/esp-idf/components/mdns", "C:/esp-idf/components/mqtt", "C:/esp-idf/components/newlib", "C:/esp-idf/components/nghttp", "C:/esp-idf/components/nvs_flash", "C:/esp-idf/components/openssl", "C:/esp-idf/components/partition_table", "C:/esp-idf/components/protobuf-c", "C:/esp-idf/components/protocomm", "C:/esp-idf/components/pthread", "C:/esp-idf/components/sdmmc", "C:/esp-idf/components/soc", "C:/esp-idf/components/spi_flash", "C:/esp-idf/components/spiffs", "C:/esp-idf/components/tcp_transport", "C:/esp-idf/components/tcpip_adapter", "C:/esp-idf/components/ulp", "C:/esp-idf/components/unity", "C:/esp-idf/components/vfs", "C:/esp-idf/components/wear_levelling", "C:/esp-idf/components/wifi_provisioning", "C:/esp-idf/components/wpa_supplicant", "C:/esp-idf/components/xtensa", "" ] 18 | } 19 | -------------------------------------------------------------------------------- /code/main/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | idf_component_register(SRCS "bt_app_av.c" 2 | "bt_app_core.c" 3 | "main.c" 4 | INCLUDE_DIRS ".") -------------------------------------------------------------------------------- /code/main/Kconfig.projbuild: -------------------------------------------------------------------------------- 1 | menu "A2DP Example Configuration" 2 | 3 | choice EXAMPLE_A2DP_SINK_OUTPUT 4 | prompt "A2DP Sink Output" 5 | default EXAMPLE_A2DP_SINK_OUTPUT_EXTERNAL_I2S 6 | help 7 | Select to use Internal DAC or external I2S driver 8 | 9 | config EXAMPLE_A2DP_SINK_OUTPUT_INTERNAL_DAC 10 | bool "Internal DAC" 11 | help 12 | Select this to use Internal DAC sink output 13 | 14 | config EXAMPLE_A2DP_SINK_OUTPUT_EXTERNAL_I2S 15 | bool "External I2S Codec" 16 | help 17 | Select this to use External I2S sink output 18 | 19 | endchoice 20 | 21 | config EXAMPLE_I2S_LRCK_PIN 22 | int "I2S LRCK (WS) GPIO" 23 | default 22 24 | depends on EXAMPLE_A2DP_SINK_OUTPUT_EXTERNAL_I2S 25 | help 26 | GPIO number to use for I2S LRCK(WS) Driver. 27 | 28 | config EXAMPLE_I2S_BCK_PIN 29 | int "I2S BCK GPIO" 30 | default 26 31 | depends on EXAMPLE_A2DP_SINK_OUTPUT_EXTERNAL_I2S 32 | help 33 | GPIO number to use for I2S BCK Driver. 34 | 35 | config EXAMPLE_I2S_DATA_PIN 36 | int "I2S DATA GPIO" 37 | default 25 38 | depends on EXAMPLE_A2DP_SINK_OUTPUT_EXTERNAL_I2S 39 | help 40 | GPIO number to use for I2S Data Driver. 41 | 42 | endmenu 43 | -------------------------------------------------------------------------------- /code/main/bt_app_av.h: -------------------------------------------------------------------------------- 1 | /* 2 | This example code is in the Public Domain (or CC0 licensed, at your option.) 3 | 4 | Unless required by applicable law or agreed to in writing, this 5 | software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 6 | CONDITIONS OF ANY KIND, either express or implied. 7 | */ 8 | 9 | #ifndef __BT_APP_AV_H__ 10 | #define __BT_APP_AV_H__ 11 | 12 | #include 13 | #include "esp_a2dp_api.h" 14 | #include "esp_avrc_api.h" 15 | 16 | #define BT_AV_TAG "BT_AV" 17 | #define BT_RC_TG_TAG "RCTG" 18 | #define BT_RC_CT_TAG "RCCT" 19 | 20 | /** 21 | * @brief callback function for A2DP sink 22 | */ 23 | void bt_app_a2d_cb(esp_a2d_cb_event_t event, esp_a2d_cb_param_t *param); 24 | 25 | /** 26 | * @brief callback function for A2DP sink audio data stream 27 | */ 28 | void bt_app_a2d_data_cb(const uint8_t *data, uint32_t len); 29 | 30 | /** 31 | * @brief callback function for AVRCP controller 32 | */ 33 | void bt_app_rc_ct_cb(esp_avrc_ct_cb_event_t event, esp_avrc_ct_cb_param_t *param); 34 | 35 | /** 36 | * @brief callback function for AVRCP target 37 | */ 38 | void bt_app_rc_tg_cb(esp_avrc_tg_cb_event_t event, esp_avrc_tg_cb_param_t *param); 39 | 40 | extern uint8_t s_volume; 41 | 42 | #endif /* __BT_APP_AV_H__*/ 43 | -------------------------------------------------------------------------------- /code/main/bt_app_core.c: -------------------------------------------------------------------------------- 1 | /* 2 | This example code is in the Public Domain (or CC0 licensed, at your option.) 3 | 4 | Unless required by applicable law or agreed to in writing, this 5 | software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 6 | CONDITIONS OF ANY KIND, either express or implied. 7 | */ 8 | 9 | #include 10 | #include 11 | #include 12 | #include "freertos/xtensa_api.h" 13 | #include "freertos/FreeRTOSConfig.h" 14 | #include "freertos/FreeRTOS.h" 15 | #include "freertos/queue.h" 16 | #include "freertos/task.h" 17 | #include "esp_log.h" 18 | #include "bt_app_core.h" 19 | #include "driver/i2s.h" 20 | #include "freertos/ringbuf.h" 21 | //add to see variable s_volume 22 | #include "bt_app_av.h" 23 | 24 | #include "dsp.h" 25 | 26 | static void bt_app_task_handler(void *arg); 27 | static bool bt_app_send_msg(bt_app_msg_t *msg); 28 | static void bt_app_work_dispatched(bt_app_msg_t *msg); 29 | 30 | static xQueueHandle s_bt_app_task_queue = NULL; 31 | static xTaskHandle s_bt_app_task_handle = NULL; 32 | static xTaskHandle s_bt_i2s_task_handle = NULL; 33 | static RingbufHandle_t s_ringbuf_i2s = NULL;; 34 | 35 | bool bt_app_work_dispatch(bt_app_cb_t p_cback, uint16_t event, void *p_params, int param_len, bt_app_copy_cb_t p_copy_cback) 36 | { 37 | ESP_LOGD(BT_APP_CORE_TAG, "%s event 0x%x, param len %d", __func__, event, param_len); 38 | 39 | bt_app_msg_t msg; 40 | memset(&msg, 0, sizeof(bt_app_msg_t)); 41 | 42 | msg.sig = BT_APP_SIG_WORK_DISPATCH; 43 | msg.event = event; 44 | msg.cb = p_cback; 45 | 46 | if (param_len == 0) { 47 | return bt_app_send_msg(&msg); 48 | } else if (p_params && param_len > 0) { 49 | if ((msg.param = malloc(param_len)) != NULL) { 50 | memcpy(msg.param, p_params, param_len); 51 | /* check if caller has provided a copy callback to do the deep copy */ 52 | if (p_copy_cback) { 53 | p_copy_cback(&msg, msg.param, p_params); 54 | } 55 | return bt_app_send_msg(&msg); 56 | } 57 | } 58 | 59 | return false; 60 | } 61 | 62 | static bool bt_app_send_msg(bt_app_msg_t *msg) 63 | { 64 | if (msg == NULL) { 65 | return false; 66 | } 67 | 68 | if (xQueueSend(s_bt_app_task_queue, msg, 10 / portTICK_RATE_MS) != pdTRUE) { 69 | ESP_LOGE(BT_APP_CORE_TAG, "%s xQueue send failed", __func__); 70 | return false; 71 | } 72 | return true; 73 | } 74 | 75 | static void bt_app_work_dispatched(bt_app_msg_t *msg) 76 | { 77 | if (msg->cb) { 78 | msg->cb(msg->event, msg->param); 79 | } 80 | } 81 | 82 | static void bt_app_task_handler(void *arg) 83 | { 84 | bt_app_msg_t msg; 85 | for (;;) { 86 | if (pdTRUE == xQueueReceive(s_bt_app_task_queue, &msg, (portTickType)portMAX_DELAY)) { 87 | ESP_LOGD(BT_APP_CORE_TAG, "%s, sig 0x%x, 0x%x", __func__, msg.sig, msg.event); 88 | switch (msg.sig) { 89 | case BT_APP_SIG_WORK_DISPATCH: 90 | bt_app_work_dispatched(&msg); 91 | break; 92 | default: 93 | ESP_LOGW(BT_APP_CORE_TAG, "%s, unhandled sig: %d", __func__, msg.sig); 94 | break; 95 | } // switch (msg.sig) 96 | 97 | if (msg.param) { 98 | free(msg.param); 99 | } 100 | } 101 | } 102 | } 103 | 104 | void bt_app_task_start_up(void) 105 | { 106 | s_bt_app_task_queue = xQueueCreate(10, sizeof(bt_app_msg_t)); 107 | xTaskCreate(bt_app_task_handler, "BtAppT", 3072, NULL, configMAX_PRIORITIES - 3, &s_bt_app_task_handle); 108 | return; 109 | } 110 | 111 | void bt_app_task_shut_down(void) 112 | { 113 | if (s_bt_app_task_handle) { 114 | vTaskDelete(s_bt_app_task_handle); 115 | s_bt_app_task_handle = NULL; 116 | } 117 | if (s_bt_app_task_queue) { 118 | vQueueDelete(s_bt_app_task_queue); 119 | s_bt_app_task_queue = NULL; 120 | } 121 | } 122 | 123 | static void bt_i2s_task_handler(void *arg) 124 | { 125 | uint8_t *data = NULL; 126 | size_t item_size = 0; 127 | size_t bytes_written = 0; 128 | 129 | for (;;) { 130 | data = (uint8_t *)xRingbufferReceive(s_ringbuf_i2s, &item_size, (portTickType)portMAX_DELAY); 131 | if (item_size != 0){ 132 | int16_t * pcmdata = (int16_t *)data; 133 | for (int i=0; i 13 | #include 14 | #include 15 | 16 | #define BT_APP_CORE_TAG "BT_APP_CORE" 17 | 18 | #define BT_APP_SIG_WORK_DISPATCH (0x01) 19 | 20 | /** 21 | * @brief handler for the dispatched work 22 | */ 23 | typedef void (* bt_app_cb_t) (uint16_t event, void *param); 24 | 25 | /* message to be sent */ 26 | typedef struct { 27 | uint16_t sig; /*!< signal to bt_app_task */ 28 | uint16_t event; /*!< message event id */ 29 | bt_app_cb_t cb; /*!< context switch callback */ 30 | void *param; /*!< parameter area needs to be last */ 31 | } bt_app_msg_t; 32 | 33 | /** 34 | * @brief parameter deep-copy function to be customized 35 | */ 36 | typedef void (* bt_app_copy_cb_t) (bt_app_msg_t *msg, void *p_dest, void *p_src); 37 | 38 | /** 39 | * @brief work dispatcher for the application task 40 | */ 41 | bool bt_app_work_dispatch(bt_app_cb_t p_cback, uint16_t event, void *p_params, int param_len, bt_app_copy_cb_t p_copy_cback); 42 | 43 | void bt_app_task_start_up(void); 44 | 45 | void bt_app_task_shut_down(void); 46 | 47 | void bt_i2s_task_start_up(void); 48 | 49 | void bt_i2s_task_shut_down(void); 50 | 51 | size_t write_ringbuf(const uint8_t *data, size_t size); 52 | 53 | #endif /* __BT_APP_CORE_H__ */ 54 | -------------------------------------------------------------------------------- /code/main/component.mk: -------------------------------------------------------------------------------- 1 | # 2 | # "main" pseudo-component makefile. 3 | # 4 | # (Uses default behaviour of compiling all source files in directory, adding 'include' to include path.) 5 | 6 | -------------------------------------------------------------------------------- /code/main/dsp.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | struct iir_filt { 4 | float in_z1; 5 | float in_z2; 6 | float out_z1; 7 | float out_z2; 8 | float a0[4]; 9 | float a1[4]; 10 | float a2[4]; 11 | float b1[4]; 12 | float b2[4]; 13 | }; 14 | 15 | 16 | //bass-speaker, 45Hz Hipass 17 | static struct iir_filt conf_45_hp = { 18 | //index0 = 16k, index1 = 32k, index 2 = 44k1, index 3 = 48k 19 | .a0 = { 0.9875820178250215, 0.9937716134506484 , 0.9954766638878052, 0.9958434200204267 }, 20 | .a1 = { -1.975164035650043, -1.9875432269012967, -1.9909533277756104, -1.9916868400408534 }, 21 | .a2 = { 0.9875820178250215, 0.9937716134506484, 0.9954766638878052, 0.9958434200204267 }, 22 | .b1 = { -1.975009826344679, -1.9875044344654942, -1.9909328674920315, -1.9916695631391037 }, 23 | .b2 = { 0.9753182449554073, 0.9875820193370991, 0.9909737880591895, 0.991704116942603 }, 24 | 25 | }; 26 | 27 | 28 | //bass-speaker, 2500Hz Lowpass 29 | static struct iir_filt conf_2k5_lp = { 30 | //index0 = 16k, index1 = 32k, index 2 = 44k1, index 3 = 48k 31 | .a0 = { 0.13993146179027674, 0.044278036805267616, 0.025175362450974036, 0.021620113635254866 }, 32 | .a1 = { 0.2798629235805535, 0.08855607361053523, 0.05035072490194807, 0.04324022727050973 }, 33 | .a2 = { 0.13993146179027674, 0.044278036805267616, 0.025175362450974036, 0.021620113635254866 } , 34 | .b1 = { -0.699698900564656, -1.3228374096880198, -1.50365042037159, -1.5430779694435248 }, 35 | .b2 = { 0.259424747725763, 0.4999495569090904, 0.6043518701754859, 0.6295584239845442} 36 | 37 | }; 38 | 39 | //bass-speaker, eq 60Hz +5db, q=2.0, bass fun factor :-) 40 | static struct iir_filt conf_60_eq = { 41 | //index0 = 16k, index1 = 32k, index 2 = 44k1, index 3 = 48k 42 | .a0 = { 1.0045571784556593, 1.0022854380342285, 1.00165972312044, 1.0015251377673262 }, 43 | .a1 = { -1.9877372051598552, -1.9939885650528055, -1.995661969908465, -1.9960191810845285 }, 44 | .a2 = { 0.9837319156746053, 0.991841509165585, 0.994075168233407, 0.9945556071485654 }, 45 | .b1 = { -1.9877372051598552, -1.9939885650528055, -1.995661969908465, -1.9960191810845285 }, 46 | .b2 = { 0.9882890941302647, 0.9941269471998133, 0.9957348913538471, 0.9960807449158914 } 47 | 48 | }; 49 | 50 | 51 | //tweeter 2800 Hz Hipass 52 | static struct iir_filt conf_2k8_hp = { 53 | //index0 = 16k, index1 = 32k, index 2 = 44k1, index 3 = 48k 54 | .a0 = { 0.44599764558093963, 0.6764097852300075, 0.753716633131342, 0.7713299340241907}, 55 | .a1 = { -0.8919952911618793, -1.352819570460015, -1.507433266262684, -1.5426598680483814}, 56 | .a2 = { 0.44599764558093963, 0.6764097852300075, 0.753716633131342, 0.7713299340241907}, 57 | .b1 = { -0.5570289325445305, -1.2452156906579934, -1.4458299168752424, -1.489668635259956}, 58 | .b2 = { 0.2269616497792281, 0.4604234502620365, 0.5690366156501254, 0.595651100836807} 59 | 60 | }; 61 | uint8_t fs; 62 | 63 | static float process_iir (float inSampleF, struct iir_filt * config) { 64 | float outSampleF = 65 | (* config).a0[fs] * inSampleF 66 | + (* config).a1[fs] * (* config).in_z1 67 | + (* config).a2[fs] * (* config).in_z2 68 | - (* config).b1[fs] * (* config).out_z1 69 | - (* config).b2[fs] * (* config).out_z2; 70 | (* config).in_z2 = (* config).in_z1; 71 | (* config).in_z1 = inSampleF; 72 | (* config).out_z2 = (* config).out_z1; 73 | (* config).out_z1 = outSampleF; 74 | return outSampleF; 75 | } 76 | 77 | static void process_data (uint8_t * data, size_t item_size) { 78 | 79 | int16_t * samples = (int16_t *) data; 80 | int16_t * outsample = (int16_t *) data; 81 | 82 | for (int i=0; i