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.
13 lines
265 B
13 lines
265 B
8 years ago
|
#pragma once
|
||
|
|
||
|
#include "ap_version.h"
|
||
|
|
||
|
#define THISFIRMWARE "ArduSub V3.5-dev"
|
||
|
#define FIRMWARE_VERSION 3,5,0,FIRMWARE_VERSION_TYPE_DEV
|
||
|
|
||
|
#ifndef GIT_VERSION
|
||
|
#define FIRMWARE_STRING THISFIRMWARE
|
||
|
#else
|
||
|
#define FIRMWARE_STRING THISFIRMWARE " (" GIT_VERSION ")"
|
||
|
#endif
|