Replacement for regular GPIO (DigitalIn, DigitalOut, DigitalInOut) classes which has superior speed. (modified for use opendrain in stm32)
Fork of FastIO by
Diff: Devices/FastIO_NUCLEO_F401.h
- Revision:
- 4:6ebbf25b9167
- Child:
- 5:3dd1ab9bbc59
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Devices/FastIO_NUCLEO_F401.h Wed Jul 16 19:31:35 2014 +0000 @@ -0,0 +1,25 @@ +#ifdef TARGET_NUCLEO_F401RE + +#include "mbed.h" +#include "pinmap.h" + +typedef struct { + uint32_t mask; +} fastio_vars; + +#define PINMASK (1 << STM_PIN(pin)) +#define PORT ((GPIO_TypeDef *)(GPIOA_BASE + 0x0400 * STM_PORT(pin))) + +#define INIT_PIN RCC->AHB1ENR |= (1 << STM_PORT(pin)); container.mask = PINMASK +#define DESTROY_PIN + +#define SET_DIR_INPUT (PORT->MODER &= ~(GPIO_MODER_MODER0 << (STM_PIN(pin) * 2))) +#define SET_DIR_OUTPUT (PORT->MODER |= (GPIO_MODER_MODER0_0 << (STM_PIN(pin) * 2))) +#define SET_MODE(pull) pin_mode(pin, pull); + +#define WRITE_PIN_SET (PORT->BSRRL = PINMASK) +#define WRITE_PIN_CLR (PORT->BSRRH = PINMASK) + +#define READ_PIN ((PORT->IDR & container.mask) ? 1 : 0) + +#endif