Origin
This commit is contained in:
33
Ho_Siren/Firmware/blink_pwm_baremetal/app.c
Normal file
33
Ho_Siren/Firmware/blink_pwm_baremetal/app.c
Normal file
@@ -0,0 +1,33 @@
|
||||
/***************************************************************************//**
|
||||
* @file
|
||||
* @brief Top level application functions
|
||||
*******************************************************************************
|
||||
* # License
|
||||
* <b>Copyright 2020 Silicon Laboratories Inc. www.silabs.com</b>
|
||||
*******************************************************************************
|
||||
*
|
||||
* The licensor of this software is Silicon Laboratories Inc. Your use of this
|
||||
* software is governed by the terms of Silicon Labs Master Software License
|
||||
* Agreement (MSLA) available at
|
||||
* www.silabs.com/about-us/legal/master-software-license-agreement. This
|
||||
* software is distributed to you in Source Code format and is governed by the
|
||||
* sections of the MSLA applicable to Source Code.
|
||||
*
|
||||
******************************************************************************/
|
||||
#include "blink_pwm_app.h"
|
||||
|
||||
/***************************************************************************//**
|
||||
* Initialize application.
|
||||
******************************************************************************/
|
||||
void app_init(void)
|
||||
{
|
||||
blink_pwm_init();
|
||||
}
|
||||
|
||||
/***************************************************************************//**
|
||||
* App ticking function.
|
||||
******************************************************************************/
|
||||
void app_process_action(void)
|
||||
{
|
||||
blink_pwm_process_action();
|
||||
}
|
||||
Reference in New Issue
Block a user