14 lines
278 B
C
14 lines
278 B
C
// version.h
|
|
|
|
#ifndef VERSION_H
|
|
#define VERSION_H
|
|
|
|
// Definiere Blockversionskonstanten
|
|
#define BLOCK_VERSION_RASPBERRY 0x10000000
|
|
#define BLOCK_VERSION_NOARM 0x20000000
|
|
#define BLOCK_VERSION_DEFAULT 0x00000000
|
|
|
|
int get_dynamic_block_version();
|
|
|
|
#endif // VERSION_H
|