cancel
Showing results for 
Search instead for 
Did you mean: 

SIP and audio on STM3240gEVAL with MicroEJ CLDC1.1

Posted on February 28, 2014 at 13:10

Hi,

I'm trying to port a Java SIP stack (http://www.mjsip.org/mjsipME.html) to the stm3240g board. MJSIP already did a port of their sip stack to cldc1.1 so I thought I could go straight ahead.It seems that the cldc1.1 which comes with microej does not support all the classes which are required by mjsip.

Is there a way to extend the cldc? I know that I can extend the JPF with fragments, but I can't find any application notes or manuals on how to add classes to the cldc.

Thanks for help!

#java-evaluationboards #stm3240g-eval #audio
1 REPLY 1
vincent.philippe
Associate II
Posted on May 27, 2014 at 16:28

Hi,

CLDC available in MicroEJ / STM32Java is not a subset of CLDC. It normally provide (support, to use customer's word) all the classes. I suppose that you need classes that are outside CLDC.

You cannot add classes inside CLDC, since CLDC is a library and cannot be modified. But it is possible to create the missing classes. For instance, if java.net.Socket is needed, it can be create in a MicroEJ Java project.

Best regards

Phil