Move printBytes to meshUtils (#4424)

This commit is contained in:
Jonathan Bennett
2024-08-09 01:43:13 -05:00
committed by GitHub
parent a7da3537e2
commit c6a9edf8c7
3 changed files with 11 additions and 8 deletions

View File

@@ -1,4 +1,6 @@
#pragma once
#include "DebugConfiguration.h"
#include <stdint.h>
/// C++ v17+ clamp function, limits a given value to a range defined by lo and hi
template <class T> constexpr const T &clamp(const T &v, const T &lo, const T &hi)