mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
21 lines
425 B
C
21 lines
425 B
C
//
|
|
// Created by Johnathon Slightham on 2025-07-06.
|
|
//
|
|
|
|
#ifndef APP_COMMS_H
|
|
#define APP_COMMS_H
|
|
|
|
#define RPC_CALL_QUEUE_SIZE 10
|
|
#define RPC_CALL_ENQUEUE_TIMEOUT_MS 250
|
|
#define RPC_CALL_DEQUEUE_TIMEOUT_MS 3000
|
|
#define RPC_CALL_THREAD_POOL_SIZE 3
|
|
#define RPC_CALL_PARAMETERS_MAX_SIZE 1152
|
|
|
|
#define RX_QUEUE_SIZE 4
|
|
#define MAX_RX_BUFFER_SIZE 1152
|
|
|
|
#define MPI_QUEUE_SIZE 4
|
|
#define MAX_MPI_BUFFER_SIZE 1152
|
|
|
|
#endif //APP_COMMS_H
|