main.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. ******************************************************************************
  3. * @file Project/STM32F2xx_StdPeriph_Template/main.h
  4. * @author MCD Application Team
  5. * @version V1.2.0
  6. * @date 13-April-2012
  7. * @brief Header for main.c module
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * Copyright (c) 2012 STMicroelectronics.
  12. * All rights reserved.
  13. *
  14. * This software is licensed under terms that can be found in the LICENSE file
  15. * in the root directory of this software component.
  16. * If no LICENSE file comes with this software, it is provided AS-IS.
  17. *
  18. ******************************************************************************
  19. */
  20. /* Define to prevent recursive inclusion -------------------------------------*/
  21. #ifndef __MAIN_H
  22. #define __MAIN_H
  23. /* Includes ------------------------------------------------------------------*/
  24. #include "stm32f2xx.h"
  25. #include <stdio.h>
  26. extern char gatewayId[11];
  27. /* Exported types ------------------------------------------------------------*/
  28. /* Exported constants --------------------------------------------------------*/
  29. /* Exported macro ------------------------------------------------------------*/
  30. /* Exported functions ------------------------------------------------------- */
  31. #endif /* __MAIN_H */