pico_pll_config

Crates.iopico_pll_config
lib.rspico_pll_config
version0.1.3
created_at2025-02-08 23:34:36.020196+00
updated_at2025-02-09 01:06:34.138481+00
descriptionPLL configuration macro for the Raspberry Pi Pico
homepagehttps://github.com/kromych/pico-pll-config
repositoryhttps://github.com/kromych/pico-pll-config
max_upload_size
id1548495
size29,190
(kromych)

documentation

README

A procedural macro for generating PLL configuration parameters.

The implementation is based on the Python script provided in the RP SDK: $PICO_SDK/src/rp2_common/hardware_clocks/scripts/vcocalc.py

The algorithm searches over an expanded parameter space (REFDIV, FBDIV, PD1, and PD2) using hard-coded defaults (e.g. a 12 MHz input, minimum reference frequency 5 MHz, VCO limits between 750 and 1600 MHz) and selects the configuration with the smallest error relative to the requested output frequency (converted from kHz to MHz).

The pll_config proc macro takes a frequency in kilohertz as a literal and expands to an expression of type Option<PLLConfig>:

use pico_pll_config::pll_config;
use rp2040_hal::pll::PLLConfig;

// 480000 represents 480 MHz (i.e. 480000 kHz)
let config = pll_config!(480000);
const CONFIG: PLLConfig = pll_config!(480000).unwrap();
Commit count: 5

cargo fmt