Chat freely about anything...

User avatar
By lethe
#40977 You should check espressif's flash tool: http://bbs.espressif.com/viewtopic.php?f=57&t=433
At first glance, I'd say this is the part you're looking for:
Code: Select all    #download state
    ESP_DL_OK = 0x0
    ESP_DL_IDLE = 0x1
    ESP_DL_CONNECT_ERROR = 0x2
    ESP_DL_SYNC = 0x3
    ESP_DL_SYNC_ERROR = 0x4
    ESP_DL_ERASE = 0x5
    ESP_DL_ERASE_ERROR = 0x6
    ESP_DL_DOWNLOADING = 0x7
    ESP_DL_DOWNLOAD_ERROR = 0x8
    ESP_DL_FAIL = 0x9
    ESP_DL_FINISH = 0xA
    ESP_DL_STOP = 0xB


Looks like 0x07 is a status message indicating the download is in progress, not an error.