Cosa: An Object-Oriented Platform for Arduino programming

Hey Kowalski,
I'm having trouble getting the CC1101 transceivers to work, and am hoping that you can offer some assistance :). Here's my setup:

I have an UNO R3 running CosaWirelessReceiver and a Mega2560 running CosaWirelessSender.

I commented out the two NRF24 lines and uncommented the CC1101 lines in both programs as follows:

#include "Cosa/Wireless/Driver/CC1101.hh"
CC1101 rf(0xC05A, 0x01);

// #include "Cosa/Wireless/Driver/NRF24L01P.hh"
// NRF24L01P rf(0xC05A, 0x01);

Here is how I have the boards/chips wired up:

CC1101   UnoPin# MegaPin#
1:GND    GND     GND
2:3.3v   3.3v    3.3v
3:CE     9       48
4:CSN    10      53
5:SCK    13      52
6:MOSI   11      51
7:MISO   12      50
8:IRQ    2/EXT0  21/EXT0

I did happen to notice one discrepancy between the NRF24 and CC1101 code in that the NRF24 uses EXT4 on the Mega while CC1101 uses EXT0.

The programs upload and start fine, I just don't see any "traffic".

I'm using the transceivers right out of the box, assuming that the Cosa driver applies necessary any configuration parameters, correct? Can you offer any advice on debugging this issue?

Thanks!