1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/lupyuen-LoRaMac-node-nuttx

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Это зеркальный репозиторий, синхронизируется ежедневно с исходного репозитория.
Клонировать/Скачать
gpio-board.h 3 КБ
Копировать Редактировать Исходные данные Просмотреть построчно История
Julian van Doorn Отправлено 5 лет назад f52af41
/*!
* \file gpio-board.h
*
* \brief Target board GPIO driver implementation
*
* \copyright Revised BSD License, see section \ref LICENSE.
*
* \code
* ______ _
* / _____) _ | |
* ( (____ _____ ____ _| |_ _____ ____| |__
* \____ \| ___ | (_ _) ___ |/ ___) _ \
* _____) ) ____| | | || |_| ____( (___| | | |
* (______/|_____)_|_|_| \__)_____)\____)_| |_|
* (C)2013-2017 Semtech
*
* \endcode
*
* \author Miguel Luis ( Semtech )
*
* \author Gregory Cristian ( Semtech )
*/
#ifndef __GPIO_BOARD_H__
#define __GPIO_BOARD_H__
#ifdef __cplusplus
extern "C"
{
#endif
#include "gpio.h"
/*!
* \brief Initializes the given GPIO object
*
* \param [IN] obj Pointer to the GPIO object
* \param [IN] pin Pin name ( please look in pinName-board.h file )
* \param [IN] mode Pin mode [PIN_INPUT, PIN_OUTPUT,
* PIN_ALTERNATE_FCT, PIN_ANALOGIC]
* \param [IN] config Pin config [PIN_PUSH_PULL, PIN_OPEN_DRAIN]
* \param [IN] type Pin type [PIN_NO_PULL, PIN_PULL_UP, PIN_PULL_DOWN]
* \param [IN] value Default output value at initialization
*/
void GpioMcuInit( Gpio_t *obj, PinNames pin, PinModes mode, PinConfigs config, PinTypes type, uint32_t value );
/*!
* \brief Sets a user defined object pointer
*
* \param [IN] context User defined data object pointer to pass back
* on IRQ handler callback
*/
void GpioMcuSetContext( Gpio_t *obj, void* context );
/*!
* \brief GPIO IRQ Initialization
*
* \param [IN] obj Pointer to the GPIO object
* \param [IN] irqMode IRQ mode [NO_IRQ, IRQ_RISING_EDGE,
* IRQ_FALLING_EDGE, IRQ_RISING_FALLING_EDGE]
* \param [IN] irqPriority IRQ priority [IRQ_VERY_LOW_PRIORITY, IRQ_LOW_PRIORITY
* IRQ_MEDIUM_PRIORITY, IRQ_HIGH_PRIORITY
* IRQ_VERY_HIGH_PRIORITY]
* \param [IN] irqHandler Callback function pointer
*/
void GpioMcuSetInterrupt( Gpio_t *obj, IrqModes irqMode, IrqPriorities irqPriority, GpioIrqHandler *irqHandler );
/*!
* \brief Removes the interrupt from the object
*
* \param [IN] obj Pointer to the GPIO object
*/
void GpioMcuRemoveInterrupt( Gpio_t *obj );
/*!
* \brief Writes the given value to the GPIO output
*
* \param [IN] obj Pointer to the GPIO object
* \param [IN] value New GPIO output value
*/
void GpioMcuWrite( Gpio_t *obj, uint32_t value );
/*!
* \brief Toggle the value to the GPIO output
*
* \param [IN] obj Pointer to the GPIO object
*/
void GpioMcuToggle( Gpio_t *obj );
/*!
* \brief Reads the current GPIO input value
*
* \param [IN] obj Pointer to the GPIO object
* \retval value Current GPIO input value
*/
uint32_t GpioMcuRead( Gpio_t *obj );
#ifdef __cplusplus
}
#endif
#endif // __GPIO_BOARD_H__

Комментарий ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://gitlife.ru/oschina-mirror/lupyuen-LoRaMac-node-nuttx.git
git@gitlife.ru:oschina-mirror/lupyuen-LoRaMac-node-nuttx.git
oschina-mirror
lupyuen-LoRaMac-node-nuttx
lupyuen-LoRaMac-node-nuttx
v4.5.2