You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
440 B
18 lines
440 B
#pragma once
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdint.h>
|
|
|
|
#include "project_configs.h"
|
|
#include "base/config_service.hpp"
|
|
|
|
// uint16_t boardType;
|
|
// uint16_t projectId;
|
|
// uint16_t protcol_version;
|
|
// uint16_t software_version;
|
|
// uint16_t hardware_version;
|
|
|
|
uint16_t deviceInfo_init();
|
|
uint16_t deviceInfo_getProtocolVersion();
|
|
uint16_t deviceInfo_getSoftwareVersion();
|
|
uint16_t deviceInfo_getHardwareVersion();
|