Skip to content

Commit

Permalink
Merge branch 'feature/use_esp_jpeg_for_example' into 'master'
Browse files Browse the repository at this point in the history
examples/tjpgd: Use esp_jpeg component in tjpgd and SPI examples

Closes IDF-5652

See merge request espressif/esp-idf!19464
  • Loading branch information
suda-morris committed Aug 18, 2022
2 parents 60d7945 + a00e877 commit 5b48a33
Show file tree
Hide file tree
Showing 23 changed files with 75 additions and 1,456 deletions.
1 change: 0 additions & 1 deletion components/esp_rom/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ else()
"patches/esp_rom_sys.c"
"patches/esp_rom_uart.c"
"patches/esp_rom_spiflash.c"
"patches/esp_rom_tjpgd.c"
"patches/esp_rom_regi2c.c"
"patches/esp_rom_efuse.c")
list(APPEND private_required_comp soc hal)
Expand Down
6 changes: 0 additions & 6 deletions components/esp_rom/esp32/ld/esp32.rom.api.ld
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
/**
* ROM APIs
*/

/* user may provide newer version of tjpgd */
/* so here directly assign the symbols with the ROM API address to make sure one from rom is correctly linked */
PROVIDE ( esp_rom_tjpgd_decomp = 0x400613e8 );
PROVIDE ( esp_rom_tjpgd_prepare = 0x40060fa8 );

PROVIDE ( esp_rom_crc32_le = crc32_le );
PROVIDE ( esp_rom_crc16_le = crc16_le );
PROVIDE ( esp_rom_crc8_le = crc8_le );
Expand Down
9 changes: 2 additions & 7 deletions components/esp_rom/esp32c3/ld/esp32c3.rom.api.ld
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
/** ROM APIs
/**
* ROM APIs
*/

/* user may provide newer version of tjpgd */
/* so here directly assign the symbols with the ROM API address to make sure one from rom is correctly linked */
PROVIDE ( esp_rom_tjpgd_decomp = 0x40000108 );
PROVIDE ( esp_rom_tjpgd_prepare = 0x40000104 );

PROVIDE ( esp_rom_crc32_le = crc32_le );
PROVIDE ( esp_rom_crc16_le = crc16_le );
PROVIDE ( esp_rom_crc8_le = crc8_le );
Expand Down
3 changes: 0 additions & 3 deletions components/esp_rom/esp32h2/ld/rev1/esp32h2.rom.api.ld
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

/** ROM APIs
*/
PROVIDE ( esp_rom_tjpgd_decomp = 0x40000104 );
PROVIDE ( esp_rom_tjpgd_prepare = 0x40000100 );

PROVIDE ( esp_rom_crc32_le = crc32_le );
PROVIDE ( esp_rom_crc16_le = crc16_le );
PROVIDE ( esp_rom_crc8_le = crc8_le );
Expand Down
3 changes: 0 additions & 3 deletions components/esp_rom/esp32h2/ld/rev2/esp32h2.rom.api.ld
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@

/** ROM APIs
*/
PROVIDE ( esp_rom_tjpgd_decomp = 0x40000104 );
PROVIDE ( esp_rom_tjpgd_prepare = 0x40000100 );

PROVIDE ( esp_rom_crc32_le = crc32_le );
PROVIDE ( esp_rom_crc16_le = crc16_le );
PROVIDE ( esp_rom_crc8_le = crc8_le );
Expand Down
6 changes: 0 additions & 6 deletions components/esp_rom/esp32s3/ld/esp32s3.rom.api.ld
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
/**
* ROM APIs
*/

/* user may provide newer version of tjpgd */
/* so here directly assign the symbols with the ROM API address to make sure one from rom is correctly linked */
PROVIDE ( esp_rom_tjpgd_decomp = 0x40000864 );
PROVIDE ( esp_rom_tjpgd_prepare = 0x40000858 );

PROVIDE ( esp_rom_crc32_le = crc32_le );
PROVIDE ( esp_rom_crc16_le = crc16_le );
PROVIDE ( esp_rom_crc8_le = crc8_le );
Expand Down
152 changes: 0 additions & 152 deletions components/esp_rom/include/esp_rom_tjpgd.h

This file was deleted.

Loading

0 comments on commit 5b48a33

Please sign in to comment.