Sim800l redial issue

Hi there
I'm making sim800l project with Arduino. Got problems with redialling. There this AT command for sim800l for redialling, but how to explain Arduino to redial infinite times and wait for prev redial call to finish? 'Delay' is too simple and time for one redial can differents. Thanks!

'Delay' is too simple and time for one redial can differents.

YOU have to figure out, in the complete absence of any code, when a redial is complete. Don't start another one until that happens, whatever that is.

PaulS:
YOU have to figure out, in the complete absence of any code, when a redial is complete. Don't start another one until that happens, whatever that is.

That why I'm here - to figure it out. Code here not needed, what I need is just command for Arduino wait till redial complete, if there any such, even...

Code here not needed

If you don't need code (help), why did you post in this section of the forum?

Couple or one command not whole code. I don't need code, I need just simple command, which will help device understand that need to wait prev command to complete. Usually there is one, but I can't find it in sim800l at+ commands list. That why I asking, if somebody know it. That is most minor part of whole code that will be... Thank you for understanding.

I need just simple command, which will help device understand that need to wait prev command to complete.

The "device" does NOT wait. There is no command for that.

You have to write the code to not send more data until the previous command has completed. How you decide that the previous command has completed is up to you to determine, because you still haven't posted any code.