Vivoe Lite 0.5.0
Lightweight GVA like HMI for military displays.
Loading...
Searching...
No Matches
debug.h
Go to the documentation of this file.
1//
2// Copyright (c) 2023, DefenceX PTY LTD
3//
4// This file is part of the VivoeX project developed by DefenceX.
5//
6// Licensed under the Attribution-NonCommercial 4.0 International (CC BY-NC 4.0)
7// License. See the LICENSE file in the project root for full license details.
8//
12
13#ifndef COMMON_DEBUG_H_
14#define COMMON_DEBUG_H_
15
16#include <stdint.h>
17#include <stdio.h>
18
19namespace gva {
20
27void DumpHex(const uint8_t* data, size_t size);
28
29} // namespace gva
30
31#endif // COMMON_DEBUG_H_
void DumpHex(const uint8_t *data, size_t size)
Dump hexidecimal values to stdout.
Definition debug.cc:38