2021-03-21 11:37:01 +01:00
|
|
|
/****************************************************************************
|
2018-03-26 18:37:32 +02:00
|
|
|
* arch/arm/include/nrf52/chip.h
|
|
|
|
*
|
2021-04-10 09:13:02 +02: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
|
2018-03-26 18:37:32 +02:00
|
|
|
*
|
2021-04-10 09:13:02 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-26 18:37:32 +02:00
|
|
|
*
|
2021-04-10 09:13:02 +02: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.
|
2018-03-26 18:37:32 +02:00
|
|
|
*
|
2021-03-21 11:37:01 +01:00
|
|
|
****************************************************************************/
|
2018-03-26 18:37:32 +02:00
|
|
|
|
|
|
|
#ifndef __ARCH_ARM_INCLUDE_NRF52_CHIP_H
|
|
|
|
#define __ARCH_ARM_INCLUDE_NRF52_CHIP_H
|
|
|
|
|
2021-03-21 11:37:01 +01:00
|
|
|
/****************************************************************************
|
2018-03-26 18:37:32 +02:00
|
|
|
* Included Files
|
2021-03-21 11:37:01 +01:00
|
|
|
****************************************************************************/
|
2018-03-26 18:37:32 +02:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2021-03-21 11:37:01 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Prototypes
|
|
|
|
****************************************************************************/
|
2018-03-26 18:37:32 +02:00
|
|
|
|
2021-03-21 11:37:01 +01:00
|
|
|
/* NVIC priority levels *****************************************************/
|
2019-12-19 16:40:56 +01:00
|
|
|
|
2021-03-21 11:37:01 +01:00
|
|
|
/* Each priority field holds a priority value, 0-31. The lower the value,
|
|
|
|
* the greater the priority of the corresponding interrupt.
|
2018-03-26 18:37:32 +02:00
|
|
|
*
|
|
|
|
* The Cortex-M4 core supports 8 programmable interrupt priority levels.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define NVIC_SYSH_PRIORITY_MIN 0xe0 /* All bits[7:5] set is minimum priority */
|
|
|
|
#define NVIC_SYSH_PRIORITY_DEFAULT 0x80 /* Midpoint is the default */
|
|
|
|
#define NVIC_SYSH_PRIORITY_MAX 0x00 /* Zero is maximum priority */
|
|
|
|
#define NVIC_SYSH_PRIORITY_STEP 0x20 /* Steps between priorities */
|
|
|
|
|
2021-03-21 11:37:01 +01:00
|
|
|
/****************************************************************************
|
2018-03-26 18:37:32 +02:00
|
|
|
* Public Types
|
2021-03-21 11:37:01 +01:00
|
|
|
****************************************************************************/
|
2018-03-26 18:37:32 +02:00
|
|
|
|
2021-03-21 11:37:01 +01:00
|
|
|
/****************************************************************************
|
2018-03-26 18:37:32 +02:00
|
|
|
* Public Data
|
2021-03-21 11:37:01 +01:00
|
|
|
****************************************************************************/
|
2018-03-26 18:37:32 +02:00
|
|
|
|
2021-03-21 11:37:01 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions Prototypes
|
|
|
|
****************************************************************************/
|
2018-03-26 18:37:32 +02:00
|
|
|
|
|
|
|
#endif /* __ARCH_ARM_INCLUDE_NRF52_CHIP_H */
|