Zane Shelley | 5a26661 | 2019-08-15 16:23:53 -0500 | [diff] [blame^] | 1 | |
| 2 | #include <isolator/hei_isolator.hpp> |
| 3 | |
| 4 | namespace libhei |
| 5 | { |
| 6 | |
| 7 | ReturnCode Isolator::initialize( void * i_buffer, size_t i_bufferSize, |
| 8 | bool i_forceInit ) |
| 9 | { |
| 10 | ReturnCode rc; |
| 11 | |
| 12 | // BEGIN temporary code |
| 13 | HEI_INF( "Isolator::initialize(%p,%lu,%d)", i_buffer, i_bufferSize, |
| 14 | i_forceInit ); |
| 15 | // END temporary code |
| 16 | |
| 17 | return rc; |
| 18 | } |
| 19 | |
| 20 | void Isolator::uninitialize() |
| 21 | { |
| 22 | // BEGIN temporary code |
| 23 | HEI_INF( "Isolator::uninitialize()" ); |
| 24 | // END temporary code |
| 25 | } |
| 26 | |
| 27 | ReturnCode Isolator::isolate( IsolationData & o_isoData ) const |
| 28 | { |
| 29 | ReturnCode rc; |
| 30 | |
| 31 | // Flush the isolation data to ensure a clean slate. |
| 32 | o_isoData.clear(); |
| 33 | |
| 34 | // BEGIN temporary code |
| 35 | HEI_INF( "Isolator::isolate(%p,%u)", o_isoData.getChip(), |
| 36 | o_isoData.getChipType() ); |
| 37 | // END temporary code |
| 38 | |
| 39 | return rc; |
| 40 | } |
| 41 | |
| 42 | } // end namespace libhei |