Java in embedded programming

Can java programming be used in programming microcontrollers like C and C ++? If so, why is this necessary? What about PIC16 and PIC32 series microcontrollers? Any opportunity for them. I could not find more information about this on the Internet either. I appreciate your help. Hooray!!!

+4
source share
2 answers

To run Java on any platform, you need a Java Virtual Machine (JVM). I will not rely too much on PIC16 because of the necessary memory resources and possibly performance. If you need the highest performance and minimum size, then C or C ++ is the best (and most common) solution for embedded systems.

I have compiled a list of JVMs for embedded systems here . You can run Java for any purpose supported by one of the theorists. Some of the links may be outdated, and you may want to search to see if any new tools are available since the list was created.

Many, but not all, need some kind of kernel or RTOS scheduler to run, so you will need to consider this as well as the target processor.

+1
source

Which microcontroller are you using?

Did you find Javelin? It is possible to program specific microcontrollers with Java.

http://www.parallax.com/tabid/255/Default.aspx

I don’t know anything else. However, I suggest you try C. I'm interested in trying.

EDIT: http://www.barrgroup.com/Embedded-Systems/How-To/KVM-J2ME-Java-Virtual-Machine A bit of the old link, but maybe this is what you are looking for.

0
source

All Articles