Line 1... |
Line 1... |
/**
|
/*
|
* @file
|
* Copyright 2018 Sergey Khabarov, sergeykhbr@gmail.com
|
* @copyright Copyright 2016 GNSS Sensor Ltd. All right reserved.
|
*
|
* @author Sergey Khabarov - sergeykhbr@gmail.com
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
* @brief "River" CPU configuration parameters
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
*/
|
*/
|
|
|
#ifndef __DEBUGGER_RIVER_CFG_H__
|
#ifndef __DEBUGGER_RIVER_CFG_H__
|
#define __DEBUGGER_RIVER_CFG_H__
|
#define __DEBUGGER_RIVER_CFG_H__
|
|
|
Line 21... |
Line 30... |
static const uint8_t MEMOP_8B = 3;
|
static const uint8_t MEMOP_8B = 3;
|
static const uint8_t MEMOP_4B = 2;
|
static const uint8_t MEMOP_4B = 2;
|
static const uint8_t MEMOP_2B = 1;
|
static const uint8_t MEMOP_2B = 1;
|
static const uint8_t MEMOP_1B = 0;
|
static const uint8_t MEMOP_1B = 0;
|
|
|
static const uint64_t RESET_VECTOR = 0x1000;
|
static const uint64_t RESET_VECTOR = 0x0040;
|
static const int DBG_FETCH_TRACE_SIZE = 4;
|
static const int DBG_FETCH_TRACE_SIZE = 4;
|
|
|
/** Number of elements each 2*CFG_ADDR_WIDTH in stack trace buffer: */
|
/** Number of elements each 2*CFG_ADDR_WIDTH in stack trace buffer: */
|
static const int CFG_STACK_TRACE_BUF_SIZE = 32;
|
static const int CFG_STACK_TRACE_BUF_SIZE = 32;
|
|
|