You are reading a single comment by @markopraakli and its replies. Click here to read the full conversation.
  • Hello
    Is it possible to attach both corest to Espruino software? ESP32 has 2 cores. Core 0 with Task1 and Core 1 with Task2.
    Perhaps is possible to attach another Core via C++

    E.compiledC("xTaskCreatePinnedToCore(
                        Task2code,   /* Task function. */
                        "Task2",     /* name of task. */
                        10000,       /* Stack size of task */
                        NULL,        /* parameter of the task */
                        1,           /* priority of the task */
                        &Task2,      /* Task handle to keep track of created task */
                        1);");
    

    Thanks!

About