Skip to content

ESP32-S3-Wroom-1 hangs on Init() #169

@macgyver2089

Description

@macgyver2089

ESP32-S3-Wroom-1 is hanging on init()

Pasting what I believe are the important parts of the code

#define SCK_PIN 36
#define SS_PIN 39
#define MISO_PIN 37
#define MOSI_PIN 35
#define gdo0 3

…

void setup(){

…

 Serial.begin(921600);
    while(!Serial);
Serial.println("starting this thing up");
    // wait(100);
    Serial.println(MISO_PIN);
    if (ELECHOUSE_cc1101.getCC1101()){         // Check the CC1101 Spi connection.
    Serial.println("Connection OK");
    Serial.println(gdo0);
    }else{
    Serial.println("Connection Error");
    }

      Serial.println("Init Start");
    ELECHOUSE_cc1101.setSpiPin(SCK_PIN, MISO_PIN, MOSI_PIN, SS_PIN);

    ELECHOUSE_cc1101.Init();  
        Serial.println("INIT complete");
             // must be set to initialize the cc1101!
    ELECHOUSE_cc1101.setGDO0(gdo0);       //

Serial Print at the bottom is

15:19:32.424 -> 37
15:19:32.424 -> Connection OK
15:19:32.424 -> 3
15:19:32.424 -> Init Start

As you can see Init complete never prints. I could have something wrong but i have also used the VSPI pins as well as
// #define SCK_PIN 12
// #define SS_PIN 10
// #define MISO_PIN 13
// #define MOSI_PIN 11

And code stops in the same place

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions