Skip to content

Commit

Permalink
replay: increase buffer size
Browse files Browse the repository at this point in the history
required to parse larger topics
  • Loading branch information
bresch authored and dagar committed Nov 22, 2023
1 parent 6320ca6 commit e568b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/replay/Replay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ Replay::readFormat(std::ifstream &file, uint16_t msg_size)
string Replay::getOrbFields(const orb_metadata *meta)
{
char format[3000];
char buffer[512];
char buffer[2048];
uORB::MessageFormatReader format_reader(buffer, sizeof(buffer));

if (!format_reader.readUntilFormat(meta->o_id)) {
Expand Down

0 comments on commit e568b4a

Please sign in to comment.