@rafitc99
Remember one thing...
For all you guys who work with software serial or hardware serial...
First and most important thing is while working with software serial... In loop remember that softwareSerial never generate interrupt while it receives any data as you can say triggers if condition... When it's turn comes it checks otherwise if condition will bypass so your target or trigger cannot be achieved....
For hardware serial always prefer to use interrupt method to get data for each character you can receive simultaneously loops runs any function or not... It's surely you can get all the data from serial... Although mcu runs any kinds of task it leaves and goes on serial interrupt...
So it's my experience and suggestions to all you guys to remeber this thing...
If you all.come across the situations that there is no provision to use hardware serial and you need to use softwareSerial then remember that your loop must have intelligence to get the data from softwareserial by if condition which does not effect other functions in loop.. kindly for RF functions which must be used in loop that can't be avoided by any delay functionality... So Millis can be helpful or timer interrupt can help you...
Thanks...