1/* 2 * This is an automatically generated HDF config file. Do not modify it manually. 3 */ 4 5#include "golden.h" 6 7static const struct HdfConfigTestFooBase g_hdfConfigFooBase[]; 8 9static const uint8_t g_hcsConfigArrayTerm31[2] = { 10 0x2, 0x2 11}; 12 13static const uint8_t g_hcsConfigArrayTerm32[1] = { 14 0x1 15}; 16 17static const struct HdfConfigTestFooBase g_hdfConfigFooBase[] = { 18 [0] = { 19 .term1 = 0x2, 20 .term2 = 0x2, 21 .term3 = g_hcsConfigArrayTerm31, 22 .term3Size = 2, 23 .attr = { 24 .term4 = 0x4, 25 }, 26 }, 27 [1] = { 28 .term1 = 0x2, 29 .term3 = g_hcsConfigArrayTerm32, 30 .term3Size = 1, 31 .attr = { 32 .term4 = 0x1, 33 }, 34 .term2 = 0x2, 35 }, 36}; 37 38static const struct HdfConfigTestRoot g_hdfConfigTestModuleRoot = { 39 .module = "test", 40 .fooBase = g_hdfConfigFooBase, 41 .fooBaseSize = 2, 42 .foo = { 43 .foo1 = { 44 .term1 = "world", 45 .bar2_2 = { "test3" }, 46 .foo = &g_hdfConfigTestModuleRoot.foo, 47 .bar = &g_hdfConfigTestModuleRoot.bar, 48 }, 49 .array_oct = { 0x1, 0x2, 0x3, 0x4 }, 50 }, 51 .bar = { 52 }, 53 .t = 0x1, 54}; 55 56const struct HdfConfigTestRoot* HdfGetTestModuleConfigRoot(void) 57{ 58 return &g_hdfConfigTestModuleRoot; 59} 60