eth_worker_dhcp.c 154 B

12345678
  1. #include "eth_worker.h"
  2. #include <furi_hal.h>
  3. #include <dhcp.h>
  4. void dhcp_timer_callback(void* context) {
  5. UNUSED(context);
  6. DHCP_time_handler();
  7. }