Files
firmware/components/constants/include/constants/udp.h
Johnathon Slightham 53d3c775ba UDP implementation
2026-05-19 23:13:24 -04:00

19 lines
363 B
C

//
// Created by Johnathon Slightham on 2025-12-21.
//
#ifndef UDP_H
#define UDP_H
#define SLEEP_AFTER_FAIL_MS 5000
#define NO_CLIENT_SLEEP_MS 400
#define RECV_MCAST "239.1.1.1"
#define RECV_PORT 3101
#define SEND_MCAST "239.1.1.2"
#define SEND_PORT 3100
#endif //UDP_H