mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-09 10:07:21 +02:00
19 lines
342 B
C
19 lines
342 B
C
//
|
|
// Created by Johnathon Slightham on 2025-06-01.
|
|
//
|
|
|
|
#ifndef TCP_H
|
|
#define TCP_H
|
|
|
|
#define TCP_DEFAULT_LISTEN_BACKLOG 1
|
|
|
|
#define KEEPALIVE_IDLE 7200
|
|
#define KEEPALIVE_INTERVAL 75
|
|
#define KEEPALIVE_COUNT 9
|
|
|
|
#define SLEEP_AFTER_FAIL_MS 5000
|
|
|
|
#define TCP_PORT 3001
|
|
|
|
#endif //TCP_H
|