mirror of
https://github.com/BotChain-Robots/firmware.git
synced 2026-07-08 17:47:21 +02:00
12 lines
324 B
C++
12 lines
324 B
C++
//
|
|
// Created by Johnathon Slightham on 2025-06-30.
|
|
//
|
|
|
|
#include "TextControlMessageBuilder.h"
|
|
|
|
namespace Flatbuffers {
|
|
const Messaging::TextControlMessage* TextControlMessageBuilder::parse_text_control_message(const uint8_t* buffer) {
|
|
return flatbuffers::GetRoot<Messaging::TextControlMessage>(buffer);
|
|
}
|
|
}
|