Kindly give me an example file to Set APN/ send SMS and making phone call. I have try lot of effort using dev zone example but it is not working for me. My sim status is ready…signal strength is good…but unable to get operator name. while running on AT Command firmware…all things are going well. please help.
pls run
AT+QENG=“servingcell”
AT+CGPADDR
AT+CGDCONT?
AT+QIACT=1
AT+QIACT?
I am working in quecpython, from using above mention at commands i am able to send sms and receive sms through quecpython but still unable to make voicecall and receive voicecall through quecpython script. I also take example from your quecpython dev zone…but it not working for me. please give me a working example script or guide me where i am doing something wrong. Thanks in advance.
Let me briefly introduce myself to you. Currently, there are two ways to set the APN in QuecPython:
-
The old Net_APN and Datacall_APN are separate. Refer to the following:
import net
net.setApn(‘3gnet’,0)
import dataCall
dataCall.start(1, 0, “3gnet.mnc001.mcc460.gprs”, “”, “”, 0) -
The new Net_APN and Datacall_APN have been merged into one. Refer to the following:
import dataCall
dataCall.setPDPContext(1, 0, ‘3gnet’, ‘’, ‘’, 0)
Related information: dataCall - 拨号功能 - QuecPython
can you send me the latest firmware of quecpython and schmatics of EC200U evaluation board on my email [srirsdeo@rediffmail.com]
Thanks for your reply.
The materials for the QuecPython development mode are all freely available on the internet. You can download it by yourself through the following website. thank you.
Can you give me the list of at commands which can be run under Quecpython firmware. Also kindly tell me how much of data can be wriiten on /usr or /sd location…in single time. One More Question…can we receive 2kb of date through UART PORT in EC200U IN a single write…Suppose my pc is sending it.
hi
- In Quecpython, it is not recommended to use AT commands, as most of them have been trimmed.
- There should be no limit to this; it depends on the remaining space of the file system.
- There should be no limit to this; it depends on whether the module resources are sufficient.