19 lines
336 B
C
19 lines
336 B
C
//
|
|
// Copyright (c) 2017 The Altra64 project contributors
|
|
// See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
#ifndef _CONSTANTS_H_
|
|
#define _CONSTANTS_H_
|
|
|
|
#define ED64PLUS
|
|
#define MAX_SUPPORTED_PATH_LEN 256
|
|
|
|
#ifdef ED64PLUS
|
|
#define ED64_FIRMWARE_PATH "ED64P"
|
|
#else
|
|
#define ED64_FIRMWARE_PATH "ED64"
|
|
#endif
|
|
|
|
#endif
|