4
4
#include <stdint.h>
5
5
6
6
static const uint8_t LED_BUILTIN = 47 ;
7
- #define BUILTIN_LED LED_BUILTIN // backward compatibility
7
+ #define BUILTIN_LED LED_BUILTIN // backward compatibility
8
8
#define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
9
9
10
10
static const uint8_t TX = 43 ;
@@ -14,21 +14,21 @@ static const uint8_t SDA = 8;
14
14
static const uint8_t SCL = 9 ;
15
15
16
16
//I2S for onboard MAX98357A only
17
- static const uint8_t I2S_BCLK = 5 ;
17
+ static const uint8_t I2S_BCLK = 5 ;
18
18
static const uint8_t I2S_LRCLK = 6 ;
19
- static const uint8_t I2S_DOUT = 7 ;
19
+ static const uint8_t I2S_DOUT = 7 ;
20
20
21
21
// SPI for onboard microSD only
22
- static const uint8_t SS = 10 ;
23
- static const uint8_t MOSI = 11 ;
24
- static const uint8_t MISO = 13 ;
25
- static const uint8_t SCK = 12 ;
22
+ static const uint8_t SS = 10 ;
23
+ static const uint8_t MOSI = 11 ;
24
+ static const uint8_t MISO = 13 ;
25
+ static const uint8_t SCK = 12 ;
26
26
27
27
// SPI2 for public usage
28
- static const uint8_t SS2 = 38 ;
29
- static const uint8_t MOSI2 = 39 ;
30
- static const uint8_t MISO2 = 41 ;
31
- static const uint8_t SCK2 = 40 ;
28
+ static const uint8_t SS2 = 38 ;
29
+ static const uint8_t MOSI2 = 39 ;
30
+ static const uint8_t MISO2 = 41 ;
31
+ static const uint8_t SCK2 = 40 ;
32
32
33
33
static const uint8_t A0 = 1 ;
34
34
static const uint8_t A1 = 2 ;
@@ -52,6 +52,6 @@ static const uint8_t T9 = 9;
52
52
static const uint8_t T10 = 10 ;
53
53
static const uint8_t T14 = 14 ;
54
54
55
- #define PIN_DAC_MUTE 47 // only if solder bridge "DAC_MUTE" is closed
55
+ #define PIN_DAC_MUTE 47 // only if solder bridge "DAC_MUTE" is closed
56
56
57
57
#endif /* Pins_Arduino_h */
0 commit comments