This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Problem with embedded server in EK-TM4C1294XL when use canvas in HTML

Other Parts Discussed in Thread: EK-TM4C1294XL

Hello, i am work in a project who make a web server in the EK-TM4C1294XL. It has a HTML page, the content is this:

<!DOCTYPE html>
<html>
<body>

<canvas id="myCanvas" width="200" height="100"
style="border:1px solid #d3d3d3;">
Your browser does not support the canvas element.
</canvas>

<script>
var canvas = document.getElementById("myCanvas");
var ctx = canvas.getContext("2d");
ctx.beginPath();
ctx.arc(95,50,40,0,2*Math.PI);
ctx.stroke();
</script>

</body>
</html>

The result is not correct, not draw the circle, only the box (<canvas id="myCanvas" width="200" height="100"
style="border:1px solid #d3d3d3;">). Someone work in a similar project using canvas?? 

Regards

Matias