Search found 2 matches

by Aybood
Wed Jun 19, 2019 6:45 am
Forum: ESP-IDF
Topic: Write many values to NVM
Replies: 0
Views: 1833

Write many values to NVM

Hi,
I want to know if I have to write different values in nvm, which approach is better?
1) Open nvm, write, commit, then close for each value
2) Open the nvm, write all the values then commit and close the nvm?

Thanks
by Aybood
Thu Jun 13, 2019 8:27 am
Forum: ESP-IDF
Topic: How to change DHCP base IP address
Replies: 0
Views: 1917

How to change DHCP base IP address

Hi, I wanted to know how to change the dhcp base ip in AP mode, i found void dhcps_start(struct netif *netif, ip4_addr_t ip) in dhcpserver.c, but i don't know what should i pass as netif parameter, it is a very big struct. Does anyone know how to change the dhcp server base ip address in runtime? Th...