recovery.c 628 B

1234567891011121314151617181920212223242526272829303132
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include "esp_app_format.h"
  4. const __attribute__((section(".rodata_desc"))) esp_app_desc_t esp_app_desc = {
  5. .magic_word = ESP_APP_DESC_MAGIC_WORD,
  6. .version = PROJECT_VER,
  7. .project_name = PROJECT_NAME,
  8. .idf_ver = IDF_VER,
  9. #ifdef CONFIG_BOOTLOADER_APP_SECURE_VERSION
  10. .secure_version = CONFIG_BOOTLOADER_APP_SECURE_VERSION,
  11. #else
  12. .secure_version = 0,
  13. #endif
  14. #ifdef CONFIG_APP_COMPILE_TIME_DATE
  15. .time = __TIME__,
  16. .date = __DATE__,
  17. #else
  18. .time = "",
  19. .date = "",
  20. #endif
  21. };
  22. int main(int argc, char **argv){
  23. return 1;
  24. }
  25. void register_squeezelite(){
  26. }