Base CANDY LINE boards service for Quectel Wireless Solutions Modules
$ pip install candy-board-qws
$ pip candy-board-qws
On Mac OS:
$ brew install pandoc
$ pip install pypandoc twine
$ ./setup.py install --record files.txt
sudo
is required in some cases
$ cat files.txt | xargs rm -rf
$ find . -name "*.pyc" | xargs rm -f
$ tar czvf candy-board-qws.tgz --exclude "./.*" --exclude build --exclude dist *
# pip command
$ pip install --no-cache-dir ./candy-board-qws.tgz
# python command
$ python -m pip install --no-cache-dir ./candy-board-qws.tgz
# python3 command
$ python3 -m pip install --no-cache-dir ./candy-board-qws.tgz
$ ./setup.py test
$ ./setup.py publish
- 3.1.0
- Add a new attribute 'ICCID' into a SIM information result
- 3.0.0
- Add Python 3 (3.7+) support (still working on Python 2.7)
- 2.8.0
- Fix an issue where some modem commands could fail when a date/time text didn't have the timezone
- 2.7.0
- Add a new option to unlock PU configuration
- 2.6.0
- Fix an issue where users see inconsistent messages when a modem is disconnected
- Add a new service status for EPS
- Fix an issue where some AT commands for ECx were incompatible with UC20
- 2.5.0
- Add WCDMA/GSM modem support for retrieving the network info
- 2.4.0
- Add QZSS support including GLONASS, BeiDou and Galileo
- 2.3.0
- Include wireless access technology information into
network show
result as well
- Include wireless access technology information into
- 2.2.0
- Improve I/O error description
- Fix an issue where Index error can be thrown
- 2.1.0
- Fix an issue where a dialing number was invalidated in some cases
- 2.0.1
- Fix test case errors
- 2.0.0
- Add new categories for
gnss
- Fix an issue where modem_init() returned an error when SIM card is absent
- Add new categories for
- 1.3.1
- Fix an issue where modem_show() throws a runtime error when the command result is error
- 1.3.0
- Add a new property
registration
tonetwork show
command result in order to show the network registration status - Add new commands to register to/deregister from a network
- Perform phone functionality reset on modem initialization and modem reset
- Add a new property
- 1.2.4
- Exclude
/dev/ttyUSB*
from the candidate serial port list as the search function interferes with other process use of serial port
- Exclude
- 1.2.3
- Replace
ttySC*
in the serial port candidate list withttySC1
asttySC0
is never used for the QWS module
- Replace
- 1.2.2
- Set operator property value to 'N/A' when there's no available operator
- 1.2.1
- Set network property value to 'N/A' as the value isn't available on QWS modules
- 1.2.0
- Return precise error on
modem init
command error - Fix ValueError
- Return precise error on
- 1.1.0
- Add a new option to reset only packet counter
- Filter USB serial ports for ppp
- 1.0.0
- Initial public release