Can not connect ftp

hi,
we received new party of wavecom product Fastract supreme 20. On these producs, we can not connect ftp server while we can still connect on previous products. Previous products and new party products have same firmware, we installed same application file on both. Strangly new ones can not connect ftp with wip_FTPCreateOpts function. It returns NULL.

I searched a little and found a topic which says it may be about Internet Plugin disabled with new modules. I executed AT+WCFM=5 and it returns +WCFM: 00000070,0 on new modules. On the other hand, this command returns +WCFM: 00000031,0 on previous modems. But i couldnt understand what this response come to mean. Does it mean that internet plugin disabled on these modules or what else can cause this annoying problem?

Thanks

The meaning of the response is given in the AT Commands Manual!

See: viewtopic.php?f=16&t=3947&p=15514&hilit=bit+map#p15514

i read the documentation but it is not clear. It says 01 means Internet plugin, 02 means MQTT… and so on for FtrMask. But I get 00000070 as a response, so what does it mean? it doesnt suit any explanation on the documentation.


By the way i contacted my distributor, he checked the firmware and plugins that were sent to me. He said ftp client feature is not activated on the modules newly sent to me. He will ask Wavecome for what to do and return back to me. I hope he can solve without changing the modems with the new ones!

Yes it does - it is explained in the link I provided!

hi awneil,
I can not get you. You wrote 0 stands for disable, 1 stands for enable. 00000070 is a bit-map o the features. But what does that mean? what does 7 stands for? if the first char (0) means the feature is disable but which feature? I couldnt find any clear explanation on the Open AT documentation.

Ah - so you don’t know what a bit-map is? That’s quite surprising for someone working in ‘C’ :open_mouth:

OK, the concept of a “bit-map” is that each binary digit (or “bit”) within a number is taken to indcate the enable/disable state of one feature.

Writing numbers in binary is cumbersome so, instead, we write in hexadecimal (or “hex” for short) - which is base 16.

Each digit in hex corresponds to 4 bits in binary; thus the number 00000070 in hex corresponds to 1110000 in binary (ignoring the leading zeros).

so the values of those bits are as follows:

1 1 1   0 0 0 0
^ ^ ^   ^ ^ ^ ^
| | |   | | | |
| | |   | | | +--  00
| | |   | | +----  00
| | |   | +------  00
| | |   +--------  00
| | |
| | +------------  10
| +--------------  20
+----------------  30
                  ____
                   70
                  ____