- Remove the Linux SD card (from which the board is booting) from the slot and reset the board
- Program the PL (FPGA) again
- Launch your bare metal application again.
Friday, April 29, 2016
MMU section translation fault
While working on a ZedBoard (perhaps also MicroZed and others) you may find yourself facing a message referring to MMU section translation fault. This has happened to me a couple times. In my experience it's because I'm attempting to launch a bare metal application to the PS while the board has already booted to Linux--so the MMU is likely already in use.
My solution:
Sunday, January 10, 2016
Atmel Studio 7 incompatibility with Visual Studio 2015 Update 1
I spent a bit of time baffled after installing Atmel Studio 7.0.634 as I couldn't even create a new project successfully. This appears to be an incompatibility with Visual Studio 2015 Update 1. I found an apparent solution to the issue here, which manages to get me past my issues with creating a project. I'm not exactly sure why Atmel Studio has so many binding redirects, but there it is.
Sample error message: The 'ErrorListPackage' package did not load correctly.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<dependentAssembly> | |
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/> | |
<!-- old: <bindingRedirect oldVersion="1.0.27.0-1.1.65535.65535" newVersion="1.1.36.0"/> --> | |
<bindingRedirect oldVersion="1.0.27.0-1.1.65535.65535" newVersion="1.1.37.0"/> | |
</dependentAssembly> |
Subscribe to:
Posts (Atom)