blob: 6a8170748c12243ffc90fd0c47751b93d808c246 [file] [log] [blame]
Zane Shelley465e0b32019-04-17 10:15:39 -05001
Ben Tyner941aaeb2019-04-26 17:38:10 -05002#include "hei_isolator.hpp"
Zane Shelley465e0b32019-04-17 10:15:39 -05003
Zane Shelley814b1e32019-06-17 20:55:04 -05004namespace libhei
Zane Shelley465e0b32019-04-17 10:15:39 -05005{
6
Zane Shelleya61f4c52019-08-01 13:58:49 -05007ReturnCode Isolator::initialize( void * i_buffer, size_t i_bufferSize,
8 bool i_forceInit )
Zane Shelley465e0b32019-04-17 10:15:39 -05009{
Zane Shelleya61f4c52019-08-01 13:58:49 -050010 ReturnCode rc;
11
12 // BEGIN temporary code for compilation
13 HEI_INF( "Isolator::initialize(%p,%lu,%d)", i_buffer, i_bufferSize,
14 i_forceInit );
15 // END temporary code for compilation
16
17 return rc;
Zane Shelley465e0b32019-04-17 10:15:39 -050018}
19
Zane Shelleya61f4c52019-08-01 13:58:49 -050020ReturnCode Isolator::isolate( void * i_chip, ChipType_t i_chipType,
21 IsolationData & o_isoData )
Zane Shelley465e0b32019-04-17 10:15:39 -050022{
Zane Shelleya61f4c52019-08-01 13:58:49 -050023 ReturnCode rc;
Zane Shelley465e0b32019-04-17 10:15:39 -050024
Zane Shelleya61f4c52019-08-01 13:58:49 -050025 // BEGIN temporary code for compilation
26 o_isoData = IsolationData();
27 HEI_INF( "Isolator::isolate(%p,%u)", i_chip, i_chipType );
28 // END temporary code for compilation
Zane Shelley465e0b32019-04-17 10:15:39 -050029
Zane Shelleya61f4c52019-08-01 13:58:49 -050030 return rc;
Zane Shelley465e0b32019-04-17 10:15:39 -050031}
32
Zane Shelley814b1e32019-06-17 20:55:04 -050033} // end namespace libhei