element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum bought a set of Pico 2
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • Replies 33 replies
  • Subscribers 660 subscribers
  • Views 2067 views
  • Users 0 members are here
  • pico
  • pico 2
  • pico_eurocard
Related

bought a set of Pico 2

Jan Cumps
Jan Cumps 3 months ago

I purchased 2 Raspberry Pico 2W. To try the RISCs.

image

The 3 things that I want to get going first:

  • White check mark debug session on 1 RISC with PicoProbe
  • White check mark FreeRTOS SMP running on the 2 RISCS
  • White check mark use 3 PIOs (I used the 3rd pio with the stepper motor design I made earlier)

image
customer action photo: Pico 2W on a pico-eurocard

image
customer action photo: Pico 2W runs 10 stepper motors on 3 PIOs

  • Sign in to reply
  • Cancel
  • Jan Cumps
    Jan Cumps 3 months ago in reply to Jan Cumps

    so it works when I build for the ARM cores on the Pico 2:

    image

    image

    image

    At least I know now that the debugger works, openocd works, and that the Pico 2 works.

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • Jan Cumps
    Jan Cumps 3 months ago in reply to BigG

    Fixed, thanks to BigG  and AI!

     have you debugged a Pico2 RISC program with a PICOPROBE / DEBUGPROBE? 

    image

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • BigG
    BigG 3 months ago in reply to dang74

    Thanks dang74 

    • Cancel
    • Vote Up +1 Vote Down
    • Sign in to reply
    • Cancel
  • Jan Cumps
    Jan Cumps 3 months ago in reply to shabaz

    I did a first little assembler test - code suggested by chatGPT: How to check if a RISCV core is used:

    bool is_riscv(void) {
      uint32_t misa;
    
      // Try to read RISC-V misa register
      // Only valid on RISC-V. Undefined on ARM.
      __asm__ volatile (
        "csrr %0, misa"
        : "=r"(misa)
        :
        : // No clobbers
      );
    
      // misa should have non-zero value if this is a RISC-V core
      return misa != 0;
    }
    Then tested it:
        if (is_riscv()) {
            uart_puts(UART_ID, "on riscv\n");
        }
    Result:
    image
    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Cancel
  • Jan Cumps
    Jan Cumps 3 months ago

    Some more progress. Goal 2 unlocked:

    FreeRTOS executing tasks on the two riscv cores:

    image

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • battlecoder
    battlecoder 3 months ago in reply to Jan Cumps

    Nice! I have a coiple of these boards but I never tried FreeRTOS in them, let alone multitasking.

    • Cancel
    • Vote Up 0 Vote Down
    • Sign in to reply
    • Cancel
  • Jan Cumps
    Jan Cumps 3 months ago in reply to battlecoder

    The nice part was that I didn't have to change code. Only the build file needed 2 changes (both managed by the VSCode Extension for Pico):

    set(toolchainVersion RISCV_RPI_2_0_0_5)
    set(PICO_BOARD pico2 CACHE STRING "Board type")

    VSCode project:
    pico2_risk_freertos.zip

    No FreeRTOS install needed. It will be fetched by the CMake script.
    If you want to change to the default led, set mainTASK_LED t PICO_DEFAULT_LED_PIN.

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
  • Jan Cumps
    Jan Cumps 3 months ago

    I ran out of pcb headers for these boards. I went a bit fancy :).

    image

    • Cancel
    • Vote Up +7 Vote Down
    • Sign in to reply
    • Cancel
  • misaz
    misaz 3 months ago in reply to Jan Cumps

    I also bought these on Aliexpress once, but they are pretty brittle. Plastic is absolutely not thermal resistant, so solder them with care and plating layer is not largest as well.

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Cancel
  • Jan Cumps
    Jan Cumps 3 months ago in reply to misaz

    I use a silver paint pen at the moment to mark particular boards or pins. Maybe I should invest in a set of different colours. And paint the trusted black headers.

    image

    • Cancel
    • Vote Up +2 Vote Down
    • Sign in to reply
    • Cancel
<>
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube