aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/AT91SAM7/pal_lld.h
diff options
context:
space:
mode:
authorbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-11-08 07:29:55 +0000
committerbarthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-11-08 07:29:55 +0000
commit25acf389b0475d90c8d3fcb2ed0eb24bc15b1287 (patch)
treec66ccfbaff9bdc0609810869edde69fe3598d19b /os/hal/platforms/AT91SAM7/pal_lld.h
parent07f4e8ed945b736dccdf1f20a37551f5cd7b6775 (diff)
downloadChibiOS-25acf389b0475d90c8d3fcb2ed0eb24bc15b1287.tar.gz
ChibiOS-25acf389b0475d90c8d3fcb2ed0eb24bc15b1287.tar.bz2
ChibiOS-25acf389b0475d90c8d3fcb2ed0eb24bc15b1287.zip
AT91SAM7A3. Initial commit.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4799 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/AT91SAM7/pal_lld.h')
-rw-r--r--os/hal/platforms/AT91SAM7/pal_lld.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/os/hal/platforms/AT91SAM7/pal_lld.h b/os/hal/platforms/AT91SAM7/pal_lld.h
index fa0ad22d4..8d69059c4 100644
--- a/os/hal/platforms/AT91SAM7/pal_lld.h
+++ b/os/hal/platforms/AT91SAM7/pal_lld.h
@@ -64,7 +64,8 @@ typedef struct {
/** @brief Port 0 setup data.*/
at91sam7_pio_setup_t P0Data;
#if (SAM7_PLATFORM == SAM7X128) || (SAM7_PLATFORM == SAM7X256) || \
- (SAM7_PLATFORM == SAM7X512) || defined(__DOXYGEN__)
+ (SAM7_PLATFORM == SAM7X512) || (SAM7_PLATFORM == SAM7A3) || \
+ defined(__DOXYGEN__)
/** @brief Port 1 setup data.*/
at91sam7_pio_setup_t P1Data;
#endif
@@ -112,7 +113,8 @@ typedef AT91PS_PIO ioportid_t;
* @brief PIO port B identifier.
*/
#if (SAM7_PLATFORM == SAM7X128) || (SAM7_PLATFORM == SAM7X256) || \
- (SAM7_PLATFORM == SAM7X512) || defined(__DOXYGEN__)
+ (SAM7_PLATFORM == SAM7X512) || (SAM7_PLATFORM == SAM7A3) || \
+ defined(__DOXYGEN__)
#define IOPORT2 AT91C_BASE_PIOB
#endif