123456789101112131415161718192021222324 |
- /*
- This software is subject to the license described in the License.txt file
- included with this software distribution. You may not use this file except in compliance
- with this license.
- Copyright (c) Dynastream Innovations Inc. 2014
- All rights reserved.
- */
- #if !defined(CONFIG_H)
- #define CONFIG_H
- #include "types.h"
- // Version Information
- #define SW_VER_PPP "AKX"
- #define SW_VER_NUM "0.3"
- #define SW_VER_DEV "31"
- #define SW_VER_BRANCH ""
- #define SW_VER SW_VER_PPP SW_VER_NUM SW_VER_DEV SW_VER_BRANCH
- #endif // !defined(CONFIG_H)
|