add documentations link
This commit is contained in:
parent
259fb24ff9
commit
0e0a044c66
6
Makefile
6
Makefile
@ -18,15 +18,15 @@ install:
|
|||||||
info:
|
info:
|
||||||
@$(PICOTOOL) info -a
|
@$(PICOTOOL) info -a
|
||||||
|
|
||||||
project:
|
|
||||||
@./scripts/scaffold_project.bash $(name) $(SDK_VERSION)
|
|
||||||
|
|
||||||
.check-name:
|
.check-name:
|
||||||
ifeq ($(strip $(name)), "")
|
ifeq ($(strip $(name)), "")
|
||||||
@echo "error: project name must be set, ex: name=<project_name>"
|
@echo "error: project name must be set, ex: name=<project_name>"
|
||||||
@false
|
@false
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
project: .check-name
|
||||||
|
@./scripts/scaffold_project.bash $(name) $(SDK_VERSION)
|
||||||
|
|
||||||
ifeq ($(shell test -d $(name) && echo "ok"),)
|
ifeq ($(shell test -d $(name) && echo "ok"),)
|
||||||
@echo "error: project $(name) does not exist"
|
@echo "error: project $(name) does not exist"
|
||||||
@false
|
@false
|
||||||
|
|||||||
@ -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).
|
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.
|
**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
|
## 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**.
|
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**.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user