rom/tjpgd: unify library & add rom patch

remove external tjpgd library inside example

enable tjpgd decoding on all chips
This commit is contained in:
SalimTerryLi
2021-08-27 15:28:48 +08:00
parent b9ce1ed06d
commit 23e23b697c
18 changed files with 319 additions and 250 deletions

View File

@@ -1,5 +1,11 @@
/** 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 );