summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-10-30 00:46:27 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2010-10-30 00:46:27 +0000
commit120abbf998a02c39dc8a3c7d82f3e1ebeae195e9 (patch)
tree94eee3587024ef56c197679c0189dbf0f75e3ff8
parentfc44796aa0ce534591ab5f19fad282f34ff1ab44 (diff)
downloadnuttx-120abbf998a02c39dc8a3c7d82f3e1ebeae195e9.tar.gz
nuttx-120abbf998a02c39dc8a3c7d82f3e1ebeae195e9.tar.bz2
nuttx-120abbf998a02c39dc8a3c7d82f3e1ebeae195e9.zip
Fix big-time naming error -- what was I thinking?
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3059 42af7a65-404d-4744-a932-0658087f49c3
-rw-r--r--nuttx/configs/README.txt2
-rwxr-xr-xnuttx/configs/avr32dev1/README.txt12
-rwxr-xr-xnuttx/configs/avr32dev1/ostest/defconfig4
-rwxr-xr-xnuttx/configs/avr32dev1/src/avr32dev1_internal.h8
-rwxr-xr-xnuttx/configs/avr32dev1/src/up_boot.c2
-rwxr-xr-xnuttx/configs/avr32dev1/src/up_buttons.c12
-rwxr-xr-xnuttx/configs/avr32dev1/src/up_leds.c14
7 files changed, 27 insertions, 27 deletions
diff --git a/nuttx/configs/README.txt b/nuttx/configs/README.txt
index 74e1dc5ff..3a3b0ea3f 100644
--- a/nuttx/configs/README.txt
+++ b/nuttx/configs/README.txt
@@ -805,7 +805,7 @@ Supported Boards
configs/avr32dev1
This is a port of NuttX to the Atmel AVR32DEV1 board. That board is
- based on the Atmel AT91UC3B0256 MCU and uses a specially patched
+ based on the Atmel AT32UC3B0256 MCU and uses a specially patched
version of the GNU toolchain: The patches provide support for the
AVR32 family. That patched GNU toolchain is available only from the
Atmel website. STATUS: Under development.
diff --git a/nuttx/configs/avr32dev1/README.txt b/nuttx/configs/avr32dev1/README.txt
index 1be3ddbf0..8763eac00 100755
--- a/nuttx/configs/avr32dev1/README.txt
+++ b/nuttx/configs/avr32dev1/README.txt
@@ -49,7 +49,7 @@ In configs/avr32dev/include/board.h:
#define PINMUX_USART1_RXD PINMUX_USART1_RXD_1
#define PINMUX_USART1_TXD PINMUX_USART1_TXD_1
-In arch/avr/src/at91uc3/at91uc3b_pinmux.h:
+In arch/avr/src/at32uc3/at32uc3b_pinmux.h:
#define PINMUX_USART1_RXD_1 (GPIO_PERIPH | GPIO_FUNCD | GPIO_PORTA | 17)
#define PINMUX_USART1_TXD_1 (GPIO_PERIPH | GPIO_FUNCA | GPIO_PORTA | 23)
@@ -111,7 +111,7 @@ IDEs
2) Start the NuttX build at least one time from the Cygwin command line
before trying to create your project. This is necessary to create
certain auto-generated files and directories that will be needed.
- 3) Set up include pathes: You will need include/, arch/avr/src/at91uc3,
+ 3) Set up include pathes: You will need include/, arch/avr/src/at32uc3,
arch/avr/src/common, arch/arm/src/avr, and sched/.
4) All assembly files need to have the definition option -D __ASSEMBLY__
on the command line.
@@ -263,12 +263,12 @@ AVR32DEV1 Configuration Options
CONFIG_ARCH_CHIP - Identifies the arch/*/chip subdirectory
- CONFIG_ARCH_CHIP=at91uc3
+ CONFIG_ARCH_CHIP=at32uc3
CONFIG_ARCH_CHIP_name - For use in C code to identify the exact
chip:
- CONFIG_ARCH_CHIP_AT91UC3B0256
+ CONFIG_ARCH_CHIP_AT32UC3B0256
CONFIG_ARCH_BOARD - Identifies the configs subdirectory and
hence, the board that supports the particular chip or SoC.
@@ -297,7 +297,7 @@ AVR32DEV1 Configuration Options
CONFIG_DRAM_END=(CONFIG_DRAM_START+CONFIG_DRAM_SIZE)
- CONFIG_ARCH_IRQPRIO - The AT91UC3B0256 supports interrupt prioritization
+ CONFIG_ARCH_IRQPRIO - The AT32UC3B0256 supports interrupt prioritization
CONFIG_ARCH_IRQPRIO=y
@@ -335,7 +335,7 @@ AVR32DEV1 Configuration Options
CONFIG_AVR32_USARTn_IRDA - Configure USARTn as an IRDA interface.
CONFIG_AVR32_USARTn_ISO786 - Configure USARTn as an ISO786 interface.
- AT91UC3B0256 specific device driver settings
+ AT32UC3B0256 specific device driver settings
CONFIG_USARTn_SERIAL_CONSOLE - selects the USARTn for the
console and ttys0 (default is the USART0).
diff --git a/nuttx/configs/avr32dev1/ostest/defconfig b/nuttx/configs/avr32dev1/ostest/defconfig
index 982e6f563..5e3f14a47 100755
--- a/nuttx/configs/avr32dev1/ostest/defconfig
+++ b/nuttx/configs/avr32dev1/ostest/defconfig
@@ -75,8 +75,8 @@
CONFIG_ARCH=avr
CONFIG_ARCH_AVR=y
CONFIG_ARCH_AVR32=y
-CONFIG_ARCH_CHIP=at91uc3
-CONFIG_ARCH_CHIP_AT91UC3B0256=y
+CONFIG_ARCH_CHIP=at32uc3
+CONFIG_ARCH_CHIP_AT32UC3B0256=y
CONFIG_ARCH_BOARD=avr32dev1
CONFIG_ARCH_BOARD_AVR32DEV1=y
CONFIG_BOARD_LOOPSPERMSEC=7982
diff --git a/nuttx/configs/avr32dev1/src/avr32dev1_internal.h b/nuttx/configs/avr32dev1/src/avr32dev1_internal.h
index 1d3343127..30f19c7db 100755
--- a/nuttx/configs/avr32dev1/src/avr32dev1_internal.h
+++ b/nuttx/configs/avr32dev1/src/avr32dev1_internal.h
@@ -34,8 +34,8 @@
*
************************************************************************************/
-#ifndef _CONFIGS_AT91DEV1_SRC_AT91DEV1_INTERNAL_H
-#define _CONFIGS_AT91DEV1_SRC_AT91DEV1_INTERNAL_H
+#ifndef _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_INTERNAL_H
+#define _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_INTERNAL_H
/************************************************************************************
* Included Files
@@ -43,7 +43,7 @@
#include <nuttx/config.h>
#include <nuttx/compiler.h>
-#include "at91uc3_config.h"
+#include "at32uc3_config.h"
/************************************************************************************
* Definitions
@@ -123,5 +123,5 @@ extern void up_ledinitialize(void);
#endif
#endif /* __ASSEMBLY__ */
-#endif /* _CONFIGS_AT91DEV1_SRC_AT91DEV1_INTERNAL_H */
+#endif /* _CONFIGS_AVR32DEV1_SRC_AVR32DEV1_INTERNAL_H */
diff --git a/nuttx/configs/avr32dev1/src/up_boot.c b/nuttx/configs/avr32dev1/src/up_boot.c
index b0eae956e..44dd8ee55 100755
--- a/nuttx/configs/avr32dev1/src/up_boot.c
+++ b/nuttx/configs/avr32dev1/src/up_boot.c
@@ -47,7 +47,7 @@
#include "up_arch.h"
#include "up_internal.h"
-#include "at91uc3_internal.h"
+#include "at32uc3_internal.h"
#include "avr32dev1_internal.h"
/************************************************************************************
diff --git a/nuttx/configs/avr32dev1/src/up_buttons.c b/nuttx/configs/avr32dev1/src/up_buttons.c
index b891d8698..3c35f59de 100755
--- a/nuttx/configs/avr32dev1/src/up_buttons.c
+++ b/nuttx/configs/avr32dev1/src/up_buttons.c
@@ -38,7 +38,7 @@
****************************************************************************/
#include <nuttx/config.h>
-#include "at91uc3_config.h"
+#include "at32uc3_config.h"
#include <sys/types.h>
#include <stdint.h>
@@ -48,7 +48,7 @@
#include <arch/irq.h>
#include <arch/board/board.h>
-#include "at91uc3_internal.h"
+#include "at32uc3_internal.h"
#include "avr32dev1_internal.h"
#ifdef CONFIG_ARCH_BUTTONS
@@ -75,8 +75,8 @@
void up_buttoninit(void)
{
- (void)at91uc3_configgpio(PINMUX_GPIO_BUTTON1);
- (void)at91uc3_configgpio(PINMUX_GPIO_BUTTON2);
+ (void)at32uc3_configgpio(PINMUX_GPIO_BUTTON1);
+ (void)at32uc3_configgpio(PINMUX_GPIO_BUTTON2);
}
/****************************************************************************
@@ -87,8 +87,8 @@ uint8_t up_buttons(void)
{
uint8_t retval;
- retval = at91uc3_gpioread(PINMUX_GPIO_BUTTON1) ? 0 : BUTTON1;
- retval |= at91uc3_gpioread(PINMUX_GPIO_BUTTON2) ? 0 : BUTTON2;
+ retval = at32uc3_gpioread(PINMUX_GPIO_BUTTON1) ? 0 : BUTTON1;
+ retval |= at32uc3_gpioread(PINMUX_GPIO_BUTTON2) ? 0 : BUTTON2;
return retval;
}
diff --git a/nuttx/configs/avr32dev1/src/up_leds.c b/nuttx/configs/avr32dev1/src/up_leds.c
index 6e6d52388..c7f123a98 100755
--- a/nuttx/configs/avr32dev1/src/up_leds.c
+++ b/nuttx/configs/avr32dev1/src/up_leds.c
@@ -40,7 +40,7 @@
#include <nuttx/config.h>
-#include "at91uc3_internal.h"
+#include "at32uc3_internal.h"
#include "avr32dev1_internal.h"
#ifdef CONFIG_ARCH_LEDS
@@ -67,8 +67,8 @@
void up_ledinitialize(void)
{
- at91uc3_configgpio(PINMUX_GPIO_LED1);
- at91uc3_configgpio(PINMUX_GPIO_LED2);
+ at32uc3_configgpio(PINMUX_GPIO_LED1);
+ at32uc3_configgpio(PINMUX_GPIO_LED2);
}
/****************************************************************************
@@ -77,8 +77,8 @@ void up_ledinitialize(void)
void up_ledon(int led)
{
- at91uc3_gpiowrite(PINMUX_GPIO_LED1, (led != 0));
- at91uc3_gpiowrite(PINMUX_GPIO_LED2, (led == 2));
+ at32uc3_gpiowrite(PINMUX_GPIO_LED1, (led != 0));
+ at32uc3_gpiowrite(PINMUX_GPIO_LED2, (led == 2));
}
/****************************************************************************
@@ -87,7 +87,7 @@ void up_ledon(int led)
void up_ledoff(int led)
{
- at91uc3_gpiowrite(PINMUX_GPIO_LED1, (led == 2));
- at91uc3_gpiowrite(PINMUX_GPIO_LED2, false);
+ at32uc3_gpiowrite(PINMUX_GPIO_LED1, (led == 2));
+ at32uc3_gpiowrite(PINMUX_GPIO_LED2, false);
}
#endif /* CONFIG_ARCH_LEDS */