Using ESPFS_POS in espFsInit in user_main.c

v0.9.0
Jindra Dolezy 10 years ago
parent a9f8d90d83
commit 6096ba30db
  1. 6
      user/user_main.c

@ -79,9 +79,9 @@ void user_init(void) {
stdoutInit(); stdoutInit();
ioInit(); ioInit();
// 0x40200000 is the base address for spi flash memory mapping, 0x12000 is the position // 0x40200000 is the base address for spi flash memory mapping, ESPFS_POS is the position
// where image is written in flash // where image is written in flash that is defined in Makefile.
espFsInit((void*)(0x40200000 + 0x12000)); espFsInit((void*)(0x40200000 + ESPFS_POS));
httpdInit(builtInUrls, 80); httpdInit(builtInUrls, 80);
os_printf("\nReady\n"); os_printf("\nReady\n");
} }

Loading…
Cancel
Save