00001 00028 #include "fw_download.h" 00029 #include "wl_fw.h" 00030 00031 int fw_download_init(void) 00032 { 00033 return 0; 00034 } 00035 00036 void fw_download_cb(void* ctx, uint8_t** buf, uint32_t* len) 00037 { 00038 *buf = (uint8_t*) fw_buf; 00039 *len = (uint32_t) fw_len; 00040 } 00041