Tom van der Geer
Tom van der Geer
Ah! I was not aware that AT over SPI was an option too. But I researched it and found the “AT through HSPI” option. However it’s not showing up in...
@mnicex Are you using the hosted version of the F1 Webviewer or are you running the code from Master? I had Master running locally during FP1 but all I got...
We're running into a similar issue. In our case we're doing the following: ``` TelephoneNumber.parse("+96279nnnnnnn","DE").international_number "+49 9627 9nnnnnnn" ``` (obfuscated last 7 digits for privacy) In this case it's a...
Investigating OP's scenario; it turns out that their problem is also related to German (DE/+49) phone numbers. Testing with Dutch (NL/+31) phonenumber show that those work correct. ``` irb(main):012:0> TelephoneNumber.parse('+4917880xxxx').e164_number...
Turns out there are more problem with this gem. E.g. it does not seem to respect the "internationalPrefix" property in the Metadata. Hence the following number is invalid, while in...
Hi @PowerfulCat, I'm not sure how I should interpret your comment. In my case I'm using `AT+CIPRECVMODE=1`. This is "passive mode" which I refered to as "manual receiving of data"....
Is it this one? https://github.com/twilio/video-quickstart-swift/blob/b8d4318a416d9892de058dc30dba9ff0e403c251/AudioDeviceExample/AudioDevices/ExampleAVAudioEngineDevice.m#L814
Check this code from Apple for option A: https://github.com/apple/app-store-server-library-node/blob/main/receipt_utility.ts#L17 It's from their official NodeJS package, but it comes with a warning: ``` * Extracts a transaction id from an encoded...