version.c 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Dynastream Innovations Inc.
  3. * Cochrane, AB, CANADA
  4. *
  5. * Copyright (c) 2013 Dynastream Innovations Inc.
  6. * All rights reserved. This software may not be reproduced by
  7. * any means without express written approval of Dynastream
  8. * Innovations Inc.
  9. */
  10. /*
  11. * NOTES:
  12. *
  13. * version "AAA#.##B##"
  14. *
  15. * SW_VER_MAJOR - Increases on any released applicaion major feature update/changes or new features
  16. * SW_VER_MINOR - Increases on any release application minor feature update i.e. Bug fixing and minor features.
  17. * SW_VER_PREFIX - Is fixed on this firmware.
  18. * SW_VER_POSTFIX - Increases on any internal development builds. OR might be used for tagging special builds. OR might be used on branch build
  19. */
  20. #define SW_VER_MAJOR "1."
  21. #define SW_VER_MINOR "00" // last change was merging in antfs updates
  22. #define SW_VER_PREFIX "BFD" // N548 Reference Design Bootloader
  23. #define SW_VER_POSTFIX "B00"
  24. /***************************************************************************
  25. */
  26. const char ac_bootloader_version[] = SW_VER_PREFIX SW_VER_MAJOR SW_VER_MINOR SW_VER_POSTFIX; // Max 11 characters including null