1/** 2 * @copyright Copyright (c) 2021 Sagetech, Inc. All rights reserved. 3 * 4 * @file toHeading.c 5 * @author Jacob.Garrison 6 * 7 * @date Mar 2, 2021 8 * 9 */ 10 11#include "sgUtil.h" 12 13#define SV_RES_HEAD 1.40625 14 15/* 16 * Documented in the header file. 17 */ 18double toHeading(const uint8_t bytes[]) 19{ 20 double value = bytes[0]; 21 value *= SV_RES_HEAD; 22 23 return value; 24} 25 26