When I try to open a bearer connection to a private APN in WIP I’m seeing “CME ERROR: 134”. The WIP OpenAT IP connectivity development guide says this means:
134: Service option temporarily out of order (#26, #34, #38)
However this doesn’t really help me understand why WIP cannot establish the bearer connection.
If I try to connect to the private APN manually with AT+WPPP (to set authentication) and AT!SCACT=1,1 it works absolutely fine. If I try defining an alternative (public) APN then WIP is able to connect successfully. I’ve tried several development boards and different SIM cards but the problem can be reproduced consistently.
It seems there is an incompatibility between my private APN and the WIP library, although I cannot think of any reason why there would be.
Can anyone give me any pointers on how to troubleshoot beyond the generic “Service option temporarily out of order” to really understand what’s causing the failure?
If you require authentication for your APN, are you using the wip_bearerSetOpts() function to set the WIP_BOPT_LOGIN and WIP_BOPT_PASSWORD parameters before calling wip_bearerStart()?
Also, does your code work with a SIM that attaches to a public APN? Or does it fail in the same manner as when you try to attach to your private APN?
So it appears I need to remove the username/password parameters from wip_bearerSetOpts() and instead set those values with +WPPP prior to bringing the bearer up?