Skip to content

Commit ebb48dd

Browse files
committed
NRF52 examples: Buffer should be even #
1 parent 8e2bac6 commit ebb48dd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/Platforms/NRF52/NRF52_Radio/NRF52_PWM_I2S_RadioRX/NRF52_PWM_I2S_RadioRX.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ AutoAnalog aaAudio;
1010
nrf_to_nrf radio;
1111

1212
uint8_t address[][6] = { "1Node", "2Node" };
13-
#define BUFFER_SIZE 125
13+
#define BUFFER_SIZE 124
1414
#define USE_I2S 0 // Change to 1 to enable I2S output instead of PWM
1515

1616
void setup() {

examples/Platforms/NRF52/NRF52_Radio/NRF52_SD_I2S_RadioTX/NRF52_SD_I2S_RadioTX.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ AutoAnalog aaAudio;
1212
nrf_to_nrf radio;
1313

1414
uint8_t address[][6] = { "1Node", "2Node" };
15-
#define BUFFER_SIZE 125
15+
#define BUFFER_SIZE 124
1616
#define USE_I2S 1 // Change to 0 to enable PWM output instead of I2S
1717

1818
/*********************************************************/

0 commit comments

Comments
 (0)