MrBuddyCasino / ESP32_MP3_Decoder

A internet radio and bluetooth speaker project for the Espressif ESP32
774 stars 182 forks source link

implicit declaration of function 'ini_parse_stream' #40

Closed Wittyt closed 6 years ago

Wittyt commented 6 years ago

Hi Michael,

I am in the translation of the following error. _D:/path/to/ESP32_MP3/esp-idf-template/components/playlist/playlist.c: In function 'playlist_load_pls': D:/path/to/ESP32_MP3/esp-idf-template/components/playlist/playlist.c:146:15: error: implicit declaration of function 'ini_parse_stream' [-Werror=implicit-function-declaration] int res = ini_parse_stream(pls_ini_reader, &file_start_ptr, pls_ini_handler, playlist->entriesvec);

Is it because I am missing a library?

Thank you!

MrBuddyCasino commented 6 years ago

Try git submodule init && git submodule update

Wittyt commented 6 years ago

Now it can work, Thank you!