Other Parts Discussed in Thread: SIMPLICITI,
I've been playing with the rfWsn examples, and decided I would need a longer address for my application.
I came across an API function and used it to expand the size of the address:
EasyLink_setCtrl(EasyLink_Ctrl_AddSize, 4);
As well as this, I also made changes to some other parts of the project in order to accommodate the longer address. I followed this as a rough guide of what needed changed: 
I discovered soon after, however, that the sent/received packet arrays also need changes to make room for the longer addresses. I did this in both the Node and concentrator applications.
/* Save packet */
latestRxPacket.header.sourceAddress = (rxPacket->payload[0] << 24) | // Changed to make room for longer address
(rxPacket->payload[1] << 16) |
(rxPacket->payload[2] << 8) |
rxPacket->payload[3];
latestRxPacket.header.packetType = rxPacket->payload[4];
latestRxPacket.dmSensorPacket.adcValue = (rxPacket->payload[5] << 8) |
rxPacket->payload[6];
latestRxPacket.dmSensorPacket.batt = (rxPacket->payload[7] << 8) |
rxPacket->payload[8];
latestRxPacket.dmSensorPacket.time100MiliSec = (rxPacket->payload[9] << 24) |
(rxPacket->payload[10] << 16) |
(rxPacket->payload[11] << 8) |
rxPacket->payload[12];
latestRxPacket.dmSensorPacket.button = rxPacket->payload[13];
/* Signal packet received */
Event_post(radioOperationEventHandle, RADIO_EVENT_VALID_PACKET_RECEIVED);
After implementing this I'm observing the Concentrator toggling it's "RADIO_EVENT_VALID_PACKET_RECEIVED" indication LED every 3 times the Node sends 1 packet. This has caused it to crash a few times too but I don't know why or what made this happen. Why Might this be happening?
I've attached the project files which should help. I've been running it on two CC1310 launchpads. I would really appreciate if someone could test this and offer me a little guidance here.
Edit: To test the examples you'll need to comment out the EasyLink Address filtering on the collector side, since right now it's set up for my specific LaunchPads (Address is generated from the IEEE address).