Open
Description
I was having some trouble getting some multicore code running. So I added some serial uart feedback to see what was happening. It appeared as if Core1 wouldn't start it's loop code without a soft reset immediately after bootup. I was able to replicate this with a clean project and minimal code. This is the 2.0 SDK in VSCode and the SDK plugin. This is also just a Pico1. I have not tried it on any of my PicoW.
If the 5ms sleep is commented out or removed, core1 will never get to looping. It will say "Core1 up" but never says "Hello from core1".
With the sleep and reset kept in, core1 seems to start just fine.
multicore_test.c
#include <stdio.h>
#include "pico/stdlib.h"
#include "pico/multicore.h"
void core1_entry () {
printf("Core1 Up\n\r");
while(true) {
printf("Hello from core1!\n");
sleep_ms(1000);
}
}
int main() {
stdio_init_all();
sleep_ms(5);
multicore_launch_core1(core1_entry);
while (true) {
sleep_ms(10000);
}
}
CMakeLists.txt (was generated by the plugin, except for "pico_multicore" which I added. )
# Generated Cmake Pico project file
cmake_minimum_required(VERSION 3.13)
set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# Initialise pico_sdk from installed location
# (note this can come from environment, CMake cache etc)
# == DO NEVER EDIT THE NEXT LINES for Raspberry Pi Pico VS Code Extension to work ==
if(WIN32)
set(USERHOME $ENV{USERPROFILE})
else()
set(USERHOME $ENV{HOME})
endif()
set(sdkVersion 2.0.0)
set(toolchainVersion 13_2_Rel1)
set(picotoolVersion 2.0.0)
set(picoVscode ${USERHOME}/.pico-sdk/cmake/pico-vscode.cmake)
if (EXISTS ${picoVscode})
include(${picoVscode})
endif()
# ====================================================================================
set(PICO_BOARD pico CACHE STRING "Board type")
# Pull in Raspberry Pi Pico SDK (must be before project)
include(pico_sdk_import.cmake)
project(multicore_test C CXX ASM)
# Initialise the Raspberry Pi Pico SDK
pico_sdk_init()
# Add executable. Default name is the project name, version 0.1
add_executable(multicore_test multicore_test.c )
pico_set_program_name(multicore_test "multicore_test")
pico_set_program_version(multicore_test "0.1")
# Modify the below lines to enable/disable output over UART/USB
pico_enable_stdio_uart(multicore_test 1)
pico_enable_stdio_usb(multicore_test 0)
# Add the standard library to the build
target_link_libraries(multicore_test
pico_stdlib
pico_multicore)
# Add the standard include files to the build
target_include_directories(multicore_test PRIVATE
${CMAKE_CURRENT_LIST_DIR}
${CMAKE_CURRENT_LIST_DIR}/.. # for our common lwipopts or any other standard includes, if required
)
pico_add_extra_outputs(multicore_test)
Metadata
Metadata
Assignees
Labels
No labels