Snippet - How to add external memory to your custom netmf board

I just posted How to add external memory to your custom netmf board on Codeshare. Feel free to discuss and make suggestions here.

11 Likes

Great share!

Interesting share. Makes new use of the Cerb family.

Excellent share but did you know you could initialize your sram after power up right from c#? You can use register class to initialize it. Then you will continue to use address space to copy your buffers.

Let us know if you try it

I’m glad I went through this exercise in case I ever want to map memory to netmf’s stack or heap. But yes, initializing this from C# would be better for my application.

I think I can just read the registers after I’ve set them up (since my firmware is already doing this) then write some managed code to set them. Right? If so I’ll post another codeshare soon.