JVM Languages
jrt.asc
Associated article: Java and Embedded Real-Time Control
Tags: Embedded Systems JVM Languages
_Java and Embedded Real-Time Control_
by Kelvin Nilsen
Example 1:
x = computeApproximation();
i = 0;
timed (10 ms) {
for ( ; ; ) {
z = refineApproximation(x);
atomic {
x = z;
i++;
}
}
}


