Implement a secure ICS protocol targeting LoRa Node151 microcontroller for controlling irrigation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
803 B

  1. /*!
  2. * \file firmwareVersion.h
  3. *
  4. * \brief Firmware version definition
  5. *
  6. * \copyright Revised BSD License, see file LICENSE.txt
  7. *
  8. * \code
  9. * ______ _
  10. * / _____) _ | |
  11. * ( (____ _____ ____ _| |_ _____ ____| |__
  12. * \____ \| ___ | (_ _) ___ |/ ___) _ \
  13. * _____) ) ____| | | || |_| ____( (___| | | |
  14. * (______/|_____)_|_|_| \__)_____)\____)_| |_|
  15. * (C)2019-2020 Semtech
  16. *
  17. * \endcode
  18. */
  19. #ifndef __FIRMWARE_VERSION_H__
  20. #define __FIRMWARE_VERSION_H__
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. #define FIRMWARE_VERSION 0x01020000 // 1.2.0.0
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28. #endif // __FIRMWARE_VERSION_H__