Bojan

Results 4 comments of Bojan

**Some more insights into the problem** We are using the environment from the microkit tutorial for the examples here. In this case, we tested the _client_ protection domain. We encountered...

@Ivan-Velickovic, yes. It was pretty much the same program on hardware as we ran on QEMU. We configured the system file with the board UART addresses and updated the Makefile...

**Some more insights into the problem** We are using the environment from the microkit tutorial for the examples here. In this case, we tested the _client_ protection domain. We encountered...

For anyone looking for a quick fix to the issue: I replaced ``` window.addEventListener('resize', function() { map.resize(); }); ``` with ``` window.addEventListener('resize', function() { $('#container').empty(); new Datamap(); }); ``` This...