33 lines
560 B
C
33 lines
560 B
C
|
#include "system/includes.h"
|
||
|
#include "generic/log.h"
|
||
|
|
||
|
extern char __VERSION_BEGIN[];
|
||
|
extern char __VERSION_END[];
|
||
|
|
||
|
_INLINE_
|
||
|
int app_version_check()
|
||
|
{
|
||
|
char *version;
|
||
|
|
||
|
puts("=================Version===============\n");
|
||
|
for (version = __VERSION_BEGIN; version < __VERSION_END;) {
|
||
|
version += 4;
|
||
|
printf("%s\n", version);
|
||
|
version += strlen(version) + 1;
|
||
|
}
|
||
|
puts("=======================================\n");
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int lib_btstack_version(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
int lib_media_version(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
|