Reading three signals on Simulink sent serially to arduino

I am sending three signals from one arduino mega to another using xbees. On the receiving end I am using these signals in a Simulink code to control servo motors. Currently it is set up to read from analog pins without the wireless set up. With the wireless technology the signals are all being sent and received through one serial port. I believe I would need to change the inputs in Simulink to a serial receive block instead of an analog pin block. The problem is the documentation for the serial receive block says you can not assign more than one serial receive block to the same serial port. If anyone has a solution to this it would be greatly appreciated!

Receiving arduino code:

 int received1; 
 int received2;
 int received3; 
void setup() {

Serial.begin(9600); 
 }
void loop() {

 if(Serial.available() )
 {
received1, received2, received3 = Serial.read();

 }
 }

What 3 signals are you sending ? How do you differentiate signal1 from signal2 from signal3 given they are all coming in over the same link and serial port ? Can you post the servo “control” code so we might have a clue as to what you’re trying to do ?