FastLED 3.9.15
Loading...
Searching...
No Matches

◆ push() [3/3]

template<fl::size DescriptorCount, fl::size ArenaSize>
bool fl::AsyncLogQueue< DescriptorCount, ArenaSize >::push ( const fl::string & msg)

Push a message from fl::string (ISR-safe)

Definition at line 36 of file async_log_queue.cpp.hpp.

36 {
37 fl::size len = msg.length();
38 if (len > MAX_MESSAGE_LENGTH) {
40 }
41 return push(msg.c_str(), static_cast<fl::u16>(len));
42}
bool push(const fl::string &msg)
Push a message from fl::string (ISR-safe)
High-performance SPSC async log queue.