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.
17 lines
319 B
17 lines
319 B
/*
|
|
* BACommon.h
|
|
*
|
|
* Created on: Nov 19, 2017
|
|
* Author: slascos
|
|
*/
|
|
|
|
#ifndef SRC_BACOMMON_H_
|
|
#define SRC_BACOMMON_H_
|
|
|
|
namespace BAGuitar {
|
|
constexpr int MEM0_MAX_ADDR = 131071; ///< Max address size per chip
|
|
constexpr int MEM1_MAX_ADDR = 131071; ///< Max address size per chip
|
|
|
|
}
|
|
|
|
#endif /* SRC_BACOMMON_H_ */
|
|
|