2016-11-08 17:02:24 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016,2017, Imagination Technologies Limited and/or its
|
|
|
|
* affiliated group companies.
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
|
|
* directory for more details.#
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-08-24 19:51:44 +02:00
|
|
|
* @defgroup cpu_mips_pic32mx Microchip PIC32MX
|
2016-11-08 17:02:24 +01:00
|
|
|
* @ingroup cpu
|
2017-08-24 19:51:44 +02:00
|
|
|
* @brief CPU definitions for Microchip PIC32MX devices.
|
2016-11-08 17:02:24 +01:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2017-08-24 14:52:54 +02:00
|
|
|
* @brief CPU definitions for pic32mx devices.
|
2016-11-08 17:02:24 +01:00
|
|
|
*
|
|
|
|
* @author Neil Jones <neil.jones@imgtec.com>
|
|
|
|
*/
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#ifndef CPU_H
|
|
|
|
#define CPU_H
|
2016-11-08 17:02:24 +01:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include "irq.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief We run from flash on PIC32
|
|
|
|
*/
|
|
|
|
#define FLASH_XIP (1)
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Print the last instruction's address
|
|
|
|
*
|
|
|
|
* @todo: Not supported
|
|
|
|
*/
|
|
|
|
static inline void cpu_print_last_instruction(void)
|
|
|
|
{
|
|
|
|
/* This function must exist else RIOT won't compile */
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-05-23 18:19:52 +02:00
|
|
|
#endif /* CPU_H */
|
2016-11-08 17:02:24 +01:00
|
|
|
/** @} */
|