main.c: use ESP_LINK_VERSION in ready message

pull/95/head
susisstrolch 9 years ago
parent a77f032bb3
commit f4ef8723f3
  1. 2
      esp-link/main.c

@ -174,7 +174,7 @@ void user_init(void) {
uint32_t fid = spi_flash_get_id(); uint32_t fid = spi_flash_get_id();
NOTICE("Flash map %s, manuf 0x%02lX chip 0x%04lX", flash_maps[system_get_flash_size_map()], NOTICE("Flash map %s, manuf 0x%02lX chip 0x%04lX", flash_maps[system_get_flash_size_map()],
fid & 0xff, (fid&0xff00)|((fid>>16)&0xff)); fid & 0xff, (fid&0xff00)|((fid>>16)&0xff));
NOTICE("** esp-link ready"); NOTICE("** %s: ready, heap=%ld", esp_link_version, (unsigned long)system_get_free_heap_size());
cgiServicesSNTPInit(); cgiServicesSNTPInit();

Loading…
Cancel
Save