[nrf52][gpio] use nrfx gpio library

Platform gpio driver now uses the nrfx library for gpio manipulation.
This allows utilization of second gpio bank present on some parts
and handling of errata.
This commit is contained in:
Eric Holland
2020-10-03 14:21:54 -04:00
committed by Eric Holland
parent c45337488c
commit 7068fb63cb
5 changed files with 19 additions and 45 deletions

View File

@@ -8,8 +8,6 @@
#ifndef __TARGET_GPIOCONFIG_H
#define __TARGET_GPIOCONFIG_H
#include <platform/gpio.h>
#define GPIO_LED1 13
#define GPIO_LED2 14
#define GPIO_LED3 15

View File

@@ -11,7 +11,6 @@
#include <lk/compiler.h>
#include <nrfx_usbd.h>
#include <dev/gpio.h>
#include <platform/gpio.h>
#include <platform/nrf52.h>
#include <target/gpioconfig.h>