There is a set of extremely simple coding rules hidden in the RP series microcontroller models of Raspberry Pi. As long as you remember these 5 positions, you can instantly understand the hardware parameters without checking the datasheet!
First, let's look at the overall structure: RP + 4-digit number
All Raspberry Pi MCU models follow the RPXXXX format:
RP: Abbreviation for Raspberry Pi, enabling instant brand recognition
The last four digits respectively correspond to the number of cores, core type, RAM capacity, and Flash capacity four core hardware parameters
Quick Memory Tips
Number of cores: Currently all RP series products are dual-core, so the first digit is always 2
Kernel Type: The numbers correspond to the Cortex-M series, where 0 = M0+ and 3 = M33; new kernel models will be assigned new corresponding numbers
RAM Calculation: Directly apply the formula RAM = 16kB × 2^encoding value, e. g., encoding 4 → 256KB, encoding 5 → 512KB
Flash Identification: As long as the 4th bit is 0, it indicates that this chip has no onboard Flash and requires external storage.
To sum up: Understand the model at a glance
RP2040: Dual-core Cortex-M0+, 256KB RAM, no onboard Flash
RP2350: Dual-core Cortex-M33,512KB RAM, no onboard Flash
Next time you come across models starting with RP, you can directly figure out their core hardware configuration without even consulting the manual!