mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 09:37:21 +02:00
19 lines
363 B
C
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
|