Skip to content

Commit

Permalink
NRF52 examples: Buffer should be even #
Browse files Browse the repository at this point in the history
  • Loading branch information
TMRh20 committed Oct 20, 2024
1 parent 8e2bac6 commit ebb48dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AutoAnalog aaAudio;
nrf_to_nrf radio;

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

void setup() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ AutoAnalog aaAudio;
nrf_to_nrf radio;

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

/*********************************************************/
Expand Down

0 comments on commit ebb48dd

Please sign in to comment.