Review/modifications for change of last merge
This commit is contained in:
parent
8944a041fd
commit
2720144586
@ -319,6 +319,11 @@ configs/mirtoo
|
|||||||
This is the port to the DTX1-4000L "Mirtoo" module. This module uses MicroChip
|
This is the port to the DTX1-4000L "Mirtoo" module. This module uses MicroChip
|
||||||
PIC32MX250F128D. See http://www.dimitech.com/ for further information.
|
PIC32MX250F128D. See http://www.dimitech.com/ for further information.
|
||||||
|
|
||||||
|
configs/moteino-mega
|
||||||
|
This is placeholder for the LowPowerLab MoteinoMEGA that is based
|
||||||
|
on the Atmel AVR ATMega1284P MCU. There is not much there yet and what is
|
||||||
|
there is untested due to tool-related issues.
|
||||||
|
|
||||||
configs/mx1ads
|
configs/mx1ads
|
||||||
This is a port to the Motorola MX1ADS development board. That board
|
This is a port to the Motorola MX1ADS development board. That board
|
||||||
is based on the Freescale i.MX1 processor. The i.MX1 is an ARM920T.
|
is based on the Freescale i.MX1 processor. The i.MX1 is an ARM920T.
|
||||||
|
@ -83,7 +83,8 @@
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#define EXTERN extern "C"
|
#define EXTERN extern "C"
|
||||||
extern "C" {
|
extern "C"
|
||||||
|
{
|
||||||
#else
|
#else
|
||||||
#define EXTERN extern
|
#define EXTERN extern
|
||||||
#endif
|
#endif
|
||||||
|
@ -63,7 +63,8 @@
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#define EXTERN extern "C"
|
#define EXTERN extern "C"
|
||||||
extern "C" {
|
extern "C"
|
||||||
|
{
|
||||||
#else
|
#else
|
||||||
#define EXTERN extern
|
#define EXTERN extern
|
||||||
#endif
|
#endif
|
||||||
@ -77,7 +78,7 @@ extern "C" {
|
|||||||
************************************************************************************/
|
************************************************************************************/
|
||||||
|
|
||||||
#if defined(CONFIG_AVR_SPI1) || defined(CONFIG_AVR_SPI2)
|
#if defined(CONFIG_AVR_SPI1) || defined(CONFIG_AVR_SPI2)
|
||||||
EXTERN void weak_function atmega_spiinitialize(void);
|
void weak_function atmega_spiinitialize(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
@ -89,7 +90,7 @@ EXTERN void weak_function atmega_spiinitialize(void);
|
|||||||
************************************************************************************/
|
************************************************************************************/
|
||||||
|
|
||||||
#ifdef CONFIG_ARCH_LEDS
|
#ifdef CONFIG_ARCH_LEDS
|
||||||
EXTERN void atmega_ledinit(void);
|
void atmega_ledinit(void);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#undef EXTERN
|
#undef EXTERN
|
||||||
|
@ -50,7 +50,7 @@
|
|||||||
#include "moteino_mega_internal.h"
|
#include "moteino_mega_internal.h"
|
||||||
|
|
||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
* Definitions
|
* Pre-processor Definitions
|
||||||
************************************************************************************/
|
************************************************************************************/
|
||||||
|
|
||||||
/************************************************************************************
|
/************************************************************************************
|
||||||
@ -66,7 +66,7 @@
|
|||||||
*
|
*
|
||||||
* Description:
|
* Description:
|
||||||
* All ATMega architectures must provide the following entry point. This entry
|
* All ATMega architectures must provide the following entry point. This entry
|
||||||
* point is called early in the intitialization -- after all memory has been
|
* point is called early in the initialization -- after all memory has been
|
||||||
* configured and mapped but before any devices have been initialized.
|
* configured and mapped but before any devices have been initialized.
|
||||||
*
|
*
|
||||||
************************************************************************************/
|
************************************************************************************/
|
||||||
|
@ -52,7 +52,7 @@
|
|||||||
#ifdef CONFIG_ARCH_LEDS
|
#ifdef CONFIG_ARCH_LEDS
|
||||||
|
|
||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
* Definitions
|
* Pre-processor Definitions
|
||||||
****************************************************************************/
|
****************************************************************************/
|
||||||
|
|
||||||
/* CONFIG_DEBUG_LEDS enables debug output from this file (needs CONFIG_DEBUG
|
/* CONFIG_DEBUG_LEDS enables debug output from this file (needs CONFIG_DEBUG
|
||||||
|
Loading…
Reference in New Issue
Block a user