esp32_shock/build/log/idf_py_stdout_output_2348
2024-04-29 17:35:50 +08:00

134 lines
11 KiB
Plaintext

[1/12] Performing build step for 'bootloader'
[1/1] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\esp32_shock\build\bootloader\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 bootloader 0x0 E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/build/bootloader/bootloader.bin"
Bootloader binary size 0x5080 bytes. 0x2f80 bytes (37%) free.
[2/10] Building C object esp-idf/lis3dsh/CMakeFiles/__idf_lis3dsh.dir/shake_detect.c.obj
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c: In function 'lis3dsh_init':
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:160:26: warning: unused variable 'status' [-Wunused-variable]
160 | lis3dsh_status_var_t status;
| ^~~~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:159:24: warning: unused variable 'bus_mode' [-Wunused-variable]
159 | lis3dsh_bus_mode_t bus_mode;
| ^~~~~~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:158:27: warning: unused variable 'all_sources' [-Wunused-variable]
158 | lis3dsh_all_sources_t all_sources;
| ^~~~~~~~~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:157:30: warning: unused variable 'int1_route' [-Wunused-variable]
157 | lis3dsh_pin_int1_route_t int1_route;
| ^~~~~~~~~~
In file included from E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:16:
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c: In function 'fft_calculate_task':
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:610:38: warning: passing argument 2 of 'twai_send_data' from incompatible pointer type [-Wincompatible-pointer-types]
610 | twai_send_fft_array_data(feq_data, N_SAMPLES / 2);
| ^~~~~~~~
| |
| float *
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/twai_communication/twai_communication.h:81:83: note: in definition of macro 'twai_send_fft_array_data'
81 | #define twai_send_fft_array_data(data, len) twai_send_data(SEND_FFT_ARRAY_ID, data, len, twai_fft_array_data_send_enable)
| ^~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/twai_communication/twai_communication.h:84:56: note: expected 'const uint8_t *' {aka 'const unsigned char *'} but argument is of type 'float *'
84 | int twai_send_data(uint32_t identifier, const uint8_t *data, uint8_t len, bool enable);
| ~~~~~~~~~~~~~~~^~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.h:22:45: warning: unsigned conversion from 'int' to 'uint8_t' {aka 'unsigned char'} changes value from '512' to '0' [-Woverflow]
22 | #define N_SAMPLES 1024
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/twai_communication/twai_communication.h:81:89: note: in definition of macro 'twai_send_fft_array_data'
81 | #define twai_send_fft_array_data(data, len) twai_send_data(SEND_FFT_ARRAY_ID, data, len, twai_fft_array_data_send_enable)
| ^~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:610:48: note: in expansion of macro 'N_SAMPLES'
610 | twai_send_fft_array_data(feq_data, N_SAMPLES / 2);
| ^~~~~~~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:571:26: warning: unused variable 'end_b' [-Wunused-variable]
571 | unsigned int end_b = dsp_get_cpu_cycle_count();
| ^~~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:564:26: warning: unused variable 'start_b' [-Wunused-variable]
564 | unsigned int start_b = dsp_get_cpu_cycle_count();
| ^~~~~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c: In function 'shake_detect_init':
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:682:29: warning: passing argument 1 of 'xTaskCreatePinnedToCore' from incompatible pointer type [-Wincompatible-pointer-types]
682 | xTaskCreatePinnedToCore(lis3dsh_read_task, "lis3dsh_read_task", 4096, NULL, 9, NULL, tskNO_AFFINITY);
| ^~~~~~~~~~~~~~~~~
| |
| void (*)(void)
In file included from E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:6:
E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos/task.h:345:56: note: expected 'TaskFunction_t' {aka 'void (*)(void *)'} but argument is of type 'void (*)(void)'
345 | BaseType_t xTaskCreatePinnedToCore( TaskFunction_t pvTaskCode,
| ~~~~~~~~~~~~~~~^~~~~~~~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:683:29: warning: passing argument 1 of 'xTaskCreatePinnedToCore' from incompatible pointer type [-Wincompatible-pointer-types]
683 | xTaskCreatePinnedToCore(fft_calculate_task, "fft_calculate_task", 4096, NULL, 9, NULL, tskNO_AFFINITY);
| ^~~~~~~~~~~~~~~~~~
| |
| void (*)(void)
In file included from E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:6:
E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos/task.h:345:56: note: expected 'TaskFunction_t' {aka 'void (*)(void *)'} but argument is of type 'void (*)(void)'
345 | BaseType_t xTaskCreatePinnedToCore( TaskFunction_t pvTaskCode,
| ~~~~~~~~~~~~~~~^~~~~~~~~~
E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:684:29: warning: passing argument 1 of 'xTaskCreatePinnedToCore' from incompatible pointer type [-Wincompatible-pointer-types]
684 | xTaskCreatePinnedToCore(angle_calculate_task, "angle_calculate_task", 4096, NULL, 9, NULL, tskNO_AFFINITY);
| ^~~~~~~~~~~~~~~~~~~~
| |
| void (*)(void)
In file included from E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/components/lis3dsh/shake_detect.c:6:
E:/Espressif/frameworks/esp-idf-v5.0.4/components/freertos/FreeRTOS-Kernel/include/freertos/task.h:345:56: note: expected 'TaskFunction_t' {aka 'void (*)(void *)'} but argument is of type 'void (*)(void)'
345 | BaseType_t xTaskCreatePinnedToCore( TaskFunction_t pvTaskCode,
| ~~~~~~~~~~~~~~~^~~~~~~~~~
[3/10] Linking C static library esp-idf\lis3dsh\liblis3dsh.a
[4/10] Linking C static library esp-idf\twai_communication\libtwai_communication.a
[5/10] Linking C static library esp-idf\main\libmain.a
[6/10] Generating ld/sections.ld
[7/10] Linking CXX executable esp32_shock.elf
[8/10] Generating binary image from built executable
esptool.py v4.6.2
Creating esp32s3 image...
Merged 2 ELF sections
Successfully created esp32s3 image.
Generated E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/build/esp32_shock.bin
[9/10] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\app\esp32_shock\build\esp-idf\esptool_py && E:\Espressif\python_env\idf5.0_py3.11_env\Scripts\python.exe E:/Espressif/frameworks/esp-idf-v5.0.4/components/partition_table/check_sizes.py --offset 0x8000 partition --type app E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/build/partition_table/partition-table.bin E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/build/esp32_shock.bin"
esp32_shock.bin binary size 0x4c560 bytes. Smallest app partition is 0x100000 bytes. 0xb3aa0 bytes (70%) free.
[9/10] cmd.exe /C "cd /D E:\Espressif\frameworks\esp-idf-v5.0.4\components\esptool_py && E:\Espressif\tools\cmake\3.24.0\bin\cmake.exe -D IDF_PATH=E:/Espressif/frameworks/esp-idf-v5.0.4 -D SERIAL_TOOL=E:/Espressif/python_env/idf5.0_py3.11_env/Scripts/python.exe;;E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/esptool/esptool.py;--chip;esp32s3 -D SERIAL_TOOL_ARGS=--before=default_reset;--after=hard_reset;write_flash;@flash_args -D WORKING_DIRECTORY=E:/Espressif/frameworks/esp-idf-v5.0.4/app/esp32_shock/build -P E:/Espressif/frameworks/esp-idf-v5.0.4/components/esptool_py/run_serial_tool.cmake"
esptool esp32s3 -p COM78 -b 460800 --before=default_reset --after=hard_reset write_flash --flash_mode dio --flash_freq 80m --flash_size 4MB 0x0 bootloader/bootloader.bin 0x10000 esp32_shock.bin 0x8000 partition_table/partition-table.bin 0xd000 ota_data_initial.bin
esptool.py v4.6.2
Serial port COM78
Connecting...
Chip is ESP32-S3 (revision v0.1)
Features: WiFi, BLE
Crystal is 40MHz
MAC: f4:12:fa:a0:a4:c4
Uploading stub...
Running stub...
Stub running...
Changing baud rate to 460800
Changed.
Configuring flash size...
Flash will be erased from 0x00000000 to 0x00005fff...
Flash will be erased from 0x00010000 to 0x0005cfff...
Flash will be erased from 0x00008000 to 0x00008fff...
Flash will be erased from 0x0000d000 to 0x0000efff...
Compressed 20608 bytes to 13094...
Writing at 0x00000000... (100 %)
Wrote 20608 bytes (13094 compressed) at 0x00000000 in 0.3 seconds (effective 584.0 kbit/s)...
Hash of data verified.
Compressed 312672 bytes to 177974...
Writing at 0x00010000... (9 %)
Writing at 0x000191c1... (18 %)
Writing at 0x000210e7... (27 %)
Writing at 0x00028d2d... (36 %)
Writing at 0x0002e8b5... (45 %)
Writing at 0x000347f6... (54 %)
Writing at 0x0003abd2... (63 %)
Writing at 0x00040d6c... (72 %)
Writing at 0x000467d5... (81 %)
Writing at 0x0004df9b... (90 %)
Writing at 0x0005736d... (100 %)
Wrote 312672 bytes (177974 compressed) at 0x00010000 in 2.1 seconds (effective 1175.6 kbit/s)...
Hash of data verified.
Compressed 3072 bytes to 138...
Writing at 0x00008000... (100 %)
Wrote 3072 bytes (138 compressed) at 0x00008000 in 0.0 seconds (effective 630.3 kbit/s)...
Hash of data verified.
Compressed 8192 bytes to 31...
Writing at 0x0000d000... (100 %)
Wrote 8192 bytes (31 compressed) at 0x0000d000 in 0.1 seconds (effective 1109.9 kbit/s)...
Hash of data verified.
Leaving...
Hard resetting via RTS pin...