rp2040-linker 0.1.2

Configuration automatique du linker et du boot (BOOT2) pour RP2040 (Pico 1) en Rust. Infrastructure pure no_std.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright (C) 2026 Jorge Andre Castro
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 or the License, or
// (at your option) any later version.

#![no_std]
#![forbid(unsafe_code)]

// rp2040-linker
// Cette crate injecte automatiquement la configuration mémoire pour le Raspberry Pi Pico (RP2040).
// Usage: use rp2040_linker as _;  n'oublieez pas d'inclure dans votre main.rs pour que ca fonctionne .