I try to forward an incomming call via this AT-Command:
AT+CCFC=1,1,"+4930xxxxxxxx",145;
But it isn't working (on the M10 Quectel GSM Shield from Arduino).
My second approach is doing this with an USSD-Line wrapped in a AT-Command like this:
AT+CUSD=1,"**21*+4930xxxxxxxx#",15
but I also receive an error. Anyone know what's wrong?
UPDATE: I found out that there its necessary to choose mode "3" at the 2nd position. That means that the following telephonenumber is going to be registred. Like so:
AT+CCFC=1,3,"+4930xxxxxxxx",145,1,1
Unfortunately I can't save the current incomming number, before doing the forwarding process. After setting up the callforward-AT-Command the call goes directly to the forwarded number. So it seems that I have no access to the new telephone number. Any workaround for this?