mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 01:18:36 +02:00
Device: Add bootloader information & getChipVersions()
This commit is contained in:
committed by
Kyle Schwarz
parent
99a2ca4f0d
commit
0bd733bc5d
@@ -0,0 +1,26 @@
|
||||
#ifndef __VERSION_REPORT_H_
|
||||
#define __VERSION_REPORT_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
||||
#include "icsneo/device/chipid.h"
|
||||
|
||||
#include <vector>
|
||||
#include <string>
|
||||
|
||||
namespace icsneo {
|
||||
|
||||
struct VersionReport {
|
||||
ChipID id;
|
||||
std::string name;
|
||||
uint8_t major;
|
||||
uint8_t minor;
|
||||
uint8_t maintenance;
|
||||
uint8_t build;
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
#endif // __cplusplus
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user