1. F

    Latency between data frames in wifi communication

    I record a timestamp everytime I receive a data frame in udp between an ESP8266ex and an ESP32 such that : if (packetSize) { frame_size = UDP.read(buffer_t, 30); if (frame_size > 0) { timestamp_receive = micros(); data_adc_serial[10] = timestamp_receive; for (int i = 0...
Top