From 0e0a044c66b7c21274c1d6b2ea3b30d5e33e733b Mon Sep 17 00:00:00 2001 From: rmanach Date: Fri, 21 Feb 2025 12:13:23 +0100 Subject: [PATCH] add documentations link --- Makefile | 6 +++--- README.md | 4 +++- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f20c37f..48f0647 100644 --- a/Makefile +++ b/Makefile @@ -18,15 +18,15 @@ install: info: @$(PICOTOOL) info -a -project: - @./scripts/scaffold_project.bash $(name) $(SDK_VERSION) - .check-name: ifeq ($(strip $(name)), "") @echo "error: project name must be set, ex: name=" @false endif +project: .check-name + @./scripts/scaffold_project.bash $(name) $(SDK_VERSION) + ifeq ($(shell test -d $(name) && echo "ok"),) @echo "error: project $(name) does not exist" @false diff --git a/README.md b/README.md index 3ae6ba8..734857d 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,12 @@ A repository to store Rasbperry Pico C sample projects. It uses the **Freenove Super Starter Kit For Raspberry Pi Pico**, the tutorial and ressources can be found [here](https://github.com/Freenove/Freenove_Super_Starter_Kit_for_Raspberry_Pi_Pico). -The official documentation to start with the Raspberry Pi Pico: [Getting started with Raspberry Pi Pico-series](https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf). Some examples can be found here: [github.com/raspberrypi/pico-examples](https://github.com/raspberrypi/pico-examples). +The official documentation to start with the Raspberry Pi Pico: [Getting started with Raspberry Pi Pico-series](https://datasheets.raspberrypi.com/pico/getting-started-with-pico.pdf) and the [C SDK documentation](https://datasheets.raspberrypi.com/pico/raspberry-pi-pico-c-sdk.pdf). Some examples can be found here: [github.com/raspberrypi/pico-examples](https://github.com/raspberrypi/pico-examples). **NOTE**: the configuration defined in `config/FreeRTOSConfig.h` is specific for the **Raspberry Pi Pico 2 RP2350**. Feel free to update it for your Pico spec. +The FreeRTOS documentation can found here: [FreeRTOS book](https://freertos.org/Documentation/02-Kernel/07-Books-and-manual/01-RTOS_book). + ## Installation In order to build and deploy the binary in the Raspberry Pi Pico, you have to install the **Pico C SDK**, **Picotool** & **FreeRTOS Raspberry Kernel**.