----------------------------------------------------------------------------- Add a byte array to the message -----------------------------------------------------------------------------
| 142 | // Add a byte array to the message |
| 143 | //----------------------------------------------------------------------------- |
| 144 | void Msg::AppendArray |
| 145 | ( |
| 146 | const uint8* const _data, |
| 147 | const uint8 _length |
| 148 | ) |
| 149 | { |
| 150 | for (uint8 i=0 ; i<_length ; i++) { |
| 151 | this->Append( _data[i] ); |
| 152 | } |
| 153 | } |
| 154 | |
| 155 | //----------------------------------------------------------------------------- |
| 156 | // <Msg::Finalize> |
no test coverage detected