1
0
Fork 0

standard timing intervals are constant

This commit is contained in:
Kevin Matz 2022-12-09 11:46:18 -05:00
parent 7f8e9ce4ac
commit e6146e9efe
1 changed files with 2 additions and 2 deletions

View File

@ -67,7 +67,7 @@ private:
/// > \cite DMX Table 6 - Timing Diagram Values - output of transmitting UART
/// >
/// > Minimum Update Time for 513 slots : 22.7ms = 22700µs
std::chrono::microseconds minimum_update_time;
const std::chrono::microseconds minimum_update_time;
/// > \cite sACN 6.6.2 Null START Code Transmission Requirements in E1.31
/// > Data Packets
@ -79,7 +79,7 @@ private:
/// > 2. Thereafter, a single keep-alive packet shall be transmitted at
/// > intervals of between 800mS and 1000mS.
std::chrono::milliseconds keep_alive_interval;
const std::chrono::milliseconds keep_alive_interval;
bool enable_;
mutable std::shared_mutex mtx_control;