1/** 2 * @copyright Copyright (c) 2021 Sagetech, Inc. All rights reserved. 3 * 4 * @file uint322Buf.c 5 * @author Jacob.Garrison 6 * 7 * @date Mar 2, 2021 8 * 9 */ 10 11#include "sgUtil.h" 12 13/* 14 * Documented in the header file. 15 */ 16void uint322Buf(uint8_t *bufferPos, uint32_t value) 17{ 18 bufferPos[0] = (value & 0xFF000000) >> 24; 19 bufferPos[1] = (value & 0x00FF0000) >> 16; 20 bufferPos[2] = (value & 0x0000FF00) >> 8; 21 bufferPos[3] = (value & 0x000000FF); 22} 23 24