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

OSCHINA-MIRROR/lupyuen-LoRaMac-node-nuttx

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Это зеркальный репозиторий, синхронизируется ежедневно с исходного репозитория.
Клонировать/Скачать
board.h 2.6 КБ
Копировать Редактировать Исходные данные Просмотреть построчно История
Julian van Doorn Отправлено 5 лет назад f52af41
/*!
* \file board.h
*
* \brief Target board general functions implementation
*
* \copyright Revised BSD License, see section \ref LICENSE.
*
* \code
* ______ _
* / _____) _ | |
* ( (____ _____ ____ _| |_ _____ ____| |__
* \____ \| ___ | (_ _) ___ |/ ___) _ \
* _____) ) ____| | | || |_| ____( (___| | | |
* (______/|_____)_|_|_| \__)_____)\____)_| |_|
* (C)2013-2017 Semtech
*
* \endcode
*
* \author Miguel Luis ( Semtech )
*
* \author Gregory Cristian ( Semtech )
*/
#ifndef __BOARD_H__
#define __BOARD_H__
#ifdef __cplusplus
extern "C"
{
#endif
#include <stdint.h>
#include "utilities.h"
/*!
* Possible power sources
*/
enum BoardPowerSources
{
USB_POWER = 0,
BATTERY_POWER,
};
/*!
* \brief Initializes the mcu.
*/
void BoardInitMcu( void );
/*!
* \brief Resets the mcu.
*/
void BoardResetMcu( void );
/*!
* \brief Initializes the boards peripherals.
*/
void BoardInitPeriph( void );
/*!
* \brief De-initializes the target board peripherals to decrease power
* consumption.
*/
void BoardDeInitMcu( void );
/*!
* \brief Gets the current potentiometer level value
*
* \retval value Potentiometer level ( value in percent )
*/
uint8_t BoardGetPotiLevel( void );
/*!
* \brief Measure the Battery voltage
*
* \retval value battery voltage in volts
*/
uint32_t BoardGetBatteryVoltage( void );
/*!
* \brief Get the current battery level
*
* \retval value battery level [ 0: USB,
* 1: Min level,
* x: level
* 254: fully charged,
* 255: Error]
*/
uint8_t BoardGetBatteryLevel( void );
/*!
* Returns a pseudo random seed generated using the MCU Unique ID
*
* \retval seed Generated pseudo random seed
*/
uint32_t BoardGetRandomSeed( void );
/*!
* \brief Gets the board 64 bits unique ID
*
* \param [IN] id Pointer to an array that will contain the Unique ID
*/
void BoardGetUniqueId( uint8_t *id );
/*!
* \brief Manages the entry into ARM cortex deep-sleep mode
*/
void BoardLowPowerHandler( void );
/*!
* \brief Get the board power source
*
* \retval value power source [0: USB_POWER, 1: BATTERY_POWER]
*/
uint8_t GetBoardPowerSource( void );
/*!
* \brief Get the board version
*
* \retval value Version
*/
Version_t BoardGetVersion( void );
#ifdef __cplusplus
}
#endif
#endif // __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.0