Skip to content

Commit 4a5e702

Browse files
authored
Merge branch 'master' into master
2 parents 310857a + 7b29bac commit 4a5e702

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Diff for: libraries/WiFi/src/WiFiSTA.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ String WiFiSTAClass::psk() const
370370
*/
371371
uint8_t* WiFiSTAClass::BSSID(uint8_t* buff)
372372
{
373-
return STA.BSSID();
373+
return STA.BSSID(buff);
374374
}
375375

376376
/**

Diff for: variants/esp32s3_powerfeather/pins_arduino.h

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ static const uint8_t SCK = 39;
2828
static const uint8_t SCL = 36;
2929
static const uint8_t SDA = 35;
3030

31+
#define WIRE1_PIN_DEFINED 1
32+
static const uint8_t SCL1 = 48;
33+
static const uint8_t SDA1 = 47;
34+
3135
static const uint8_t A0 = 10;
3236
static const uint8_t A1 = 9;
3337
static const uint8_t A2 = 8;

0 commit comments

Comments
 (0)