2012-05-20 14:38:27 +00:00
|
|
|
/*
|
2013-03-30 10:32:37 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006-2013 Giovanni Di Sirio
|
2012-05-20 14:38:27 +00:00
|
|
|
|
2013-03-30 10:32:37 +00:00
|
|
|
Licensed 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
|
2012-05-20 14:38:27 +00:00
|
|
|
|
2013-03-30 10:32:37 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2012-05-20 14:38:27 +00:00
|
|
|
|
2013-03-30 10:32:37 +00: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.
|
2012-05-20 14:38:27 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file LPC11Uxx/pal_lld.c
|
|
|
|
* @brief LPC11Uxx GPIO low level driver code.
|
|
|
|
*
|
|
|
|
* @addtogroup PAL
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ch.h"
|
|
|
|
#include "hal.h"
|
|
|
|
|
|
|
|
#if HAL_USE_PAL || defined(__DOXYGEN__)
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported variables. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
2013-02-28 16:23:19 +00:00
|
|
|
/* Driver local variables and types. */
|
2012-05-20 14:38:27 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver local functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver interrupt handlers. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver exported functions. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
/**
|
|
|
|
* @brief LPC11Uxx I/O ports configuration.
|
|
|
|
* @details GPIO unit registers initialization.
|
|
|
|
*
|
|
|
|
* @param[in] config the LPC11Uxx ports configuration
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void _pal_lld_init(const PALConfig *config) {
|
|
|
|
|
|
|
|
LPC_GPIO->DIR[0] = config->P0.dir;
|
|
|
|
LPC_GPIO->DIR[1] = config->P1.dir;
|
|
|
|
LPC_GPIO->PIN[0] = config->P0.data;
|
|
|
|
LPC_GPIO->PIN[1] = config->P1.data;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Pads mode setup.
|
|
|
|
* @details This function programs a pads group belonging to the same port
|
|
|
|
* with the specified mode.
|
|
|
|
* @note @p PAL_MODE_UNCONNECTED is implemented as push pull output with
|
|
|
|
* high state.
|
|
|
|
* @note This function does not alter the @p PINSELx registers. Alternate
|
|
|
|
* functions setup must be handled by device-specific code.
|
|
|
|
*
|
|
|
|
* @param[in] port the port identifier
|
|
|
|
* @param[in] mask the group mask
|
|
|
|
* @param[in] mode the mode
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
void _pal_lld_setgroupmode(ioportid_t port,
|
|
|
|
ioportmask_t mask,
|
|
|
|
iomode_t mode) {
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case PAL_MODE_RESET:
|
|
|
|
case PAL_MODE_INPUT:
|
|
|
|
LPC_GPIO->DIR[port] &= ~mask;
|
|
|
|
break;
|
|
|
|
case PAL_MODE_UNCONNECTED:
|
|
|
|
palSetPort(port, PAL_WHOLE_PORT);
|
|
|
|
case PAL_MODE_OUTPUT_PUSHPULL:
|
|
|
|
LPC_GPIO->DIR[port] |= mask;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAL_USE_PAL */
|
|
|
|
|
|
|
|
/** @} */
|