Skip to content

Commit 03f180c

Browse files
committed
Chirp headers should be in apostrophes
1 parent 0c97c9e commit 03f180c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/esp32.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
2121
----------------------------------------------------------------------------*/
2222
#include <driver/i2s.h>
23-
#include <chirp_connect.h>
2423

24+
#include "chirp_connect.h"
2525
#include "credentials.h"
2626

2727
#define I2SI_DATA 12 // I2S DATA IN on GPIO32
@@ -53,14 +53,14 @@ static chirp_connect_state_t currentState = CHIRP_CONNECT_STATE_NOT_CREATED;
5353
static volatile bool buttonPressed = false;
5454
static bool startTasks = false;
5555

56-
// Function definitions ---------------------------------------
56+
// Function declarations --------------------------------------
5757
void IRAM_ATTR handleInterrupt();
5858
void setupChirp();
5959
void chirpErrorHandler(chirp_connect_error_code_t code);
6060
void setupAudioInput(int sample_rate);
6161
void setupAudioOutput(int sample_rate);
6262

63-
// Function declarations --------------------------------------
63+
// Function definitions ---------------------------------------
6464
void
6565
onStateChangedCallback(void *connect, chirp_connect_state_t previous, chirp_connect_state_t current)
6666
{

0 commit comments

Comments
 (0)