How multi-module setups work in V3.0.0
masterIn V3.0.0, the library moved to a fully object-oriented architecture. Instead of using global configuration functions like setModul(), addSpiPin(), or addGDO(), you should simply instantiate multiple SmartRC_CC1101 objects. This allows you to manage multiple CC1101 modules (e.g., for a Dual-Band Gateway) independently.
SmartRC_CC1101 radio1;
SmartRC_CC1101 radio2;