Skip to content

Commit

Permalink
fix: Pulses are 16bits, requiring 4 characters plus the trailing NUL
Browse files Browse the repository at this point in the history
  • Loading branch information
obones committed Feb 21, 2023
1 parent 8407e9d commit b3e812b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RFLink/Plugins/Plugin_254.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ boolean Plugin_254(byte function, const char *string)
RFLink::sendRawPrint(RawSignal.Number); // print number of pulses
RFLink::sendRawPrint(F(";Pulses(uSec)=")); // print pulse durations
// ----------------------------------
char dbuffer[3];
char dbuffer[5];

for (i = 1; i < RawSignal.Number + 1; i++)
{
Expand Down

0 comments on commit b3e812b

Please sign in to comment.