1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- //==================================================================
- //
- // Filename: mapp_ext.c
- // Description: External Input driver.
- //
- //------------------------------------------------------------------
- //
- // version:
- // date: 23:54pm, 08.Apr.2012, by Sirius
- // Description:
- //
- //------------------------------------------------------------------
- //==================================================================
- /*------------------------------------------------------------------------------
- * I N C L U D E
- *------------------------------------------------------------------------------*/
- #include "stm32f0xx.h"
- #include "general.h"
- #include "main.h"
- #include "mapp_gpio.h"
- #include "mapp_ext.h"
- #include "mapp_arm.h"
- #include "mapp_msg.h"
- #include "sx1276_7_8.h"
- #include "mapp_pwr.h"
- /*------------------------------------------------------------------------------
- * D E F I N E
- *------------------------------------------------------------------------------*/
- /*------------------------------------------------------------------------------
- * S T R U C T
- *------------------------------------------------------------------------------*/
- /*------------------------------------------------------------------------------
- * S T A T I C - V A R I A B L E S
- *------------------------------------------------------------------------------*/
- /*------------------------------------------------------------------------------
- * G L O B A L
- *------------------------------------------------------------------------------*/
- /*------------------------------------------------------------------------------
- * P R O T O T Y P E
- *------------------------------------------------------------------------------*/
- //----------------------------------------------------------------------
- void ExtValInit(void)
- {
- }
- /*----------------------------------------------------------------------
- // Function uses : ExtTask
- // Input parameter :
- // Output parameter :
- // Use Function : execute every 35ms.
- // Reserve date : 16:22pm, 27.Nov.2012, written by Sirius
- ----------------------------------------------------------------------*/
- void ExtTask(void)
- {
-
- }
- /*------------------------------- E O F ----------------------------------------*/
|