blob: e83a57702923f29b8fba401a74403b02a3bf644a [file] [log] [blame]
Zane Shelleyad103b92019-07-31 15:57:54 -05001#include "hei_isolator.hpp"
Zane Shelley465e0b32019-04-17 10:15:39 -05002
Zane Shelley465e0b32019-04-17 10:15:39 -05003int main()
4{
Zane Shelley814b1e32019-06-17 20:55:04 -05005 libhei::Isolator iso;
Zane Shelley465e0b32019-04-17 10:15:39 -05006
Zane Shelleya61f4c52019-08-01 13:58:49 -05007 void * buffer = nullptr;
8 size_t sz_buffer = 0;
Zane Shelley465e0b32019-04-17 10:15:39 -05009
Zane Shelleya61f4c52019-08-01 13:58:49 -050010 iso.initialize( buffer, sz_buffer );
11
12 void * chip = nullptr;
13 libhei::ChipType_t chipType = 0;
14 libhei::IsolationData isoData;
15
16 iso.isolate( chip, chipType, isoData );
Zane Shelley465e0b32019-04-17 10:15:39 -050017
18 return 0;
19}