mirror of
https://github.com/oopuuu/zTC1.git
synced 2025-12-14 05:58:13 +08:00
134 lines
4.3 KiB
C
134 lines
4.3 KiB
C
/**
|
|
******************************************************************************
|
|
* @file platform.c
|
|
* @author William Xu
|
|
* @version V1.0.0
|
|
* @date 05-Oct-2016
|
|
* @brief This file provides all MICO Peripherals mapping table and platform
|
|
* specific functions.
|
|
******************************************************************************
|
|
*
|
|
* The MIT License
|
|
* Copyright (c) 2016 MXCHIP Inc.
|
|
*
|
|
* Permission is hereby gra nted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is furnished
|
|
* to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
|
|
* IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
******************************************************************************
|
|
*/
|
|
|
|
#include "common.h"
|
|
#include "mico_platform.h"
|
|
|
|
#include "platform.h"
|
|
#include "button.h"
|
|
#include "moc_api.h"
|
|
|
|
#ifdef USE_MiCOKit_EXT
|
|
#include "MiCOKit_EXT/micokit_ext.h"
|
|
#endif
|
|
|
|
/******************************************************
|
|
* Macros
|
|
******************************************************/
|
|
|
|
/******************************************************
|
|
* Constants
|
|
******************************************************/
|
|
|
|
/******************************************************
|
|
* Enumerations
|
|
******************************************************/
|
|
|
|
/******************************************************
|
|
* Type Definitions
|
|
******************************************************/
|
|
|
|
/******************************************************
|
|
* Structures
|
|
******************************************************/
|
|
|
|
/******************************************************
|
|
* Function Declarations
|
|
******************************************************/
|
|
extern WEAK void PlatformEasyLinkButtonClickedCallback(void);
|
|
extern WEAK void PlatformEasyLinkButtonLongPressedCallback(void);
|
|
|
|
/******************************************************
|
|
* Variables Definitions
|
|
******************************************************/
|
|
|
|
/******************************************************
|
|
* Function Definitions
|
|
******************************************************/
|
|
void init_platform( void )
|
|
{
|
|
#if defined (MOC) && (MOC == 1)
|
|
button_init_t init;
|
|
extern int get_last_reset_reason(void);
|
|
|
|
if ( get_last_reset_reason() & LAST_RST_CAUSE_WDT )
|
|
{
|
|
platform_log( "WARNING: Watchdog reset occured previously." );
|
|
}
|
|
|
|
MicoGpioInitialize( (mico_gpio_t)MICO_SYS_LED, OUTPUT_PUSH_PULL );
|
|
MicoGpioOutputLow( (mico_gpio_t)MICO_SYS_LED );
|
|
|
|
// Initialise EasyLink buttons
|
|
init.gpio = EasyLink_BUTTON;
|
|
init.pressed_func = PlatformEasyLinkButtonClickedCallback;
|
|
init.long_pressed_func = PlatformEasyLinkButtonLongPressedCallback;
|
|
init.long_pressed_timeout = RestoreDefault_TimeOut;
|
|
|
|
button_init( IOBUTTON_EASYLINK, init );
|
|
#endif
|
|
}
|
|
|
|
void MicoSysLed(bool onoff)
|
|
{
|
|
if (onoff) {
|
|
MicoGpioOutputLow( (mico_gpio_t)MICO_SYS_LED );
|
|
} else {
|
|
MicoGpioOutputHigh( (mico_gpio_t)MICO_SYS_LED );
|
|
}
|
|
}
|
|
|
|
void MicoRfLed(bool onoff)
|
|
{
|
|
if (onoff) {
|
|
MicoGpioOutputLow( (mico_gpio_t)MICO_RF_LED );
|
|
} else {
|
|
MicoGpioOutputHigh( (mico_gpio_t)MICO_RF_LED );
|
|
}
|
|
}
|
|
|
|
|
|
#ifdef USE_MiCOKit_EXT
|
|
// add test mode for MiCOKit-EXT board,check Arduino_D5 pin when system startup
|
|
bool MicoExtShouldEnterTestMode(void)
|
|
{
|
|
if( MicoGpioInputGet((mico_gpio_t)Arduino_D5)==false ){
|
|
return true;
|
|
}
|
|
else{
|
|
return false;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
|