lol
Fork of Application by
mbed-dev/targets/TARGET_ONSEMI/TARGET_NCS36510/swversion.c@10:41552d038a69, 2017-01-10 (annotated)
- Committer:
- Zaitsev
- Date:
- Tue Jan 10 20:42:26 2017 +0000
- Revision:
- 10:41552d038a69
USB Serial bi-directional bridge
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Zaitsev | 10:41552d038a69 | 1 | /** |
Zaitsev | 10:41552d038a69 | 2 | ****************************************************************************** |
Zaitsev | 10:41552d038a69 | 3 | * @file swversion.c |
Zaitsev | 10:41552d038a69 | 4 | * @brief Defines the system revision for the current application. |
Zaitsev | 10:41552d038a69 | 5 | * @internal |
Zaitsev | 10:41552d038a69 | 6 | * @author ON Semiconductor |
Zaitsev | 10:41552d038a69 | 7 | * $Rev: 2199 $ |
Zaitsev | 10:41552d038a69 | 8 | * $Date: 2013-08-07 12:17:27 +0200 (Wed, 07 Aug 2013) $ |
Zaitsev | 10:41552d038a69 | 9 | ****************************************************************************** |
Zaitsev | 10:41552d038a69 | 10 | * Copyright 2016 Semiconductor Components Industries LLC (d/b/a "ON Semiconductor"). |
Zaitsev | 10:41552d038a69 | 11 | * All rights reserved. This software and/or documentation is licensed by ON Semiconductor |
Zaitsev | 10:41552d038a69 | 12 | * under limited terms and conditions. The terms and conditions pertaining to the software |
Zaitsev | 10:41552d038a69 | 13 | * and/or documentation are available at http://www.onsemi.com/site/pdf/ONSEMI_T&C.pdf |
Zaitsev | 10:41552d038a69 | 14 | * ("ON Semiconductor Standard Terms and Conditions of Sale, Section 8 Software") and |
Zaitsev | 10:41552d038a69 | 15 | * if applicable the software license agreement. Do not use this software and/or |
Zaitsev | 10:41552d038a69 | 16 | * documentation unless you have carefully read and you agree to the limited terms and |
Zaitsev | 10:41552d038a69 | 17 | * conditions. By using this software and/or documentation, you agree to the limited |
Zaitsev | 10:41552d038a69 | 18 | * terms and conditions. |
Zaitsev | 10:41552d038a69 | 19 | * |
Zaitsev | 10:41552d038a69 | 20 | * THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED |
Zaitsev | 10:41552d038a69 | 21 | * OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF |
Zaitsev | 10:41552d038a69 | 22 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. |
Zaitsev | 10:41552d038a69 | 23 | * ON SEMICONDUCTOR SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, |
Zaitsev | 10:41552d038a69 | 24 | * INCIDENTAL, OR CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. |
Zaitsev | 10:41552d038a69 | 25 | * @endinternal |
Zaitsev | 10:41552d038a69 | 26 | * |
Zaitsev | 10:41552d038a69 | 27 | * @ingroup common_mib |
Zaitsev | 10:41552d038a69 | 28 | */ |
Zaitsev | 10:41552d038a69 | 29 | |
Zaitsev | 10:41552d038a69 | 30 | /* Other inclusions */ |
Zaitsev | 10:41552d038a69 | 31 | #include <stdint.h> |
Zaitsev | 10:41552d038a69 | 32 | #include "fib.h" |
Zaitsev | 10:41552d038a69 | 33 | |
Zaitsev | 10:41552d038a69 | 34 | /************************************************************************************************* |
Zaitsev | 10:41552d038a69 | 35 | * * |
Zaitsev | 10:41552d038a69 | 36 | * Global variables * |
Zaitsev | 10:41552d038a69 | 37 | * * |
Zaitsev | 10:41552d038a69 | 38 | *************************************************************************************************/ |
Zaitsev | 10:41552d038a69 | 39 | |
Zaitsev | 10:41552d038a69 | 40 | #ifdef __ICCARM__ |
Zaitsev | 10:41552d038a69 | 41 | /** Define a fib table constant region, to be located at fixed offset in the binary |
Zaitsev | 10:41552d038a69 | 42 | * such that flash loader knows where to find it and gets the build dependent data |
Zaitsev | 10:41552d038a69 | 43 | * it needs for programming the new fib. |
Zaitsev | 10:41552d038a69 | 44 | */ |
Zaitsev | 10:41552d038a69 | 45 | __root const fibtable_t fib_table @ "FIBTABLE" = {LOAD_ADDRESS,{0x0,0x00,0x00,0x00}}; |
Zaitsev | 10:41552d038a69 | 46 | #endif /* __ICCARM__ */ |
Zaitsev | 10:41552d038a69 | 47 | |
Zaitsev | 10:41552d038a69 | 48 | const mib_systemRevision_t systemRevision = { |
Zaitsev | 10:41552d038a69 | 49 | 0x82, /**< hardware revision */ |
Zaitsev | 10:41552d038a69 | 50 | 0x00, /**< patch level */ |
Zaitsev | 10:41552d038a69 | 51 | 0x01, /**< Build number */ |
Zaitsev | 10:41552d038a69 | 52 | 0x00, /**< feature set, Minor version */ |
Zaitsev | 10:41552d038a69 | 53 | 0x01, /**< generation, Major version */ |
Zaitsev | 10:41552d038a69 | 54 | 'E' /**< release */ |
Zaitsev | 10:41552d038a69 | 55 | }; |