Norimasa Okamoto / ROMSLOT
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ROMSLOT.h Source File

ROMSLOT.h

00001 // ROMSLOT.h 2016/4/9
00002 #include "mbed.h"
00003 
00004 class ROMSLOT {
00005 public:
00006     ROMSLOT();
00007     uint32_t New(uint32_t size);
00008     bool Write(uint32_t addr, const uint8_t* buf, uint32_t size);
00009 
00010 private:
00011     uint32_t base;
00012 };