Hi, I guess you must change sdk as since it is Cinterion and not Siemens there are different imports needed.
Check http://www.javacint.com/TC65Dev
"9.3.4 Firmware
From the firmware version 2.004, Cinterion decided to switch the namespaces of all the classes to “com.siemens” to “com.cinterion”. This mean you have almost no effort to port it but you can’t “EASILY” make the same program work on both platforms. The EGS5 and TC65i-X are only delivered with the firmware 2.004 or higher. This mean the "com.siemens" namespace is not available on this chips.
If you really wanted to do that, I guess you could create a base class with two implementations, one that use some “com.siemens” namespace classes and one that use the “com.cinterion” namespaces classes. But you would have to rewrite one base class and two proxy classes for each class of the TC65i’s SDK. That’s a LOT of stupid work to do.
If you are faced with this situation, I would recommend using the preprocessor to create a chip specific import code. You could add the “sdkns” (like “SDK Namespace”) capacity, and create a project configuration with “siemens” value and the other with the “cinterion” value.
Then it would look like that:
//#if sdkns=="siemens"
import com.siemens.icm.io.ATCommandListener;
//#elif sdkns=="cinterion"
//# import com.cinterion.io.ATCommandListener;
//#endif"
Cheers Jacek
--
javacint group - http://www.javacint.com/
---
You received this message because you are subscribed to the Google Groups "Cinterion Java enabled chips support" group.
To unsubscribe from this group and stop receiving emails from it, send an email to javacint+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.