/**
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <stdio.h>
#include "pico/stdlib.h"
#include "pico/util/queue.h"
#include "pico/multicore.h"
#define FLAG_VALUE 123
typedef struct
{
int32_t (*func)(int32_t);
int32_t data;
} queue_entry_t;
queue_t call_queue;
queue_t results_queue;
void core1_entry() {
while (1) {
// Function pointer is passed to us via the queue_entry_t which also
// contains the function parameter.
// We provide an int32_t return value by simply pushing it back on the
// return queue which also indicates the result is ready.
queue_entry_t entry;
queue_remove_blocking(&call_queue, &entry);
int32_t result = entry.func(entry.data);
queue_add_blocking(&results_queue, &result);
}
}
int32_t factorial(int32_t n) {
int32_t f = 1;
for (int i = 2; i <= n; i++) {
f *= i;
}
return f;
}
int32_t fibonacci(int32_t n) {
if (n == 0) return 0;
if (n == 1) return 1;
int n1 = 0, n2 = 1, n3 = 0;
for (int i = 2; i <= n; i++) {
n3 = n1 + n2;
n1 = n2;
n2 = n3;
}
return n3;
}
#define TEST_NUM 10
int main() {
int32_t res;
stdio_init_all();
printf("Hello, multicore_runner using queues!\n");
// This example dispatches arbitrary functions to run on the second core
// To do this we run a dispatcher on the second core that accepts a function
// pointer and runs it. The data is passed over using the queue library from
// pico_utils
queue_init(&call_queue, sizeof(queue_entry_t), 2);
queue_init(&results_queue, sizeof(int32_t), 2);
multicore_launch_core1(core1_entry);
queue_entry_t entry = {factorial, TEST_NUM};
queue_add_blocking(&call_queue, &entry);
// We could now do a load of stuff on core 0 and get our result later
queue_remove_blocking(&results_queue, &res);
printf("Factorial %d is %d\n", TEST_NUM, res);
// Now try a different function
entry.func = fibonacci;
queue_add_blocking(&call_queue, &entry);
queue_remove_blocking(&results_queue, &res);
printf("Fibonacci %d is %d\n", TEST_NUM, res);
return 0;
}
This firmware image was imported from the pico-examples repository.
Copyright 2020 (c) 2020 Raspberry Pi (Trading) Ltd.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following
disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Before flashing, please put your Raspberry Pi Pico™ chip in the bootloader mode by keeping the BOOTSEL button pressed while powering up. For more information, please take a look at your board's datasheet.
If you find yourself unable to perform any of the operations, please navigate to the troubleshooting, and the Q&A pages.
The "π Check installed version" button doesn't send your firmware to the Internet. Instead, its algorithm compares the firmware builds' UF2 block hashes safely in your web browser.
The installed firmware version is compared only with all the different versions (builds) of the same project.
Exercise caution while exploring projects of unknown origin. In principle, anyone can publish their firmware here. Projects endorsed by this website will always come with the "submitted by flashmypico" text written just below their title.
A part of your chip's unique RANDID number may be sent to the server if this project's author has enabled the installed version tracking feature. This number will only be logged if the project's author already has it, and has used it to enable this feature for this particular board.