| 772 | } |
| 773 | |
| 774 | uint8* BpManager::StartCmd(uint8 cmd, CircularBuffer::View& view, int maxLen) |
| 775 | { |
| 776 | mOutBuffer.GrowReserve(maxLen); |
| 777 | mOutBuffer.MapView(mOutBuffer.GetSize(), maxLen, view); |
| 778 | uint8* dataOut = view.mPtr; |
| 779 | GET_FROM(dataOut, uint8) = cmd; |
| 780 | return dataOut; |
| 781 | } |
| 782 | |
| 783 | void BpManager::EndCmd(CircularBuffer::View& view, uint8* ptr) |
| 784 | { |
nothing calls this directly
no test coverage detected