been testing different settings, it initializes but will not connect nor can i see it as a device.
outputting some debugging
rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3fff0030,len:4888
load:0x40078000,len:16516
load:0x40080400,len:4
load:0x40080404,len:3476
entry 0x400805b4
=== ESP32 Basic Test ===
Starting...
1. Initializing BLE...
2. Creating BLE Server...
3. Starting advertising...
Setup complete!
System running...
here is my code im uploading
#include <Arduino.h>
#include <BLEDevice.h>
#include <BLEServer.h>
const int LED_PIN = 2;
void setup() {
Serial.begin(115200);
delay(1000); // Give serial time to initialize
pinMode(LED_PIN, OUTPUT);
// Flash LED to show we're starting
for(int i = 0; i < 3; i++) {
digitalWrite(LED_PIN, HIGH);
delay(100);
digitalWrite(LED_PIN, LOW);
delay(100);
}
Serial.println("\n=== ESP32 Basic Test ===");
Serial.println("Starting...");
// Try to initialize BLE
Serial.println("1. Initializing BLE...");
BLEDevice::init("ESP32_TEST");
delay(1000);
Serial.println("2. Creating BLE Server...");
BLEServer *pServer = BLEDevice::createServer();
delay(1000);
Serial.println("3. Starting advertising...");
BLEAdvertising *pAdvertising = pServer->getAdvertising();
pAdvertising->start();
Serial.println("Setup complete!");
}
void loop() {
// Simple LED blink to show we're running
digitalWrite(LED_PIN, HIGH);
delay(500);
digitalWrite(LED_PIN, LOW);
delay(500);
Serial.println("System running...");
}
actual board
AITRIP 2 Sets ESP-WROOM-32 ESP32 ESP-32S Type-C USB Development Board Type-C USB CH340C WiFi+Bluetooth Ultra-Low Power Dual Core ESP32-DevKitC-32 ESP-WROOM-32 Expansion Board for Arduino
I have 2 and tried both same issue, any advice or reccomndation on a better board, i would like a 8 mb of ram as i want to store wav files directly


