Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of FastIO by
Diff: Devices/FastIO_LPC81X.h
- Revision:
- 4:6ebbf25b9167
- Parent:
- 2:1a6ed4b84590
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Devices/FastIO_LPC81X.h Wed Jul 16 19:31:35 2014 +0000 @@ -0,0 +1,41 @@ +#ifdef TARGET_LPC81X + +#include "mbed.h" +#include "pinmap.h" + +typedef struct { + __I uint32_t *reg_in; + uint32_t mask; +} fastio_vars; + +#define PINMASK (1 << ((int)pin & 0x1F)) +static void gpio_enable(void); + +#define INIT_PIN container.mask = PINMASK; container.reg_in = &LPC_GPIO_PORT->PIN0; gpio_enable(); pin_function(pin, 0) +#define DESTROY_PIN + +#define SET_DIR_INPUT (LPC_GPIO_PORT->DIR0 &= ~PINMASK) +#define SET_DIR_OUTPUT (LPC_GPIO_PORT->DIR0 |= PINMASK) +#define SET_MODE(pull) (pin_mode(pin, pull)) + +#define WRITE_PIN_SET (LPC_GPIO_PORT->SET0 = PINMASK) +#define WRITE_PIN_CLR (LPC_GPIO_PORT->CLR0 = PINMASK) + +#define READ_PIN ((*container.reg_in & container.mask) ? 1 : 0) + +static int gpio_enabled = 0; +static void gpio_enable(void) +{ + if (!gpio_enabled) { + gpio_enabled = 1; + + /* Enable AHB clock to the GPIO domain. */ + LPC_SYSCON->SYSAHBCLKCTRL |= (1<<6); + + /* Peripheral reset control to GPIO and GPIO INT, a "1" bring it out of reset. */ + LPC_SYSCON->PRESETCTRL &= ~(0x1<<10); + LPC_SYSCON->PRESETCTRL |= (0x1<<10); + } +} + +#endif \ No newline at end of file