mapp_ext.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. //==================================================================
  2. //
  3. // Filename: mapp_ext.c
  4. // Description: External Input driver.
  5. //
  6. //------------------------------------------------------------------
  7. //
  8. // version:
  9. // date: 23:54pm, 08.Apr.2012, by Sirius
  10. // Description:
  11. //
  12. //------------------------------------------------------------------
  13. //==================================================================
  14. /*------------------------------------------------------------------------------
  15. * I N C L U D E
  16. *------------------------------------------------------------------------------*/
  17. #include "stm32f0xx.h"
  18. #include "general.h"
  19. #include "main.h"
  20. #include "mapp_gpio.h"
  21. #include "mapp_ext.h"
  22. #include "mapp_arm.h"
  23. #include "mapp_msg.h"
  24. #include "sx1276_7_8.h"
  25. #include "mapp_pwr.h"
  26. /*------------------------------------------------------------------------------
  27. * D E F I N E
  28. *------------------------------------------------------------------------------*/
  29. /*------------------------------------------------------------------------------
  30. * S T R U C T
  31. *------------------------------------------------------------------------------*/
  32. /*------------------------------------------------------------------------------
  33. * S T A T I C - V A R I A B L E S
  34. *------------------------------------------------------------------------------*/
  35. /*------------------------------------------------------------------------------
  36. * G L O B A L
  37. *------------------------------------------------------------------------------*/
  38. /*------------------------------------------------------------------------------
  39. * P R O T O T Y P E
  40. *------------------------------------------------------------------------------*/
  41. //----------------------------------------------------------------------
  42. void ExtValInit(void)
  43. {
  44. }
  45. /*----------------------------------------------------------------------
  46. // Function uses : ExtTask
  47. // Input parameter :
  48. // Output parameter :
  49. // Use Function : execute every 35ms.
  50. // Reserve date : 16:22pm, 27.Nov.2012, written by Sirius
  51. ----------------------------------------------------------------------*/
  52. void ExtTask(void)
  53. {
  54. }
  55. /*------------------------------- E O F ----------------------------------------*/