2008-11-06 18:37:16 +01:00
|
|
|
/****************************************************************************
|
2020-01-22 21:49:50 +01:00
|
|
|
* boards/renesas/sh1/us7032evb1/include/board.h
|
2008-11-06 18:37:16 +01:00
|
|
|
*
|
2021-03-16 16:09:19 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2008-11-06 18:37:16 +01:00
|
|
|
*
|
2021-03-16 16:09:19 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-11-06 18:37:16 +01:00
|
|
|
*
|
2021-03-16 16:09:19 +01:00
|
|
|
* 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.
|
2008-11-06 18:37:16 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2022-01-15 03:44:35 +01:00
|
|
|
#ifndef __BOARDS_RENESAS_SH1_US7032EVB1_INCLUDE_BOARD_H
|
|
|
|
#define __BOARDS_RENESAS_SH1_US7032EVB1_INCLUDE_BOARD_H
|
2008-11-06 18:37:16 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
2009-12-15 21:56:22 +01:00
|
|
|
# include <stdint.h>
|
2008-11-06 18:37:16 +01:00
|
|
|
#endif
|
|
|
|
#include "chip.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 17:15:17 +02:00
|
|
|
* Pre-processor Definitions
|
2008-11-06 18:37:16 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Clocking *****************************************************************/
|
|
|
|
|
2008-11-11 20:39:17 +01:00
|
|
|
#define SH1_CLOCK 20000000 /* 20 MHz */
|
2008-11-07 17:28:17 +01:00
|
|
|
|
2008-11-06 18:37:16 +01:00
|
|
|
/* LED definitions **********************************************************/
|
|
|
|
|
2008-11-08 16:12:56 +01:00
|
|
|
/* The SH1_LPEVB only a single LED controlled by either port A, pin 15, or
|
|
|
|
* port B, pin 15 (selectable via JP8).
|
2008-11-07 17:28:17 +01:00
|
|
|
*/
|
|
|
|
|
2008-11-06 18:37:16 +01:00
|
|
|
#define LED_STARTED 0
|
|
|
|
#define LED_HEAPALLOCATE 1
|
2008-11-08 16:12:56 +01:00
|
|
|
#define LED_IRQSENABLED 1
|
|
|
|
#define LED_STACKCREATED 1
|
|
|
|
#define LED_INIRQ 0
|
|
|
|
#define LED_SIGNAL 0
|
|
|
|
#define LED_ASSERTION 0
|
|
|
|
#define LED_PANIC 1
|
2008-11-06 18:37:16 +01:00
|
|
|
|
|
|
|
/* Button definitions *******************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Data
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2019-08-09 15:22:39 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2008-11-06 18:37:16 +01:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2021-03-16 21:37:33 +01:00
|
|
|
* Public Functions Definitions
|
2008-11-06 18:37:16 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2022-01-15 03:44:35 +01:00
|
|
|
#endif /* __BOARDS_RENESAS_SH1_US7032EVB1_INCLUDE_BOARD_H */
|