Fls_VS_0_PBcfg.c 97 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. /*==================================================================================================
  2. * Project : RTD AUTOSAR 4.4
  3. * Platform : CORTEXM
  4. * Peripheral : FTFC_FLS_IP IPV_QSPI
  5. * Dependencies : none
  6. *
  7. * Autosar Version : 4.4.0
  8. * Autosar Revision : ASR_REL_4_4_REV_0000
  9. * Autosar Conf.Variant :
  10. * SW Version : 1.0.0
  11. * Build Version : S32K1_RTD_1_0_0_HF01_D2109_ASR_REL_4_4_REV_0000_20210907
  12. *
  13. * (c) Copyright 2020-2021 NXP Semiconductors
  14. * All Rights Reserved.
  15. *
  16. * NXP Confidential. This software is owned or controlled by NXP and may only be
  17. * used strictly in accordance with the applicable license terms. By expressly
  18. * accepting such terms or by downloading, installing, activating and/or otherwise
  19. * using the software, you are agreeing that you have read, and that you agree to
  20. * comply with and are bound by, such license terms. If you do not agree to be
  21. * bound by the applicable license terms, then you may not retain, install,
  22. * activate or otherwise use the software.
  23. ==================================================================================================*/
  24. /**
  25. * @file Fls_VS_0_PBcfg.c
  26. *
  27. * @addtogroup FLS
  28. * @{
  29. */
  30. /* implements Fls_PBcfg.c_Artifact */
  31. #ifdef __cplusplus
  32. extern "C"{
  33. #endif
  34. /*==================================================================================================
  35. * INCLUDE FILES
  36. * 1) system and project includes
  37. * 2) needed interfaces from external units
  38. * 3) internal and external interfaces from this unit
  39. ==================================================================================================*/
  40. #include "Fls.h"
  41. #include "Qspi_Ip_Features.h"
  42. #include "Qspi_Ip_Cfg.h"
  43. /*==================================================================================================
  44. * SOURCE FILE VERSION INFORMATION
  45. ==================================================================================================*/
  46. #define FLS_VENDOR_ID_CFG_C 43
  47. #define FLS_AR_RELEASE_MAJOR_VERSION_CFG_C 4
  48. #define FLS_AR_RELEASE_MINOR_VERSION_CFG_C 4
  49. #define FLS_AR_RELEASE_REVISION_VERSION_CFG_C 0
  50. #define FLS_SW_MAJOR_VERSION_CFG_C 1
  51. #define FLS_SW_MINOR_VERSION_CFG_C 0
  52. #define FLS_SW_PATCH_VERSION_CFG_C 0
  53. /*==================================================================================================
  54. * FILE VERSION CHECKS
  55. ==================================================================================================*/
  56. /* Check if current file and Fls header file are of the same vendor */
  57. #if (FLS_VENDOR_ID_CFG_C != FLS_VENDOR_ID)
  58. #error "Fls_PBcfg.c and Fls.h have different vendor ids"
  59. #endif
  60. /* Check if current file and Fls header file are of the same Autosar version */
  61. #if ((FLS_AR_RELEASE_MAJOR_VERSION_CFG_C != FLS_AR_RELEASE_MAJOR_VERSION) || \
  62. (FLS_AR_RELEASE_MINOR_VERSION_CFG_C != FLS_AR_RELEASE_MINOR_VERSION) || \
  63. (FLS_AR_RELEASE_REVISION_VERSION_CFG_C != FLS_AR_RELEASE_REVISION_VERSION) \
  64. )
  65. #error "AutoSar Version Numbers of Fls_PBcfg.c and Fls.h are different"
  66. #endif
  67. /* Check if current file and Fls header file are of the same Software version */
  68. #if ((FLS_SW_MAJOR_VERSION_CFG_C != FLS_SW_MAJOR_VERSION) || \
  69. (FLS_SW_MINOR_VERSION_CFG_C != FLS_SW_MINOR_VERSION) || \
  70. (FLS_SW_PATCH_VERSION_CFG_C != FLS_SW_PATCH_VERSION) \
  71. )
  72. #error "Software Version Numbers of Fls_PBcfg.c and Fls.h are different"
  73. #endif
  74. /* Check if current file and Qspi_Ip_Features header file are of the same vendor */
  75. #if (FLS_VENDOR_ID_CFG_C != QSPI_IP_FEATURES_VENDOR_ID_CFG)
  76. #error "Fls_PBcfg.c and Qspi_Ip_Features.h have different vendor ids"
  77. #endif
  78. /* Check if current file and Qspi_Ip_Features header file are of the same Autosar version */
  79. #if ((FLS_AR_RELEASE_MAJOR_VERSION_CFG_C != QSPI_IP_FEATURES_AR_RELEASE_MAJOR_VERSION_CFG) || \
  80. (FLS_AR_RELEASE_MINOR_VERSION_CFG_C != QSPI_IP_FEATURES_AR_RELEASE_MINOR_VERSION_CFG) || \
  81. (FLS_AR_RELEASE_REVISION_VERSION_CFG_C != QSPI_IP_FEATURES_AR_RELEASE_REVISION_VERSION_CFG) \
  82. )
  83. #error "AutoSar Version Numbers of Fls_PBcfg.c and Qspi_Ip_Features.h are different"
  84. #endif
  85. /* Check if current file and Qspi_Ip_Features header file are of the same Software version */
  86. #if ((FLS_SW_MAJOR_VERSION_CFG_C != QSPI_IP_FEATURES_SW_MAJOR_VERSION_CFG) || \
  87. (FLS_SW_MINOR_VERSION_CFG_C != QSPI_IP_FEATURES_SW_MINOR_VERSION_CFG) || \
  88. (FLS_SW_PATCH_VERSION_CFG_C != QSPI_IP_FEATURES_SW_PATCH_VERSION_CFG) \
  89. )
  90. #error "Software Version Numbers of Fls_PBcfg.c and Qspi_Ip_Features.h are different"
  91. #endif
  92. /* Check if current file and Qspi_Ip_Cfg header file are of the same vendor */
  93. #if (FLS_VENDOR_ID_CFG_C != QSPI_IP_VENDOR_ID_CFG)
  94. #error "Fls_PBcfg.c and Qspi_Ip_Cfg.h have different vendor ids"
  95. #endif
  96. /* Check if current file and Qspi_Ip_Cfg header file are of the same Autosar version */
  97. #if ((FLS_AR_RELEASE_MAJOR_VERSION_CFG_C != QSPI_IP_AR_RELEASE_MAJOR_VERSION_CFG) || \
  98. (FLS_AR_RELEASE_MINOR_VERSION_CFG_C != QSPI_IP_AR_RELEASE_MINOR_VERSION_CFG) || \
  99. (FLS_AR_RELEASE_REVISION_VERSION_CFG_C != QSPI_IP_AR_RELEASE_REVISION_VERSION_CFG) \
  100. )
  101. #error "AutoSar Version Numbers of Fls_PBcfg.c and Qspi_Ip_Cfg.h are different"
  102. #endif
  103. /* Check if current file and Qspi_Ip_Cfg header file are of the same Software version */
  104. #if ((FLS_SW_MAJOR_VERSION_CFG_C != QSPI_IP_SW_MAJOR_VERSION_CFG) || \
  105. (FLS_SW_MINOR_VERSION_CFG_C != QSPI_IP_SW_MINOR_VERSION_CFG) || \
  106. (FLS_SW_PATCH_VERSION_CFG_C != QSPI_IP_SW_PATCH_VERSION_CFG) \
  107. )
  108. #error "Software Version Numbers of Fls_PBcfg.c and Qspi_Ip_Cfg.h are different"
  109. #endif
  110. /*==================================================================================================
  111. FUNCTION PROTOTYPES
  112. ==================================================================================================*/
  113. /*==================================================================================================
  114. CONSTANTS
  115. ==================================================================================================*/
  116. #define FLS_START_SEC_CODE
  117. #include "Fls_MemMap.h"
  118. /* Declaration of Fls Access Code Pointer (_ERASE_FUNC_ADDRESS_)*/
  119. extern void _ERASE_FUNC_ADDRESS_(void);
  120. /* Declaration of Fls Access Code Pointer (_WRITE_FUNC_ADDRESS_)*/
  121. extern void _WRITE_FUNC_ADDRESS_(void);
  122. #define FLS_STOP_SEC_CODE
  123. #include "Fls_MemMap.h"
  124. #define FLS_START_SEC_CONFIG_DATA_8
  125. #include "Fls_MemMap.h"
  126. /* aFlsSectorFlags */
  127. static const uint8 FlsConfigSet_VS_0_aFlsSectorFlags[128U] =
  128. {
  129. 0U, /* FlsSector_0 */
  130. 0U, /* FlsSector_1 */
  131. 0U, /* FlsSector_2 */
  132. 0U, /* FlsSector_3 */
  133. 0U, /* FlsSector_4 */
  134. 0U, /* FlsSector_5 */
  135. 0U, /* FlsSector_6 */
  136. 0U, /* FlsSector_7 */
  137. 0U, /* FlsSector_8 */
  138. 0U, /* FlsSector_9 */
  139. 0U, /* FlsSector_10 */
  140. 0U, /* FlsSector_11 */
  141. 0U, /* FlsSector_12 */
  142. 0U, /* FlsSector_13 */
  143. 0U, /* FlsSector_14 */
  144. 0U, /* FlsSector_15 */
  145. 0U, /* FlsSector_16 */
  146. 0U, /* FlsSector_17 */
  147. 0U, /* FlsSector_18 */
  148. 0U, /* FlsSector_19 */
  149. 0U, /* FlsSector_20 */
  150. 0U, /* FlsSector_21 */
  151. 0U, /* FlsSector_22 */
  152. 0U, /* FlsSector_23 */
  153. 0U, /* FlsSector_24 */
  154. 0U, /* FlsSector_25 */
  155. 0U, /* FlsSector_26 */
  156. 0U, /* FlsSector_27 */
  157. 0U, /* FlsSector_28 */
  158. 0U, /* FlsSector_29 */
  159. 0U, /* FlsSector_30 */
  160. 0U, /* FlsSector_31 */
  161. 0U, /* FlsSector_32 */
  162. 0U, /* FlsSector_33 */
  163. 0U, /* FlsSector_34 */
  164. 0U, /* FlsSector_35 */
  165. 0U, /* FlsSector_36 */
  166. 0U, /* FlsSector_37 */
  167. 0U, /* FlsSector_38 */
  168. 0U, /* FlsSector_39 */
  169. 0U, /* FlsSector_40 */
  170. 0U, /* FlsSector_41 */
  171. 0U, /* FlsSector_42 */
  172. 0U, /* FlsSector_43 */
  173. 0U, /* FlsSector_44 */
  174. 0U, /* FlsSector_45 */
  175. 0U, /* FlsSector_46 */
  176. 0U, /* FlsSector_47 */
  177. 0U, /* FlsSector_48 */
  178. 0U, /* FlsSector_49 */
  179. 0U, /* FlsSector_50 */
  180. 0U, /* FlsSector_51 */
  181. 0U, /* FlsSector_52 */
  182. 0U, /* FlsSector_53 */
  183. 0U, /* FlsSector_54 */
  184. 0U, /* FlsSector_55 */
  185. 0U, /* FlsSector_56 */
  186. 0U, /* FlsSector_57 */
  187. 0U, /* FlsSector_58 */
  188. 0U, /* FlsSector_59 */
  189. 0U, /* FlsSector_60 */
  190. 0U, /* FlsSector_61 */
  191. 0U, /* FlsSector_62 */
  192. 0U, /* FlsSector_63 */
  193. 0U, /* FlsSector_64 */
  194. 0U, /* FlsSector_65 */
  195. 0U, /* FlsSector_66 */
  196. 0U, /* FlsSector_67 */
  197. 0U, /* FlsSector_68 */
  198. 0U, /* FlsSector_69 */
  199. 0U, /* FlsSector_70 */
  200. 0U, /* FlsSector_71 */
  201. 0U, /* FlsSector_72 */
  202. 0U, /* FlsSector_73 */
  203. 0U, /* FlsSector_74 */
  204. 0U, /* FlsSector_75 */
  205. 0U, /* FlsSector_76 */
  206. 0U, /* FlsSector_77 */
  207. 0U, /* FlsSector_78 */
  208. 0U, /* FlsSector_79 */
  209. 0U, /* FlsSector_80 */
  210. 0U, /* FlsSector_81 */
  211. 0U, /* FlsSector_82 */
  212. 0U, /* FlsSector_83 */
  213. 0U, /* FlsSector_84 */
  214. 0U, /* FlsSector_85 */
  215. 0U, /* FlsSector_86 */
  216. 0U, /* FlsSector_87 */
  217. 0U, /* FlsSector_88 */
  218. 0U, /* FlsSector_89 */
  219. 0U, /* FlsSector_90 */
  220. 0U, /* FlsSector_91 */
  221. 0U, /* FlsSector_92 */
  222. 0U, /* FlsSector_93 */
  223. 0U, /* FlsSector_94 */
  224. 0U, /* FlsSector_95 */
  225. 0U, /* FlsSector_96 */
  226. 0U, /* FlsSector_97 */
  227. 0U, /* FlsSector_98 */
  228. 0U, /* FlsSector_99 */
  229. 0U, /* FlsSector_100 */
  230. 0U, /* FlsSector_101 */
  231. 0U, /* FlsSector_102 */
  232. 0U, /* FlsSector_103 */
  233. 0U, /* FlsSector_104 */
  234. 0U, /* FlsSector_105 */
  235. 0U, /* FlsSector_106 */
  236. 0U, /* FlsSector_107 */
  237. 0U, /* FlsSector_108 */
  238. 0U, /* FlsSector_109 */
  239. 0U, /* FlsSector_110 */
  240. 0U, /* FlsSector_111 */
  241. 0U, /* FlsSector_112 */
  242. 0U, /* FlsSector_113 */
  243. 0U, /* FlsSector_114 */
  244. 0U, /* FlsSector_115 */
  245. 0U, /* FlsSector_116 */
  246. 0U, /* FlsSector_117 */
  247. 0U, /* FlsSector_118 */
  248. 0U, /* FlsSector_119 */
  249. 0U, /* FlsSector_120 */
  250. 0U, /* FlsSector_121 */
  251. 0U, /* FlsSector_122 */
  252. 0U, /* FlsSector_123 */
  253. 0U, /* FlsSector_124 */
  254. 0U, /* FlsSector_125 */
  255. 0U, /* FlsSector_126 */
  256. 0U /* FlsSector_127 */
  257. };
  258. #define FLS_STOP_SEC_CONFIG_DATA_8
  259. #include "Fls_MemMap.h"
  260. #define FLS_START_SEC_CONFIG_DATA_UNSPECIFIED
  261. #include "Fls_MemMap.h"
  262. /* aFlsSectorEndAddr */
  263. static const Fls_AddressType FlsConfigSet_VS_0_aFlsSectorEndAddr[128U] =
  264. {
  265. (Fls_AddressType)4095U, /* FlsSector_0 */
  266. (Fls_AddressType)8191U, /* FlsSector_1 */
  267. (Fls_AddressType)12287U, /* FlsSector_2 */
  268. (Fls_AddressType)16383U, /* FlsSector_3 */
  269. (Fls_AddressType)20479U, /* FlsSector_4 */
  270. (Fls_AddressType)24575U, /* FlsSector_5 */
  271. (Fls_AddressType)28671U, /* FlsSector_6 */
  272. (Fls_AddressType)32767U, /* FlsSector_7 */
  273. (Fls_AddressType)36863U, /* FlsSector_8 */
  274. (Fls_AddressType)40959U, /* FlsSector_9 */
  275. (Fls_AddressType)45055U, /* FlsSector_10 */
  276. (Fls_AddressType)49151U, /* FlsSector_11 */
  277. (Fls_AddressType)53247U, /* FlsSector_12 */
  278. (Fls_AddressType)57343U, /* FlsSector_13 */
  279. (Fls_AddressType)61439U, /* FlsSector_14 */
  280. (Fls_AddressType)65535U, /* FlsSector_15 */
  281. (Fls_AddressType)69631U, /* FlsSector_16 */
  282. (Fls_AddressType)73727U, /* FlsSector_17 */
  283. (Fls_AddressType)77823U, /* FlsSector_18 */
  284. (Fls_AddressType)81919U, /* FlsSector_19 */
  285. (Fls_AddressType)86015U, /* FlsSector_20 */
  286. (Fls_AddressType)90111U, /* FlsSector_21 */
  287. (Fls_AddressType)94207U, /* FlsSector_22 */
  288. (Fls_AddressType)98303U, /* FlsSector_23 */
  289. (Fls_AddressType)102399U, /* FlsSector_24 */
  290. (Fls_AddressType)106495U, /* FlsSector_25 */
  291. (Fls_AddressType)110591U, /* FlsSector_26 */
  292. (Fls_AddressType)114687U, /* FlsSector_27 */
  293. (Fls_AddressType)118783U, /* FlsSector_28 */
  294. (Fls_AddressType)122879U, /* FlsSector_29 */
  295. (Fls_AddressType)126975U, /* FlsSector_30 */
  296. (Fls_AddressType)131071U, /* FlsSector_31 */
  297. (Fls_AddressType)135167U, /* FlsSector_32 */
  298. (Fls_AddressType)139263U, /* FlsSector_33 */
  299. (Fls_AddressType)143359U, /* FlsSector_34 */
  300. (Fls_AddressType)147455U, /* FlsSector_35 */
  301. (Fls_AddressType)151551U, /* FlsSector_36 */
  302. (Fls_AddressType)155647U, /* FlsSector_37 */
  303. (Fls_AddressType)159743U, /* FlsSector_38 */
  304. (Fls_AddressType)163839U, /* FlsSector_39 */
  305. (Fls_AddressType)167935U, /* FlsSector_40 */
  306. (Fls_AddressType)172031U, /* FlsSector_41 */
  307. (Fls_AddressType)176127U, /* FlsSector_42 */
  308. (Fls_AddressType)180223U, /* FlsSector_43 */
  309. (Fls_AddressType)184319U, /* FlsSector_44 */
  310. (Fls_AddressType)188415U, /* FlsSector_45 */
  311. (Fls_AddressType)192511U, /* FlsSector_46 */
  312. (Fls_AddressType)196607U, /* FlsSector_47 */
  313. (Fls_AddressType)200703U, /* FlsSector_48 */
  314. (Fls_AddressType)204799U, /* FlsSector_49 */
  315. (Fls_AddressType)208895U, /* FlsSector_50 */
  316. (Fls_AddressType)212991U, /* FlsSector_51 */
  317. (Fls_AddressType)217087U, /* FlsSector_52 */
  318. (Fls_AddressType)221183U, /* FlsSector_53 */
  319. (Fls_AddressType)225279U, /* FlsSector_54 */
  320. (Fls_AddressType)229375U, /* FlsSector_55 */
  321. (Fls_AddressType)233471U, /* FlsSector_56 */
  322. (Fls_AddressType)237567U, /* FlsSector_57 */
  323. (Fls_AddressType)241663U, /* FlsSector_58 */
  324. (Fls_AddressType)245759U, /* FlsSector_59 */
  325. (Fls_AddressType)249855U, /* FlsSector_60 */
  326. (Fls_AddressType)253951U, /* FlsSector_61 */
  327. (Fls_AddressType)258047U, /* FlsSector_62 */
  328. (Fls_AddressType)262143U, /* FlsSector_63 */
  329. (Fls_AddressType)266239U, /* FlsSector_64 */
  330. (Fls_AddressType)270335U, /* FlsSector_65 */
  331. (Fls_AddressType)274431U, /* FlsSector_66 */
  332. (Fls_AddressType)278527U, /* FlsSector_67 */
  333. (Fls_AddressType)282623U, /* FlsSector_68 */
  334. (Fls_AddressType)286719U, /* FlsSector_69 */
  335. (Fls_AddressType)290815U, /* FlsSector_70 */
  336. (Fls_AddressType)294911U, /* FlsSector_71 */
  337. (Fls_AddressType)299007U, /* FlsSector_72 */
  338. (Fls_AddressType)303103U, /* FlsSector_73 */
  339. (Fls_AddressType)307199U, /* FlsSector_74 */
  340. (Fls_AddressType)311295U, /* FlsSector_75 */
  341. (Fls_AddressType)315391U, /* FlsSector_76 */
  342. (Fls_AddressType)319487U, /* FlsSector_77 */
  343. (Fls_AddressType)323583U, /* FlsSector_78 */
  344. (Fls_AddressType)327679U, /* FlsSector_79 */
  345. (Fls_AddressType)331775U, /* FlsSector_80 */
  346. (Fls_AddressType)335871U, /* FlsSector_81 */
  347. (Fls_AddressType)339967U, /* FlsSector_82 */
  348. (Fls_AddressType)344063U, /* FlsSector_83 */
  349. (Fls_AddressType)348159U, /* FlsSector_84 */
  350. (Fls_AddressType)352255U, /* FlsSector_85 */
  351. (Fls_AddressType)356351U, /* FlsSector_86 */
  352. (Fls_AddressType)360447U, /* FlsSector_87 */
  353. (Fls_AddressType)364543U, /* FlsSector_88 */
  354. (Fls_AddressType)368639U, /* FlsSector_89 */
  355. (Fls_AddressType)372735U, /* FlsSector_90 */
  356. (Fls_AddressType)376831U, /* FlsSector_91 */
  357. (Fls_AddressType)380927U, /* FlsSector_92 */
  358. (Fls_AddressType)385023U, /* FlsSector_93 */
  359. (Fls_AddressType)389119U, /* FlsSector_94 */
  360. (Fls_AddressType)393215U, /* FlsSector_95 */
  361. (Fls_AddressType)397311U, /* FlsSector_96 */
  362. (Fls_AddressType)401407U, /* FlsSector_97 */
  363. (Fls_AddressType)405503U, /* FlsSector_98 */
  364. (Fls_AddressType)409599U, /* FlsSector_99 */
  365. (Fls_AddressType)413695U, /* FlsSector_100 */
  366. (Fls_AddressType)417791U, /* FlsSector_101 */
  367. (Fls_AddressType)421887U, /* FlsSector_102 */
  368. (Fls_AddressType)425983U, /* FlsSector_103 */
  369. (Fls_AddressType)430079U, /* FlsSector_104 */
  370. (Fls_AddressType)434175U, /* FlsSector_105 */
  371. (Fls_AddressType)438271U, /* FlsSector_106 */
  372. (Fls_AddressType)442367U, /* FlsSector_107 */
  373. (Fls_AddressType)446463U, /* FlsSector_108 */
  374. (Fls_AddressType)450559U, /* FlsSector_109 */
  375. (Fls_AddressType)454655U, /* FlsSector_110 */
  376. (Fls_AddressType)458751U, /* FlsSector_111 */
  377. (Fls_AddressType)462847U, /* FlsSector_112 */
  378. (Fls_AddressType)466943U, /* FlsSector_113 */
  379. (Fls_AddressType)471039U, /* FlsSector_114 */
  380. (Fls_AddressType)475135U, /* FlsSector_115 */
  381. (Fls_AddressType)479231U, /* FlsSector_116 */
  382. (Fls_AddressType)483327U, /* FlsSector_117 */
  383. (Fls_AddressType)487423U, /* FlsSector_118 */
  384. (Fls_AddressType)491519U, /* FlsSector_119 */
  385. (Fls_AddressType)495615U, /* FlsSector_120 */
  386. (Fls_AddressType)499711U, /* FlsSector_121 */
  387. (Fls_AddressType)503807U, /* FlsSector_122 */
  388. (Fls_AddressType)507903U, /* FlsSector_123 */
  389. (Fls_AddressType)511999U, /* FlsSector_124 */
  390. (Fls_AddressType)516095U, /* FlsSector_125 */
  391. (Fls_AddressType)520191U, /* FlsSector_126 */
  392. (Fls_AddressType)524287U /* FlsSector_127 */
  393. };
  394. /* paSectorSize */
  395. static const Fls_LengthType FlsConfigSet_VS_0_aFlsSectorSize[128U] =
  396. {
  397. (Fls_LengthType)4096U, /* FlsSector_0 */
  398. (Fls_LengthType)4096U, /* FlsSector_1 */
  399. (Fls_LengthType)4096U, /* FlsSector_2 */
  400. (Fls_LengthType)4096U, /* FlsSector_3 */
  401. (Fls_LengthType)4096U, /* FlsSector_4 */
  402. (Fls_LengthType)4096U, /* FlsSector_5 */
  403. (Fls_LengthType)4096U, /* FlsSector_6 */
  404. (Fls_LengthType)4096U, /* FlsSector_7 */
  405. (Fls_LengthType)4096U, /* FlsSector_8 */
  406. (Fls_LengthType)4096U, /* FlsSector_9 */
  407. (Fls_LengthType)4096U, /* FlsSector_10 */
  408. (Fls_LengthType)4096U, /* FlsSector_11 */
  409. (Fls_LengthType)4096U, /* FlsSector_12 */
  410. (Fls_LengthType)4096U, /* FlsSector_13 */
  411. (Fls_LengthType)4096U, /* FlsSector_14 */
  412. (Fls_LengthType)4096U, /* FlsSector_15 */
  413. (Fls_LengthType)4096U, /* FlsSector_16 */
  414. (Fls_LengthType)4096U, /* FlsSector_17 */
  415. (Fls_LengthType)4096U, /* FlsSector_18 */
  416. (Fls_LengthType)4096U, /* FlsSector_19 */
  417. (Fls_LengthType)4096U, /* FlsSector_20 */
  418. (Fls_LengthType)4096U, /* FlsSector_21 */
  419. (Fls_LengthType)4096U, /* FlsSector_22 */
  420. (Fls_LengthType)4096U, /* FlsSector_23 */
  421. (Fls_LengthType)4096U, /* FlsSector_24 */
  422. (Fls_LengthType)4096U, /* FlsSector_25 */
  423. (Fls_LengthType)4096U, /* FlsSector_26 */
  424. (Fls_LengthType)4096U, /* FlsSector_27 */
  425. (Fls_LengthType)4096U, /* FlsSector_28 */
  426. (Fls_LengthType)4096U, /* FlsSector_29 */
  427. (Fls_LengthType)4096U, /* FlsSector_30 */
  428. (Fls_LengthType)4096U, /* FlsSector_31 */
  429. (Fls_LengthType)4096U, /* FlsSector_32 */
  430. (Fls_LengthType)4096U, /* FlsSector_33 */
  431. (Fls_LengthType)4096U, /* FlsSector_34 */
  432. (Fls_LengthType)4096U, /* FlsSector_35 */
  433. (Fls_LengthType)4096U, /* FlsSector_36 */
  434. (Fls_LengthType)4096U, /* FlsSector_37 */
  435. (Fls_LengthType)4096U, /* FlsSector_38 */
  436. (Fls_LengthType)4096U, /* FlsSector_39 */
  437. (Fls_LengthType)4096U, /* FlsSector_40 */
  438. (Fls_LengthType)4096U, /* FlsSector_41 */
  439. (Fls_LengthType)4096U, /* FlsSector_42 */
  440. (Fls_LengthType)4096U, /* FlsSector_43 */
  441. (Fls_LengthType)4096U, /* FlsSector_44 */
  442. (Fls_LengthType)4096U, /* FlsSector_45 */
  443. (Fls_LengthType)4096U, /* FlsSector_46 */
  444. (Fls_LengthType)4096U, /* FlsSector_47 */
  445. (Fls_LengthType)4096U, /* FlsSector_48 */
  446. (Fls_LengthType)4096U, /* FlsSector_49 */
  447. (Fls_LengthType)4096U, /* FlsSector_50 */
  448. (Fls_LengthType)4096U, /* FlsSector_51 */
  449. (Fls_LengthType)4096U, /* FlsSector_52 */
  450. (Fls_LengthType)4096U, /* FlsSector_53 */
  451. (Fls_LengthType)4096U, /* FlsSector_54 */
  452. (Fls_LengthType)4096U, /* FlsSector_55 */
  453. (Fls_LengthType)4096U, /* FlsSector_56 */
  454. (Fls_LengthType)4096U, /* FlsSector_57 */
  455. (Fls_LengthType)4096U, /* FlsSector_58 */
  456. (Fls_LengthType)4096U, /* FlsSector_59 */
  457. (Fls_LengthType)4096U, /* FlsSector_60 */
  458. (Fls_LengthType)4096U, /* FlsSector_61 */
  459. (Fls_LengthType)4096U, /* FlsSector_62 */
  460. (Fls_LengthType)4096U, /* FlsSector_63 */
  461. (Fls_LengthType)4096U, /* FlsSector_64 */
  462. (Fls_LengthType)4096U, /* FlsSector_65 */
  463. (Fls_LengthType)4096U, /* FlsSector_66 */
  464. (Fls_LengthType)4096U, /* FlsSector_67 */
  465. (Fls_LengthType)4096U, /* FlsSector_68 */
  466. (Fls_LengthType)4096U, /* FlsSector_69 */
  467. (Fls_LengthType)4096U, /* FlsSector_70 */
  468. (Fls_LengthType)4096U, /* FlsSector_71 */
  469. (Fls_LengthType)4096U, /* FlsSector_72 */
  470. (Fls_LengthType)4096U, /* FlsSector_73 */
  471. (Fls_LengthType)4096U, /* FlsSector_74 */
  472. (Fls_LengthType)4096U, /* FlsSector_75 */
  473. (Fls_LengthType)4096U, /* FlsSector_76 */
  474. (Fls_LengthType)4096U, /* FlsSector_77 */
  475. (Fls_LengthType)4096U, /* FlsSector_78 */
  476. (Fls_LengthType)4096U, /* FlsSector_79 */
  477. (Fls_LengthType)4096U, /* FlsSector_80 */
  478. (Fls_LengthType)4096U, /* FlsSector_81 */
  479. (Fls_LengthType)4096U, /* FlsSector_82 */
  480. (Fls_LengthType)4096U, /* FlsSector_83 */
  481. (Fls_LengthType)4096U, /* FlsSector_84 */
  482. (Fls_LengthType)4096U, /* FlsSector_85 */
  483. (Fls_LengthType)4096U, /* FlsSector_86 */
  484. (Fls_LengthType)4096U, /* FlsSector_87 */
  485. (Fls_LengthType)4096U, /* FlsSector_88 */
  486. (Fls_LengthType)4096U, /* FlsSector_89 */
  487. (Fls_LengthType)4096U, /* FlsSector_90 */
  488. (Fls_LengthType)4096U, /* FlsSector_91 */
  489. (Fls_LengthType)4096U, /* FlsSector_92 */
  490. (Fls_LengthType)4096U, /* FlsSector_93 */
  491. (Fls_LengthType)4096U, /* FlsSector_94 */
  492. (Fls_LengthType)4096U, /* FlsSector_95 */
  493. (Fls_LengthType)4096U, /* FlsSector_96 */
  494. (Fls_LengthType)4096U, /* FlsSector_97 */
  495. (Fls_LengthType)4096U, /* FlsSector_98 */
  496. (Fls_LengthType)4096U, /* FlsSector_99 */
  497. (Fls_LengthType)4096U, /* FlsSector_100 */
  498. (Fls_LengthType)4096U, /* FlsSector_101 */
  499. (Fls_LengthType)4096U, /* FlsSector_102 */
  500. (Fls_LengthType)4096U, /* FlsSector_103 */
  501. (Fls_LengthType)4096U, /* FlsSector_104 */
  502. (Fls_LengthType)4096U, /* FlsSector_105 */
  503. (Fls_LengthType)4096U, /* FlsSector_106 */
  504. (Fls_LengthType)4096U, /* FlsSector_107 */
  505. (Fls_LengthType)4096U, /* FlsSector_108 */
  506. (Fls_LengthType)4096U, /* FlsSector_109 */
  507. (Fls_LengthType)4096U, /* FlsSector_110 */
  508. (Fls_LengthType)4096U, /* FlsSector_111 */
  509. (Fls_LengthType)4096U, /* FlsSector_112 */
  510. (Fls_LengthType)4096U, /* FlsSector_113 */
  511. (Fls_LengthType)4096U, /* FlsSector_114 */
  512. (Fls_LengthType)4096U, /* FlsSector_115 */
  513. (Fls_LengthType)4096U, /* FlsSector_116 */
  514. (Fls_LengthType)4096U, /* FlsSector_117 */
  515. (Fls_LengthType)4096U, /* FlsSector_118 */
  516. (Fls_LengthType)4096U, /* FlsSector_119 */
  517. (Fls_LengthType)4096U, /* FlsSector_120 */
  518. (Fls_LengthType)4096U, /* FlsSector_121 */
  519. (Fls_LengthType)4096U, /* FlsSector_122 */
  520. (Fls_LengthType)4096U, /* FlsSector_123 */
  521. (Fls_LengthType)4096U, /* FlsSector_124 */
  522. (Fls_LengthType)4096U, /* FlsSector_125 */
  523. (Fls_LengthType)4096U, /* FlsSector_126 */
  524. (Fls_LengthType)4096U /* FlsSector_127 */
  525. };
  526. /* paSectorPageSize */
  527. static const Fls_LengthType FlsConfigSet_VS_0_aFlsSectorPageSize[128U] =
  528. {
  529. (Fls_LengthType)8U, /* FlsSector_0 */
  530. (Fls_LengthType)8U, /* FlsSector_1 */
  531. (Fls_LengthType)8U, /* FlsSector_2 */
  532. (Fls_LengthType)8U, /* FlsSector_3 */
  533. (Fls_LengthType)8U, /* FlsSector_4 */
  534. (Fls_LengthType)8U, /* FlsSector_5 */
  535. (Fls_LengthType)8U, /* FlsSector_6 */
  536. (Fls_LengthType)8U, /* FlsSector_7 */
  537. (Fls_LengthType)8U, /* FlsSector_8 */
  538. (Fls_LengthType)8U, /* FlsSector_9 */
  539. (Fls_LengthType)8U, /* FlsSector_10 */
  540. (Fls_LengthType)8U, /* FlsSector_11 */
  541. (Fls_LengthType)8U, /* FlsSector_12 */
  542. (Fls_LengthType)8U, /* FlsSector_13 */
  543. (Fls_LengthType)8U, /* FlsSector_14 */
  544. (Fls_LengthType)8U, /* FlsSector_15 */
  545. (Fls_LengthType)8U, /* FlsSector_16 */
  546. (Fls_LengthType)8U, /* FlsSector_17 */
  547. (Fls_LengthType)8U, /* FlsSector_18 */
  548. (Fls_LengthType)8U, /* FlsSector_19 */
  549. (Fls_LengthType)8U, /* FlsSector_20 */
  550. (Fls_LengthType)8U, /* FlsSector_21 */
  551. (Fls_LengthType)8U, /* FlsSector_22 */
  552. (Fls_LengthType)8U, /* FlsSector_23 */
  553. (Fls_LengthType)8U, /* FlsSector_24 */
  554. (Fls_LengthType)8U, /* FlsSector_25 */
  555. (Fls_LengthType)8U, /* FlsSector_26 */
  556. (Fls_LengthType)8U, /* FlsSector_27 */
  557. (Fls_LengthType)8U, /* FlsSector_28 */
  558. (Fls_LengthType)8U, /* FlsSector_29 */
  559. (Fls_LengthType)8U, /* FlsSector_30 */
  560. (Fls_LengthType)8U, /* FlsSector_31 */
  561. (Fls_LengthType)8U, /* FlsSector_32 */
  562. (Fls_LengthType)8U, /* FlsSector_33 */
  563. (Fls_LengthType)8U, /* FlsSector_34 */
  564. (Fls_LengthType)8U, /* FlsSector_35 */
  565. (Fls_LengthType)8U, /* FlsSector_36 */
  566. (Fls_LengthType)8U, /* FlsSector_37 */
  567. (Fls_LengthType)8U, /* FlsSector_38 */
  568. (Fls_LengthType)8U, /* FlsSector_39 */
  569. (Fls_LengthType)8U, /* FlsSector_40 */
  570. (Fls_LengthType)8U, /* FlsSector_41 */
  571. (Fls_LengthType)8U, /* FlsSector_42 */
  572. (Fls_LengthType)8U, /* FlsSector_43 */
  573. (Fls_LengthType)8U, /* FlsSector_44 */
  574. (Fls_LengthType)8U, /* FlsSector_45 */
  575. (Fls_LengthType)8U, /* FlsSector_46 */
  576. (Fls_LengthType)8U, /* FlsSector_47 */
  577. (Fls_LengthType)8U, /* FlsSector_48 */
  578. (Fls_LengthType)8U, /* FlsSector_49 */
  579. (Fls_LengthType)8U, /* FlsSector_50 */
  580. (Fls_LengthType)8U, /* FlsSector_51 */
  581. (Fls_LengthType)8U, /* FlsSector_52 */
  582. (Fls_LengthType)8U, /* FlsSector_53 */
  583. (Fls_LengthType)8U, /* FlsSector_54 */
  584. (Fls_LengthType)8U, /* FlsSector_55 */
  585. (Fls_LengthType)8U, /* FlsSector_56 */
  586. (Fls_LengthType)8U, /* FlsSector_57 */
  587. (Fls_LengthType)8U, /* FlsSector_58 */
  588. (Fls_LengthType)8U, /* FlsSector_59 */
  589. (Fls_LengthType)8U, /* FlsSector_60 */
  590. (Fls_LengthType)8U, /* FlsSector_61 */
  591. (Fls_LengthType)8U, /* FlsSector_62 */
  592. (Fls_LengthType)8U, /* FlsSector_63 */
  593. (Fls_LengthType)8U, /* FlsSector_64 */
  594. (Fls_LengthType)8U, /* FlsSector_65 */
  595. (Fls_LengthType)8U, /* FlsSector_66 */
  596. (Fls_LengthType)8U, /* FlsSector_67 */
  597. (Fls_LengthType)8U, /* FlsSector_68 */
  598. (Fls_LengthType)8U, /* FlsSector_69 */
  599. (Fls_LengthType)8U, /* FlsSector_70 */
  600. (Fls_LengthType)8U, /* FlsSector_71 */
  601. (Fls_LengthType)8U, /* FlsSector_72 */
  602. (Fls_LengthType)8U, /* FlsSector_73 */
  603. (Fls_LengthType)8U, /* FlsSector_74 */
  604. (Fls_LengthType)8U, /* FlsSector_75 */
  605. (Fls_LengthType)8U, /* FlsSector_76 */
  606. (Fls_LengthType)8U, /* FlsSector_77 */
  607. (Fls_LengthType)8U, /* FlsSector_78 */
  608. (Fls_LengthType)8U, /* FlsSector_79 */
  609. (Fls_LengthType)8U, /* FlsSector_80 */
  610. (Fls_LengthType)8U, /* FlsSector_81 */
  611. (Fls_LengthType)8U, /* FlsSector_82 */
  612. (Fls_LengthType)8U, /* FlsSector_83 */
  613. (Fls_LengthType)8U, /* FlsSector_84 */
  614. (Fls_LengthType)8U, /* FlsSector_85 */
  615. (Fls_LengthType)8U, /* FlsSector_86 */
  616. (Fls_LengthType)8U, /* FlsSector_87 */
  617. (Fls_LengthType)8U, /* FlsSector_88 */
  618. (Fls_LengthType)8U, /* FlsSector_89 */
  619. (Fls_LengthType)8U, /* FlsSector_90 */
  620. (Fls_LengthType)8U, /* FlsSector_91 */
  621. (Fls_LengthType)8U, /* FlsSector_92 */
  622. (Fls_LengthType)8U, /* FlsSector_93 */
  623. (Fls_LengthType)8U, /* FlsSector_94 */
  624. (Fls_LengthType)8U, /* FlsSector_95 */
  625. (Fls_LengthType)8U, /* FlsSector_96 */
  626. (Fls_LengthType)8U, /* FlsSector_97 */
  627. (Fls_LengthType)8U, /* FlsSector_98 */
  628. (Fls_LengthType)8U, /* FlsSector_99 */
  629. (Fls_LengthType)8U, /* FlsSector_100 */
  630. (Fls_LengthType)8U, /* FlsSector_101 */
  631. (Fls_LengthType)8U, /* FlsSector_102 */
  632. (Fls_LengthType)8U, /* FlsSector_103 */
  633. (Fls_LengthType)8U, /* FlsSector_104 */
  634. (Fls_LengthType)8U, /* FlsSector_105 */
  635. (Fls_LengthType)8U, /* FlsSector_106 */
  636. (Fls_LengthType)8U, /* FlsSector_107 */
  637. (Fls_LengthType)8U, /* FlsSector_108 */
  638. (Fls_LengthType)8U, /* FlsSector_109 */
  639. (Fls_LengthType)8U, /* FlsSector_110 */
  640. (Fls_LengthType)8U, /* FlsSector_111 */
  641. (Fls_LengthType)8U, /* FlsSector_112 */
  642. (Fls_LengthType)8U, /* FlsSector_113 */
  643. (Fls_LengthType)8U, /* FlsSector_114 */
  644. (Fls_LengthType)8U, /* FlsSector_115 */
  645. (Fls_LengthType)8U, /* FlsSector_116 */
  646. (Fls_LengthType)8U, /* FlsSector_117 */
  647. (Fls_LengthType)8U, /* FlsSector_118 */
  648. (Fls_LengthType)8U, /* FlsSector_119 */
  649. (Fls_LengthType)8U, /* FlsSector_120 */
  650. (Fls_LengthType)8U, /* FlsSector_121 */
  651. (Fls_LengthType)8U, /* FlsSector_122 */
  652. (Fls_LengthType)8U, /* FlsSector_123 */
  653. (Fls_LengthType)8U, /* FlsSector_124 */
  654. (Fls_LengthType)8U, /* FlsSector_125 */
  655. (Fls_LengthType)8U, /* FlsSector_126 */
  656. (Fls_LengthType)8U /* FlsSector_127 */
  657. };
  658. /* Info structure (reg prot, ecc trigger, etc) for each internal flash sector. */
  659. static const Fls_Flash_InternalSectorInfoType FlsSector_0_FlsConfigSet_VS_0_sInternalSectorInfo =
  660. {
  661. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x080000UL), /* pSectorStartAddressPtr */
  662. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  663. (boolean)TRUE, /* bEccTriggersExc */
  664. 160U /* Sector location to calculate cfgCRC */
  665. };
  666. static const Fls_Flash_InternalSectorInfoType FlsSector_1_FlsConfigSet_VS_0_sInternalSectorInfo =
  667. {
  668. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x081000UL), /* pSectorStartAddressPtr */
  669. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  670. (boolean)TRUE, /* bEccTriggersExc */
  671. 161U /* Sector location to calculate cfgCRC */
  672. };
  673. static const Fls_Flash_InternalSectorInfoType FlsSector_2_FlsConfigSet_VS_0_sInternalSectorInfo =
  674. {
  675. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x082000UL), /* pSectorStartAddressPtr */
  676. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  677. (boolean)TRUE, /* bEccTriggersExc */
  678. 162U /* Sector location to calculate cfgCRC */
  679. };
  680. static const Fls_Flash_InternalSectorInfoType FlsSector_3_FlsConfigSet_VS_0_sInternalSectorInfo =
  681. {
  682. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x083000UL), /* pSectorStartAddressPtr */
  683. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  684. (boolean)TRUE, /* bEccTriggersExc */
  685. 163U /* Sector location to calculate cfgCRC */
  686. };
  687. static const Fls_Flash_InternalSectorInfoType FlsSector_4_FlsConfigSet_VS_0_sInternalSectorInfo =
  688. {
  689. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x084000UL), /* pSectorStartAddressPtr */
  690. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  691. (boolean)TRUE, /* bEccTriggersExc */
  692. 164U /* Sector location to calculate cfgCRC */
  693. };
  694. static const Fls_Flash_InternalSectorInfoType FlsSector_5_FlsConfigSet_VS_0_sInternalSectorInfo =
  695. {
  696. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x085000UL), /* pSectorStartAddressPtr */
  697. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  698. (boolean)TRUE, /* bEccTriggersExc */
  699. 165U /* Sector location to calculate cfgCRC */
  700. };
  701. static const Fls_Flash_InternalSectorInfoType FlsSector_6_FlsConfigSet_VS_0_sInternalSectorInfo =
  702. {
  703. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x086000UL), /* pSectorStartAddressPtr */
  704. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  705. (boolean)TRUE, /* bEccTriggersExc */
  706. 166U /* Sector location to calculate cfgCRC */
  707. };
  708. static const Fls_Flash_InternalSectorInfoType FlsSector_7_FlsConfigSet_VS_0_sInternalSectorInfo =
  709. {
  710. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x087000UL), /* pSectorStartAddressPtr */
  711. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  712. (boolean)TRUE, /* bEccTriggersExc */
  713. 167U /* Sector location to calculate cfgCRC */
  714. };
  715. static const Fls_Flash_InternalSectorInfoType FlsSector_8_FlsConfigSet_VS_0_sInternalSectorInfo =
  716. {
  717. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x088000UL), /* pSectorStartAddressPtr */
  718. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  719. (boolean)TRUE, /* bEccTriggersExc */
  720. 168U /* Sector location to calculate cfgCRC */
  721. };
  722. static const Fls_Flash_InternalSectorInfoType FlsSector_9_FlsConfigSet_VS_0_sInternalSectorInfo =
  723. {
  724. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x089000UL), /* pSectorStartAddressPtr */
  725. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  726. (boolean)TRUE, /* bEccTriggersExc */
  727. 169U /* Sector location to calculate cfgCRC */
  728. };
  729. static const Fls_Flash_InternalSectorInfoType FlsSector_10_FlsConfigSet_VS_0_sInternalSectorInfo =
  730. {
  731. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x08A000UL), /* pSectorStartAddressPtr */
  732. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  733. (boolean)TRUE, /* bEccTriggersExc */
  734. 170U /* Sector location to calculate cfgCRC */
  735. };
  736. static const Fls_Flash_InternalSectorInfoType FlsSector_11_FlsConfigSet_VS_0_sInternalSectorInfo =
  737. {
  738. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x08B000UL), /* pSectorStartAddressPtr */
  739. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  740. (boolean)TRUE, /* bEccTriggersExc */
  741. 171U /* Sector location to calculate cfgCRC */
  742. };
  743. static const Fls_Flash_InternalSectorInfoType FlsSector_12_FlsConfigSet_VS_0_sInternalSectorInfo =
  744. {
  745. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x08C000UL), /* pSectorStartAddressPtr */
  746. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  747. (boolean)TRUE, /* bEccTriggersExc */
  748. 172U /* Sector location to calculate cfgCRC */
  749. };
  750. static const Fls_Flash_InternalSectorInfoType FlsSector_13_FlsConfigSet_VS_0_sInternalSectorInfo =
  751. {
  752. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x08D000UL), /* pSectorStartAddressPtr */
  753. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  754. (boolean)TRUE, /* bEccTriggersExc */
  755. 173U /* Sector location to calculate cfgCRC */
  756. };
  757. static const Fls_Flash_InternalSectorInfoType FlsSector_14_FlsConfigSet_VS_0_sInternalSectorInfo =
  758. {
  759. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x08E000UL), /* pSectorStartAddressPtr */
  760. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  761. (boolean)TRUE, /* bEccTriggersExc */
  762. 174U /* Sector location to calculate cfgCRC */
  763. };
  764. static const Fls_Flash_InternalSectorInfoType FlsSector_15_FlsConfigSet_VS_0_sInternalSectorInfo =
  765. {
  766. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x08F000UL), /* pSectorStartAddressPtr */
  767. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  768. (boolean)TRUE, /* bEccTriggersExc */
  769. 175U /* Sector location to calculate cfgCRC */
  770. };
  771. static const Fls_Flash_InternalSectorInfoType FlsSector_16_FlsConfigSet_VS_0_sInternalSectorInfo =
  772. {
  773. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x090000UL), /* pSectorStartAddressPtr */
  774. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  775. (boolean)TRUE, /* bEccTriggersExc */
  776. 176U /* Sector location to calculate cfgCRC */
  777. };
  778. static const Fls_Flash_InternalSectorInfoType FlsSector_17_FlsConfigSet_VS_0_sInternalSectorInfo =
  779. {
  780. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x091000UL), /* pSectorStartAddressPtr */
  781. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  782. (boolean)TRUE, /* bEccTriggersExc */
  783. 177U /* Sector location to calculate cfgCRC */
  784. };
  785. static const Fls_Flash_InternalSectorInfoType FlsSector_18_FlsConfigSet_VS_0_sInternalSectorInfo =
  786. {
  787. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x092000UL), /* pSectorStartAddressPtr */
  788. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  789. (boolean)TRUE, /* bEccTriggersExc */
  790. 178U /* Sector location to calculate cfgCRC */
  791. };
  792. static const Fls_Flash_InternalSectorInfoType FlsSector_19_FlsConfigSet_VS_0_sInternalSectorInfo =
  793. {
  794. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x093000UL), /* pSectorStartAddressPtr */
  795. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  796. (boolean)TRUE, /* bEccTriggersExc */
  797. 179U /* Sector location to calculate cfgCRC */
  798. };
  799. static const Fls_Flash_InternalSectorInfoType FlsSector_20_FlsConfigSet_VS_0_sInternalSectorInfo =
  800. {
  801. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x094000UL), /* pSectorStartAddressPtr */
  802. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  803. (boolean)TRUE, /* bEccTriggersExc */
  804. 180U /* Sector location to calculate cfgCRC */
  805. };
  806. static const Fls_Flash_InternalSectorInfoType FlsSector_21_FlsConfigSet_VS_0_sInternalSectorInfo =
  807. {
  808. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x095000UL), /* pSectorStartAddressPtr */
  809. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  810. (boolean)TRUE, /* bEccTriggersExc */
  811. 181U /* Sector location to calculate cfgCRC */
  812. };
  813. static const Fls_Flash_InternalSectorInfoType FlsSector_22_FlsConfigSet_VS_0_sInternalSectorInfo =
  814. {
  815. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x096000UL), /* pSectorStartAddressPtr */
  816. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  817. (boolean)TRUE, /* bEccTriggersExc */
  818. 182U /* Sector location to calculate cfgCRC */
  819. };
  820. static const Fls_Flash_InternalSectorInfoType FlsSector_23_FlsConfigSet_VS_0_sInternalSectorInfo =
  821. {
  822. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x097000UL), /* pSectorStartAddressPtr */
  823. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  824. (boolean)TRUE, /* bEccTriggersExc */
  825. 183U /* Sector location to calculate cfgCRC */
  826. };
  827. static const Fls_Flash_InternalSectorInfoType FlsSector_24_FlsConfigSet_VS_0_sInternalSectorInfo =
  828. {
  829. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x098000UL), /* pSectorStartAddressPtr */
  830. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  831. (boolean)TRUE, /* bEccTriggersExc */
  832. 184U /* Sector location to calculate cfgCRC */
  833. };
  834. static const Fls_Flash_InternalSectorInfoType FlsSector_25_FlsConfigSet_VS_0_sInternalSectorInfo =
  835. {
  836. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x099000UL), /* pSectorStartAddressPtr */
  837. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  838. (boolean)TRUE, /* bEccTriggersExc */
  839. 185U /* Sector location to calculate cfgCRC */
  840. };
  841. static const Fls_Flash_InternalSectorInfoType FlsSector_26_FlsConfigSet_VS_0_sInternalSectorInfo =
  842. {
  843. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x09A000UL), /* pSectorStartAddressPtr */
  844. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  845. (boolean)TRUE, /* bEccTriggersExc */
  846. 186U /* Sector location to calculate cfgCRC */
  847. };
  848. static const Fls_Flash_InternalSectorInfoType FlsSector_27_FlsConfigSet_VS_0_sInternalSectorInfo =
  849. {
  850. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x09B000UL), /* pSectorStartAddressPtr */
  851. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  852. (boolean)TRUE, /* bEccTriggersExc */
  853. 187U /* Sector location to calculate cfgCRC */
  854. };
  855. static const Fls_Flash_InternalSectorInfoType FlsSector_28_FlsConfigSet_VS_0_sInternalSectorInfo =
  856. {
  857. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x09C000UL), /* pSectorStartAddressPtr */
  858. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  859. (boolean)TRUE, /* bEccTriggersExc */
  860. 188U /* Sector location to calculate cfgCRC */
  861. };
  862. static const Fls_Flash_InternalSectorInfoType FlsSector_29_FlsConfigSet_VS_0_sInternalSectorInfo =
  863. {
  864. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x09D000UL), /* pSectorStartAddressPtr */
  865. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  866. (boolean)TRUE, /* bEccTriggersExc */
  867. 189U /* Sector location to calculate cfgCRC */
  868. };
  869. static const Fls_Flash_InternalSectorInfoType FlsSector_30_FlsConfigSet_VS_0_sInternalSectorInfo =
  870. {
  871. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x09E000UL), /* pSectorStartAddressPtr */
  872. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  873. (boolean)TRUE, /* bEccTriggersExc */
  874. 190U /* Sector location to calculate cfgCRC */
  875. };
  876. static const Fls_Flash_InternalSectorInfoType FlsSector_31_FlsConfigSet_VS_0_sInternalSectorInfo =
  877. {
  878. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x09F000UL), /* pSectorStartAddressPtr */
  879. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  880. (boolean)TRUE, /* bEccTriggersExc */
  881. 191U /* Sector location to calculate cfgCRC */
  882. };
  883. static const Fls_Flash_InternalSectorInfoType FlsSector_32_FlsConfigSet_VS_0_sInternalSectorInfo =
  884. {
  885. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A0000UL), /* pSectorStartAddressPtr */
  886. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  887. (boolean)TRUE, /* bEccTriggersExc */
  888. 192U /* Sector location to calculate cfgCRC */
  889. };
  890. static const Fls_Flash_InternalSectorInfoType FlsSector_33_FlsConfigSet_VS_0_sInternalSectorInfo =
  891. {
  892. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A1000UL), /* pSectorStartAddressPtr */
  893. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  894. (boolean)TRUE, /* bEccTriggersExc */
  895. 193U /* Sector location to calculate cfgCRC */
  896. };
  897. static const Fls_Flash_InternalSectorInfoType FlsSector_34_FlsConfigSet_VS_0_sInternalSectorInfo =
  898. {
  899. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A2000UL), /* pSectorStartAddressPtr */
  900. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  901. (boolean)TRUE, /* bEccTriggersExc */
  902. 194U /* Sector location to calculate cfgCRC */
  903. };
  904. static const Fls_Flash_InternalSectorInfoType FlsSector_35_FlsConfigSet_VS_0_sInternalSectorInfo =
  905. {
  906. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A3000UL), /* pSectorStartAddressPtr */
  907. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  908. (boolean)TRUE, /* bEccTriggersExc */
  909. 195U /* Sector location to calculate cfgCRC */
  910. };
  911. static const Fls_Flash_InternalSectorInfoType FlsSector_36_FlsConfigSet_VS_0_sInternalSectorInfo =
  912. {
  913. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A4000UL), /* pSectorStartAddressPtr */
  914. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  915. (boolean)TRUE, /* bEccTriggersExc */
  916. 196U /* Sector location to calculate cfgCRC */
  917. };
  918. static const Fls_Flash_InternalSectorInfoType FlsSector_37_FlsConfigSet_VS_0_sInternalSectorInfo =
  919. {
  920. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A5000UL), /* pSectorStartAddressPtr */
  921. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  922. (boolean)TRUE, /* bEccTriggersExc */
  923. 197U /* Sector location to calculate cfgCRC */
  924. };
  925. static const Fls_Flash_InternalSectorInfoType FlsSector_38_FlsConfigSet_VS_0_sInternalSectorInfo =
  926. {
  927. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A6000UL), /* pSectorStartAddressPtr */
  928. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  929. (boolean)TRUE, /* bEccTriggersExc */
  930. 198U /* Sector location to calculate cfgCRC */
  931. };
  932. static const Fls_Flash_InternalSectorInfoType FlsSector_39_FlsConfigSet_VS_0_sInternalSectorInfo =
  933. {
  934. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A7000UL), /* pSectorStartAddressPtr */
  935. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  936. (boolean)TRUE, /* bEccTriggersExc */
  937. 199U /* Sector location to calculate cfgCRC */
  938. };
  939. static const Fls_Flash_InternalSectorInfoType FlsSector_40_FlsConfigSet_VS_0_sInternalSectorInfo =
  940. {
  941. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A8000UL), /* pSectorStartAddressPtr */
  942. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  943. (boolean)TRUE, /* bEccTriggersExc */
  944. 200U /* Sector location to calculate cfgCRC */
  945. };
  946. static const Fls_Flash_InternalSectorInfoType FlsSector_41_FlsConfigSet_VS_0_sInternalSectorInfo =
  947. {
  948. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0A9000UL), /* pSectorStartAddressPtr */
  949. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  950. (boolean)TRUE, /* bEccTriggersExc */
  951. 201U /* Sector location to calculate cfgCRC */
  952. };
  953. static const Fls_Flash_InternalSectorInfoType FlsSector_42_FlsConfigSet_VS_0_sInternalSectorInfo =
  954. {
  955. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0AA000UL), /* pSectorStartAddressPtr */
  956. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  957. (boolean)TRUE, /* bEccTriggersExc */
  958. 202U /* Sector location to calculate cfgCRC */
  959. };
  960. static const Fls_Flash_InternalSectorInfoType FlsSector_43_FlsConfigSet_VS_0_sInternalSectorInfo =
  961. {
  962. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0AB000UL), /* pSectorStartAddressPtr */
  963. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  964. (boolean)TRUE, /* bEccTriggersExc */
  965. 203U /* Sector location to calculate cfgCRC */
  966. };
  967. static const Fls_Flash_InternalSectorInfoType FlsSector_44_FlsConfigSet_VS_0_sInternalSectorInfo =
  968. {
  969. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0AC000UL), /* pSectorStartAddressPtr */
  970. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  971. (boolean)TRUE, /* bEccTriggersExc */
  972. 204U /* Sector location to calculate cfgCRC */
  973. };
  974. static const Fls_Flash_InternalSectorInfoType FlsSector_45_FlsConfigSet_VS_0_sInternalSectorInfo =
  975. {
  976. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0AD000UL), /* pSectorStartAddressPtr */
  977. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  978. (boolean)TRUE, /* bEccTriggersExc */
  979. 205U /* Sector location to calculate cfgCRC */
  980. };
  981. static const Fls_Flash_InternalSectorInfoType FlsSector_46_FlsConfigSet_VS_0_sInternalSectorInfo =
  982. {
  983. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0AE000UL), /* pSectorStartAddressPtr */
  984. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  985. (boolean)TRUE, /* bEccTriggersExc */
  986. 206U /* Sector location to calculate cfgCRC */
  987. };
  988. static const Fls_Flash_InternalSectorInfoType FlsSector_47_FlsConfigSet_VS_0_sInternalSectorInfo =
  989. {
  990. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0AF000UL), /* pSectorStartAddressPtr */
  991. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  992. (boolean)TRUE, /* bEccTriggersExc */
  993. 207U /* Sector location to calculate cfgCRC */
  994. };
  995. static const Fls_Flash_InternalSectorInfoType FlsSector_48_FlsConfigSet_VS_0_sInternalSectorInfo =
  996. {
  997. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B0000UL), /* pSectorStartAddressPtr */
  998. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  999. (boolean)TRUE, /* bEccTriggersExc */
  1000. 208U /* Sector location to calculate cfgCRC */
  1001. };
  1002. static const Fls_Flash_InternalSectorInfoType FlsSector_49_FlsConfigSet_VS_0_sInternalSectorInfo =
  1003. {
  1004. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B1000UL), /* pSectorStartAddressPtr */
  1005. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1006. (boolean)TRUE, /* bEccTriggersExc */
  1007. 209U /* Sector location to calculate cfgCRC */
  1008. };
  1009. static const Fls_Flash_InternalSectorInfoType FlsSector_50_FlsConfigSet_VS_0_sInternalSectorInfo =
  1010. {
  1011. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B2000UL), /* pSectorStartAddressPtr */
  1012. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1013. (boolean)TRUE, /* bEccTriggersExc */
  1014. 210U /* Sector location to calculate cfgCRC */
  1015. };
  1016. static const Fls_Flash_InternalSectorInfoType FlsSector_51_FlsConfigSet_VS_0_sInternalSectorInfo =
  1017. {
  1018. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B3000UL), /* pSectorStartAddressPtr */
  1019. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1020. (boolean)TRUE, /* bEccTriggersExc */
  1021. 211U /* Sector location to calculate cfgCRC */
  1022. };
  1023. static const Fls_Flash_InternalSectorInfoType FlsSector_52_FlsConfigSet_VS_0_sInternalSectorInfo =
  1024. {
  1025. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B4000UL), /* pSectorStartAddressPtr */
  1026. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1027. (boolean)TRUE, /* bEccTriggersExc */
  1028. 212U /* Sector location to calculate cfgCRC */
  1029. };
  1030. static const Fls_Flash_InternalSectorInfoType FlsSector_53_FlsConfigSet_VS_0_sInternalSectorInfo =
  1031. {
  1032. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B5000UL), /* pSectorStartAddressPtr */
  1033. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1034. (boolean)TRUE, /* bEccTriggersExc */
  1035. 213U /* Sector location to calculate cfgCRC */
  1036. };
  1037. static const Fls_Flash_InternalSectorInfoType FlsSector_54_FlsConfigSet_VS_0_sInternalSectorInfo =
  1038. {
  1039. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B6000UL), /* pSectorStartAddressPtr */
  1040. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1041. (boolean)TRUE, /* bEccTriggersExc */
  1042. 214U /* Sector location to calculate cfgCRC */
  1043. };
  1044. static const Fls_Flash_InternalSectorInfoType FlsSector_55_FlsConfigSet_VS_0_sInternalSectorInfo =
  1045. {
  1046. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B7000UL), /* pSectorStartAddressPtr */
  1047. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1048. (boolean)TRUE, /* bEccTriggersExc */
  1049. 215U /* Sector location to calculate cfgCRC */
  1050. };
  1051. static const Fls_Flash_InternalSectorInfoType FlsSector_56_FlsConfigSet_VS_0_sInternalSectorInfo =
  1052. {
  1053. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B8000UL), /* pSectorStartAddressPtr */
  1054. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1055. (boolean)TRUE, /* bEccTriggersExc */
  1056. 216U /* Sector location to calculate cfgCRC */
  1057. };
  1058. static const Fls_Flash_InternalSectorInfoType FlsSector_57_FlsConfigSet_VS_0_sInternalSectorInfo =
  1059. {
  1060. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0B9000UL), /* pSectorStartAddressPtr */
  1061. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1062. (boolean)TRUE, /* bEccTriggersExc */
  1063. 217U /* Sector location to calculate cfgCRC */
  1064. };
  1065. static const Fls_Flash_InternalSectorInfoType FlsSector_58_FlsConfigSet_VS_0_sInternalSectorInfo =
  1066. {
  1067. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0BA000UL), /* pSectorStartAddressPtr */
  1068. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1069. (boolean)TRUE, /* bEccTriggersExc */
  1070. 218U /* Sector location to calculate cfgCRC */
  1071. };
  1072. static const Fls_Flash_InternalSectorInfoType FlsSector_59_FlsConfigSet_VS_0_sInternalSectorInfo =
  1073. {
  1074. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0BB000UL), /* pSectorStartAddressPtr */
  1075. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1076. (boolean)TRUE, /* bEccTriggersExc */
  1077. 219U /* Sector location to calculate cfgCRC */
  1078. };
  1079. static const Fls_Flash_InternalSectorInfoType FlsSector_60_FlsConfigSet_VS_0_sInternalSectorInfo =
  1080. {
  1081. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0BC000UL), /* pSectorStartAddressPtr */
  1082. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1083. (boolean)TRUE, /* bEccTriggersExc */
  1084. 220U /* Sector location to calculate cfgCRC */
  1085. };
  1086. static const Fls_Flash_InternalSectorInfoType FlsSector_61_FlsConfigSet_VS_0_sInternalSectorInfo =
  1087. {
  1088. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0BD000UL), /* pSectorStartAddressPtr */
  1089. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1090. (boolean)TRUE, /* bEccTriggersExc */
  1091. 221U /* Sector location to calculate cfgCRC */
  1092. };
  1093. static const Fls_Flash_InternalSectorInfoType FlsSector_62_FlsConfigSet_VS_0_sInternalSectorInfo =
  1094. {
  1095. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0BE000UL), /* pSectorStartAddressPtr */
  1096. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1097. (boolean)TRUE, /* bEccTriggersExc */
  1098. 222U /* Sector location to calculate cfgCRC */
  1099. };
  1100. static const Fls_Flash_InternalSectorInfoType FlsSector_63_FlsConfigSet_VS_0_sInternalSectorInfo =
  1101. {
  1102. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0BF000UL), /* pSectorStartAddressPtr */
  1103. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1104. (boolean)TRUE, /* bEccTriggersExc */
  1105. 223U /* Sector location to calculate cfgCRC */
  1106. };
  1107. static const Fls_Flash_InternalSectorInfoType FlsSector_64_FlsConfigSet_VS_0_sInternalSectorInfo =
  1108. {
  1109. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C0000UL), /* pSectorStartAddressPtr */
  1110. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1111. (boolean)TRUE, /* bEccTriggersExc */
  1112. 224U /* Sector location to calculate cfgCRC */
  1113. };
  1114. static const Fls_Flash_InternalSectorInfoType FlsSector_65_FlsConfigSet_VS_0_sInternalSectorInfo =
  1115. {
  1116. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C1000UL), /* pSectorStartAddressPtr */
  1117. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1118. (boolean)TRUE, /* bEccTriggersExc */
  1119. 225U /* Sector location to calculate cfgCRC */
  1120. };
  1121. static const Fls_Flash_InternalSectorInfoType FlsSector_66_FlsConfigSet_VS_0_sInternalSectorInfo =
  1122. {
  1123. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C2000UL), /* pSectorStartAddressPtr */
  1124. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1125. (boolean)TRUE, /* bEccTriggersExc */
  1126. 226U /* Sector location to calculate cfgCRC */
  1127. };
  1128. static const Fls_Flash_InternalSectorInfoType FlsSector_67_FlsConfigSet_VS_0_sInternalSectorInfo =
  1129. {
  1130. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C3000UL), /* pSectorStartAddressPtr */
  1131. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1132. (boolean)TRUE, /* bEccTriggersExc */
  1133. 227U /* Sector location to calculate cfgCRC */
  1134. };
  1135. static const Fls_Flash_InternalSectorInfoType FlsSector_68_FlsConfigSet_VS_0_sInternalSectorInfo =
  1136. {
  1137. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C4000UL), /* pSectorStartAddressPtr */
  1138. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1139. (boolean)TRUE, /* bEccTriggersExc */
  1140. 228U /* Sector location to calculate cfgCRC */
  1141. };
  1142. static const Fls_Flash_InternalSectorInfoType FlsSector_69_FlsConfigSet_VS_0_sInternalSectorInfo =
  1143. {
  1144. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C5000UL), /* pSectorStartAddressPtr */
  1145. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1146. (boolean)TRUE, /* bEccTriggersExc */
  1147. 229U /* Sector location to calculate cfgCRC */
  1148. };
  1149. static const Fls_Flash_InternalSectorInfoType FlsSector_70_FlsConfigSet_VS_0_sInternalSectorInfo =
  1150. {
  1151. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C6000UL), /* pSectorStartAddressPtr */
  1152. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1153. (boolean)TRUE, /* bEccTriggersExc */
  1154. 230U /* Sector location to calculate cfgCRC */
  1155. };
  1156. static const Fls_Flash_InternalSectorInfoType FlsSector_71_FlsConfigSet_VS_0_sInternalSectorInfo =
  1157. {
  1158. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C7000UL), /* pSectorStartAddressPtr */
  1159. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1160. (boolean)TRUE, /* bEccTriggersExc */
  1161. 231U /* Sector location to calculate cfgCRC */
  1162. };
  1163. static const Fls_Flash_InternalSectorInfoType FlsSector_72_FlsConfigSet_VS_0_sInternalSectorInfo =
  1164. {
  1165. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C8000UL), /* pSectorStartAddressPtr */
  1166. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1167. (boolean)TRUE, /* bEccTriggersExc */
  1168. 232U /* Sector location to calculate cfgCRC */
  1169. };
  1170. static const Fls_Flash_InternalSectorInfoType FlsSector_73_FlsConfigSet_VS_0_sInternalSectorInfo =
  1171. {
  1172. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0C9000UL), /* pSectorStartAddressPtr */
  1173. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1174. (boolean)TRUE, /* bEccTriggersExc */
  1175. 233U /* Sector location to calculate cfgCRC */
  1176. };
  1177. static const Fls_Flash_InternalSectorInfoType FlsSector_74_FlsConfigSet_VS_0_sInternalSectorInfo =
  1178. {
  1179. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0CA000UL), /* pSectorStartAddressPtr */
  1180. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1181. (boolean)TRUE, /* bEccTriggersExc */
  1182. 234U /* Sector location to calculate cfgCRC */
  1183. };
  1184. static const Fls_Flash_InternalSectorInfoType FlsSector_75_FlsConfigSet_VS_0_sInternalSectorInfo =
  1185. {
  1186. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0CB000UL), /* pSectorStartAddressPtr */
  1187. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1188. (boolean)TRUE, /* bEccTriggersExc */
  1189. 235U /* Sector location to calculate cfgCRC */
  1190. };
  1191. static const Fls_Flash_InternalSectorInfoType FlsSector_76_FlsConfigSet_VS_0_sInternalSectorInfo =
  1192. {
  1193. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0CC000UL), /* pSectorStartAddressPtr */
  1194. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1195. (boolean)TRUE, /* bEccTriggersExc */
  1196. 236U /* Sector location to calculate cfgCRC */
  1197. };
  1198. static const Fls_Flash_InternalSectorInfoType FlsSector_77_FlsConfigSet_VS_0_sInternalSectorInfo =
  1199. {
  1200. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0CD000UL), /* pSectorStartAddressPtr */
  1201. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1202. (boolean)TRUE, /* bEccTriggersExc */
  1203. 237U /* Sector location to calculate cfgCRC */
  1204. };
  1205. static const Fls_Flash_InternalSectorInfoType FlsSector_78_FlsConfigSet_VS_0_sInternalSectorInfo =
  1206. {
  1207. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0CE000UL), /* pSectorStartAddressPtr */
  1208. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1209. (boolean)TRUE, /* bEccTriggersExc */
  1210. 238U /* Sector location to calculate cfgCRC */
  1211. };
  1212. static const Fls_Flash_InternalSectorInfoType FlsSector_79_FlsConfigSet_VS_0_sInternalSectorInfo =
  1213. {
  1214. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0CF000UL), /* pSectorStartAddressPtr */
  1215. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1216. (boolean)TRUE, /* bEccTriggersExc */
  1217. 239U /* Sector location to calculate cfgCRC */
  1218. };
  1219. static const Fls_Flash_InternalSectorInfoType FlsSector_80_FlsConfigSet_VS_0_sInternalSectorInfo =
  1220. {
  1221. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D0000UL), /* pSectorStartAddressPtr */
  1222. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1223. (boolean)TRUE, /* bEccTriggersExc */
  1224. 240U /* Sector location to calculate cfgCRC */
  1225. };
  1226. static const Fls_Flash_InternalSectorInfoType FlsSector_81_FlsConfigSet_VS_0_sInternalSectorInfo =
  1227. {
  1228. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D1000UL), /* pSectorStartAddressPtr */
  1229. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1230. (boolean)TRUE, /* bEccTriggersExc */
  1231. 241U /* Sector location to calculate cfgCRC */
  1232. };
  1233. static const Fls_Flash_InternalSectorInfoType FlsSector_82_FlsConfigSet_VS_0_sInternalSectorInfo =
  1234. {
  1235. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D2000UL), /* pSectorStartAddressPtr */
  1236. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1237. (boolean)TRUE, /* bEccTriggersExc */
  1238. 242U /* Sector location to calculate cfgCRC */
  1239. };
  1240. static const Fls_Flash_InternalSectorInfoType FlsSector_83_FlsConfigSet_VS_0_sInternalSectorInfo =
  1241. {
  1242. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D3000UL), /* pSectorStartAddressPtr */
  1243. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1244. (boolean)TRUE, /* bEccTriggersExc */
  1245. 243U /* Sector location to calculate cfgCRC */
  1246. };
  1247. static const Fls_Flash_InternalSectorInfoType FlsSector_84_FlsConfigSet_VS_0_sInternalSectorInfo =
  1248. {
  1249. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D4000UL), /* pSectorStartAddressPtr */
  1250. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1251. (boolean)TRUE, /* bEccTriggersExc */
  1252. 244U /* Sector location to calculate cfgCRC */
  1253. };
  1254. static const Fls_Flash_InternalSectorInfoType FlsSector_85_FlsConfigSet_VS_0_sInternalSectorInfo =
  1255. {
  1256. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D5000UL), /* pSectorStartAddressPtr */
  1257. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1258. (boolean)TRUE, /* bEccTriggersExc */
  1259. 245U /* Sector location to calculate cfgCRC */
  1260. };
  1261. static const Fls_Flash_InternalSectorInfoType FlsSector_86_FlsConfigSet_VS_0_sInternalSectorInfo =
  1262. {
  1263. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D6000UL), /* pSectorStartAddressPtr */
  1264. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1265. (boolean)TRUE, /* bEccTriggersExc */
  1266. 246U /* Sector location to calculate cfgCRC */
  1267. };
  1268. static const Fls_Flash_InternalSectorInfoType FlsSector_87_FlsConfigSet_VS_0_sInternalSectorInfo =
  1269. {
  1270. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D7000UL), /* pSectorStartAddressPtr */
  1271. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1272. (boolean)TRUE, /* bEccTriggersExc */
  1273. 247U /* Sector location to calculate cfgCRC */
  1274. };
  1275. static const Fls_Flash_InternalSectorInfoType FlsSector_88_FlsConfigSet_VS_0_sInternalSectorInfo =
  1276. {
  1277. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x038000UL), /* pSectorStartAddressPtr */
  1278. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_0), /* code block 0 */
  1279. (boolean)TRUE, /* bEccTriggersExc */
  1280. 88U /* Sector location to calculate cfgCRC */
  1281. };
  1282. static const Fls_Flash_InternalSectorInfoType FlsSector_89_FlsConfigSet_VS_0_sInternalSectorInfo =
  1283. {
  1284. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0D9000UL), /* pSectorStartAddressPtr */
  1285. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1286. (boolean)TRUE, /* bEccTriggersExc */
  1287. 249U /* Sector location to calculate cfgCRC */
  1288. };
  1289. static const Fls_Flash_InternalSectorInfoType FlsSector_90_FlsConfigSet_VS_0_sInternalSectorInfo =
  1290. {
  1291. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0DA000UL), /* pSectorStartAddressPtr */
  1292. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1293. (boolean)TRUE, /* bEccTriggersExc */
  1294. 250U /* Sector location to calculate cfgCRC */
  1295. };
  1296. static const Fls_Flash_InternalSectorInfoType FlsSector_91_FlsConfigSet_VS_0_sInternalSectorInfo =
  1297. {
  1298. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0DB000UL), /* pSectorStartAddressPtr */
  1299. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1300. (boolean)TRUE, /* bEccTriggersExc */
  1301. 251U /* Sector location to calculate cfgCRC */
  1302. };
  1303. static const Fls_Flash_InternalSectorInfoType FlsSector_92_FlsConfigSet_VS_0_sInternalSectorInfo =
  1304. {
  1305. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0DC000UL), /* pSectorStartAddressPtr */
  1306. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1307. (boolean)TRUE, /* bEccTriggersExc */
  1308. 252U /* Sector location to calculate cfgCRC */
  1309. };
  1310. static const Fls_Flash_InternalSectorInfoType FlsSector_93_FlsConfigSet_VS_0_sInternalSectorInfo =
  1311. {
  1312. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0DD000UL), /* pSectorStartAddressPtr */
  1313. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1314. (boolean)TRUE, /* bEccTriggersExc */
  1315. 253U /* Sector location to calculate cfgCRC */
  1316. };
  1317. static const Fls_Flash_InternalSectorInfoType FlsSector_94_FlsConfigSet_VS_0_sInternalSectorInfo =
  1318. {
  1319. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0DE000UL), /* pSectorStartAddressPtr */
  1320. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1321. (boolean)TRUE, /* bEccTriggersExc */
  1322. 254U /* Sector location to calculate cfgCRC */
  1323. };
  1324. static const Fls_Flash_InternalSectorInfoType FlsSector_95_FlsConfigSet_VS_0_sInternalSectorInfo =
  1325. {
  1326. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0DF000UL), /* pSectorStartAddressPtr */
  1327. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1328. (boolean)TRUE, /* bEccTriggersExc */
  1329. 255U /* Sector location to calculate cfgCRC */
  1330. };
  1331. static const Fls_Flash_InternalSectorInfoType FlsSector_96_FlsConfigSet_VS_0_sInternalSectorInfo =
  1332. {
  1333. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E0000UL), /* pSectorStartAddressPtr */
  1334. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1335. (boolean)TRUE, /* bEccTriggersExc */
  1336. 256U /* Sector location to calculate cfgCRC */
  1337. };
  1338. static const Fls_Flash_InternalSectorInfoType FlsSector_97_FlsConfigSet_VS_0_sInternalSectorInfo =
  1339. {
  1340. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E1000UL), /* pSectorStartAddressPtr */
  1341. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1342. (boolean)TRUE, /* bEccTriggersExc */
  1343. 257U /* Sector location to calculate cfgCRC */
  1344. };
  1345. static const Fls_Flash_InternalSectorInfoType FlsSector_98_FlsConfigSet_VS_0_sInternalSectorInfo =
  1346. {
  1347. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E2000UL), /* pSectorStartAddressPtr */
  1348. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1349. (boolean)TRUE, /* bEccTriggersExc */
  1350. 258U /* Sector location to calculate cfgCRC */
  1351. };
  1352. static const Fls_Flash_InternalSectorInfoType FlsSector_99_FlsConfigSet_VS_0_sInternalSectorInfo =
  1353. {
  1354. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E3000UL), /* pSectorStartAddressPtr */
  1355. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1356. (boolean)TRUE, /* bEccTriggersExc */
  1357. 259U /* Sector location to calculate cfgCRC */
  1358. };
  1359. static const Fls_Flash_InternalSectorInfoType FlsSector_100_FlsConfigSet_VS_0_sInternalSectorInfo =
  1360. {
  1361. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E4000UL), /* pSectorStartAddressPtr */
  1362. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1363. (boolean)TRUE, /* bEccTriggersExc */
  1364. 260U /* Sector location to calculate cfgCRC */
  1365. };
  1366. static const Fls_Flash_InternalSectorInfoType FlsSector_101_FlsConfigSet_VS_0_sInternalSectorInfo =
  1367. {
  1368. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E5000UL), /* pSectorStartAddressPtr */
  1369. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1370. (boolean)TRUE, /* bEccTriggersExc */
  1371. 261U /* Sector location to calculate cfgCRC */
  1372. };
  1373. static const Fls_Flash_InternalSectorInfoType FlsSector_102_FlsConfigSet_VS_0_sInternalSectorInfo =
  1374. {
  1375. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E6000UL), /* pSectorStartAddressPtr */
  1376. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1377. (boolean)TRUE, /* bEccTriggersExc */
  1378. 262U /* Sector location to calculate cfgCRC */
  1379. };
  1380. static const Fls_Flash_InternalSectorInfoType FlsSector_103_FlsConfigSet_VS_0_sInternalSectorInfo =
  1381. {
  1382. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E7000UL), /* pSectorStartAddressPtr */
  1383. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1384. (boolean)TRUE, /* bEccTriggersExc */
  1385. 263U /* Sector location to calculate cfgCRC */
  1386. };
  1387. static const Fls_Flash_InternalSectorInfoType FlsSector_104_FlsConfigSet_VS_0_sInternalSectorInfo =
  1388. {
  1389. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E8000UL), /* pSectorStartAddressPtr */
  1390. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1391. (boolean)TRUE, /* bEccTriggersExc */
  1392. 264U /* Sector location to calculate cfgCRC */
  1393. };
  1394. static const Fls_Flash_InternalSectorInfoType FlsSector_105_FlsConfigSet_VS_0_sInternalSectorInfo =
  1395. {
  1396. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0E9000UL), /* pSectorStartAddressPtr */
  1397. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1398. (boolean)TRUE, /* bEccTriggersExc */
  1399. 265U /* Sector location to calculate cfgCRC */
  1400. };
  1401. static const Fls_Flash_InternalSectorInfoType FlsSector_106_FlsConfigSet_VS_0_sInternalSectorInfo =
  1402. {
  1403. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0EA000UL), /* pSectorStartAddressPtr */
  1404. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1405. (boolean)TRUE, /* bEccTriggersExc */
  1406. 266U /* Sector location to calculate cfgCRC */
  1407. };
  1408. static const Fls_Flash_InternalSectorInfoType FlsSector_107_FlsConfigSet_VS_0_sInternalSectorInfo =
  1409. {
  1410. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0EB000UL), /* pSectorStartAddressPtr */
  1411. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1412. (boolean)TRUE, /* bEccTriggersExc */
  1413. 267U /* Sector location to calculate cfgCRC */
  1414. };
  1415. static const Fls_Flash_InternalSectorInfoType FlsSector_108_FlsConfigSet_VS_0_sInternalSectorInfo =
  1416. {
  1417. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0EC000UL), /* pSectorStartAddressPtr */
  1418. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1419. (boolean)TRUE, /* bEccTriggersExc */
  1420. 268U /* Sector location to calculate cfgCRC */
  1421. };
  1422. static const Fls_Flash_InternalSectorInfoType FlsSector_109_FlsConfigSet_VS_0_sInternalSectorInfo =
  1423. {
  1424. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0ED000UL), /* pSectorStartAddressPtr */
  1425. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1426. (boolean)TRUE, /* bEccTriggersExc */
  1427. 269U /* Sector location to calculate cfgCRC */
  1428. };
  1429. static const Fls_Flash_InternalSectorInfoType FlsSector_110_FlsConfigSet_VS_0_sInternalSectorInfo =
  1430. {
  1431. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0EE000UL), /* pSectorStartAddressPtr */
  1432. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1433. (boolean)TRUE, /* bEccTriggersExc */
  1434. 270U /* Sector location to calculate cfgCRC */
  1435. };
  1436. static const Fls_Flash_InternalSectorInfoType FlsSector_111_FlsConfigSet_VS_0_sInternalSectorInfo =
  1437. {
  1438. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0EF000UL), /* pSectorStartAddressPtr */
  1439. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1440. (boolean)TRUE, /* bEccTriggersExc */
  1441. 271U /* Sector location to calculate cfgCRC */
  1442. };
  1443. static const Fls_Flash_InternalSectorInfoType FlsSector_112_FlsConfigSet_VS_0_sInternalSectorInfo =
  1444. {
  1445. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F0000UL), /* pSectorStartAddressPtr */
  1446. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1447. (boolean)TRUE, /* bEccTriggersExc */
  1448. 272U /* Sector location to calculate cfgCRC */
  1449. };
  1450. static const Fls_Flash_InternalSectorInfoType FlsSector_113_FlsConfigSet_VS_0_sInternalSectorInfo =
  1451. {
  1452. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F1000UL), /* pSectorStartAddressPtr */
  1453. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1454. (boolean)TRUE, /* bEccTriggersExc */
  1455. 273U /* Sector location to calculate cfgCRC */
  1456. };
  1457. static const Fls_Flash_InternalSectorInfoType FlsSector_114_FlsConfigSet_VS_0_sInternalSectorInfo =
  1458. {
  1459. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F2000UL), /* pSectorStartAddressPtr */
  1460. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1461. (boolean)TRUE, /* bEccTriggersExc */
  1462. 274U /* Sector location to calculate cfgCRC */
  1463. };
  1464. static const Fls_Flash_InternalSectorInfoType FlsSector_115_FlsConfigSet_VS_0_sInternalSectorInfo =
  1465. {
  1466. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F3000UL), /* pSectorStartAddressPtr */
  1467. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1468. (boolean)TRUE, /* bEccTriggersExc */
  1469. 275U /* Sector location to calculate cfgCRC */
  1470. };
  1471. static const Fls_Flash_InternalSectorInfoType FlsSector_116_FlsConfigSet_VS_0_sInternalSectorInfo =
  1472. {
  1473. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F4000UL), /* pSectorStartAddressPtr */
  1474. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1475. (boolean)TRUE, /* bEccTriggersExc */
  1476. 276U /* Sector location to calculate cfgCRC */
  1477. };
  1478. static const Fls_Flash_InternalSectorInfoType FlsSector_117_FlsConfigSet_VS_0_sInternalSectorInfo =
  1479. {
  1480. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F5000UL), /* pSectorStartAddressPtr */
  1481. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1482. (boolean)TRUE, /* bEccTriggersExc */
  1483. 277U /* Sector location to calculate cfgCRC */
  1484. };
  1485. static const Fls_Flash_InternalSectorInfoType FlsSector_118_FlsConfigSet_VS_0_sInternalSectorInfo =
  1486. {
  1487. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F6000UL), /* pSectorStartAddressPtr */
  1488. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1489. (boolean)TRUE, /* bEccTriggersExc */
  1490. 278U /* Sector location to calculate cfgCRC */
  1491. };
  1492. static const Fls_Flash_InternalSectorInfoType FlsSector_119_FlsConfigSet_VS_0_sInternalSectorInfo =
  1493. {
  1494. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F7000UL), /* pSectorStartAddressPtr */
  1495. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1496. (boolean)TRUE, /* bEccTriggersExc */
  1497. 279U /* Sector location to calculate cfgCRC */
  1498. };
  1499. static const Fls_Flash_InternalSectorInfoType FlsSector_120_FlsConfigSet_VS_0_sInternalSectorInfo =
  1500. {
  1501. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F8000UL), /* pSectorStartAddressPtr */
  1502. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1503. (boolean)TRUE, /* bEccTriggersExc */
  1504. 280U /* Sector location to calculate cfgCRC */
  1505. };
  1506. static const Fls_Flash_InternalSectorInfoType FlsSector_121_FlsConfigSet_VS_0_sInternalSectorInfo =
  1507. {
  1508. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0F9000UL), /* pSectorStartAddressPtr */
  1509. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1510. (boolean)TRUE, /* bEccTriggersExc */
  1511. 281U /* Sector location to calculate cfgCRC */
  1512. };
  1513. static const Fls_Flash_InternalSectorInfoType FlsSector_122_FlsConfigSet_VS_0_sInternalSectorInfo =
  1514. {
  1515. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0FA000UL), /* pSectorStartAddressPtr */
  1516. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1517. (boolean)TRUE, /* bEccTriggersExc */
  1518. 282U /* Sector location to calculate cfgCRC */
  1519. };
  1520. static const Fls_Flash_InternalSectorInfoType FlsSector_123_FlsConfigSet_VS_0_sInternalSectorInfo =
  1521. {
  1522. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0FB000UL), /* pSectorStartAddressPtr */
  1523. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1524. (boolean)TRUE, /* bEccTriggersExc */
  1525. 283U /* Sector location to calculate cfgCRC */
  1526. };
  1527. static const Fls_Flash_InternalSectorInfoType FlsSector_124_FlsConfigSet_VS_0_sInternalSectorInfo =
  1528. {
  1529. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0FC000UL), /* pSectorStartAddressPtr */
  1530. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1531. (boolean)TRUE, /* bEccTriggersExc */
  1532. 284U /* Sector location to calculate cfgCRC */
  1533. };
  1534. static const Fls_Flash_InternalSectorInfoType FlsSector_125_FlsConfigSet_VS_0_sInternalSectorInfo =
  1535. {
  1536. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0FD000UL), /* pSectorStartAddressPtr */
  1537. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1538. (boolean)TRUE, /* bEccTriggersExc */
  1539. 285U /* Sector location to calculate cfgCRC */
  1540. };
  1541. static const Fls_Flash_InternalSectorInfoType FlsSector_126_FlsConfigSet_VS_0_sInternalSectorInfo =
  1542. {
  1543. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0FE000UL), /* pSectorStartAddressPtr */
  1544. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1545. (boolean)TRUE, /* bEccTriggersExc */
  1546. 286U /* Sector location to calculate cfgCRC */
  1547. };
  1548. static const Fls_Flash_InternalSectorInfoType FlsSector_127_FlsConfigSet_VS_0_sInternalSectorInfo =
  1549. {
  1550. (FLS_PROGRAM_FLASH_BASE_ADDR + 0x0FF000UL), /* pSectorStartAddressPtr */
  1551. (Fls_BlockNumberOfSectorType)(FLS_CODE_BLOCK_1), /* code block 1 */
  1552. (boolean)TRUE, /* bEccTriggersExc */
  1553. 287U /* Sector location to calculate cfgCRC */
  1554. };
  1555. /* FLASH physical sectorization description */
  1556. static const Fls_Flash_InternalSectorInfoType * const FlsConfigSet_VS_0_aSectorList[128U] =
  1557. {
  1558. &FlsSector_0_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S128 */
  1559. &FlsSector_1_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S129 */
  1560. &FlsSector_2_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S130 */
  1561. &FlsSector_3_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S131 */
  1562. &FlsSector_4_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S132 */
  1563. &FlsSector_5_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S133 */
  1564. &FlsSector_6_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S134 */
  1565. &FlsSector_7_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S135 */
  1566. &FlsSector_8_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S136 */
  1567. &FlsSector_9_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S137 */
  1568. &FlsSector_10_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S138 */
  1569. &FlsSector_11_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S139 */
  1570. &FlsSector_12_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S140 */
  1571. &FlsSector_13_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S141 */
  1572. &FlsSector_14_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S142 */
  1573. &FlsSector_15_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S143 */
  1574. &FlsSector_16_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S144 */
  1575. &FlsSector_17_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S145 */
  1576. &FlsSector_18_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S146 */
  1577. &FlsSector_19_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S147 */
  1578. &FlsSector_20_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S148 */
  1579. &FlsSector_21_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S149 */
  1580. &FlsSector_22_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S150 */
  1581. &FlsSector_23_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S151 */
  1582. &FlsSector_24_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S152 */
  1583. &FlsSector_25_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S153 */
  1584. &FlsSector_26_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S154 */
  1585. &FlsSector_27_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S155 */
  1586. &FlsSector_28_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S156 */
  1587. &FlsSector_29_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S157 */
  1588. &FlsSector_30_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S158 */
  1589. &FlsSector_31_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S159 */
  1590. &FlsSector_32_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S160 */
  1591. &FlsSector_33_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S161 */
  1592. &FlsSector_34_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S162 */
  1593. &FlsSector_35_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S163 */
  1594. &FlsSector_36_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S164 */
  1595. &FlsSector_37_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S165 */
  1596. &FlsSector_38_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S166 */
  1597. &FlsSector_39_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S167 */
  1598. &FlsSector_40_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S168 */
  1599. &FlsSector_41_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S169 */
  1600. &FlsSector_42_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S170 */
  1601. &FlsSector_43_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S171 */
  1602. &FlsSector_44_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S172 */
  1603. &FlsSector_45_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S173 */
  1604. &FlsSector_46_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S174 */
  1605. &FlsSector_47_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S175 */
  1606. &FlsSector_48_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S176 */
  1607. &FlsSector_49_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S177 */
  1608. &FlsSector_50_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S178 */
  1609. &FlsSector_51_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S179 */
  1610. &FlsSector_52_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S180 */
  1611. &FlsSector_53_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S181 */
  1612. &FlsSector_54_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S182 */
  1613. &FlsSector_55_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S183 */
  1614. &FlsSector_56_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S184 */
  1615. &FlsSector_57_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S185 */
  1616. &FlsSector_58_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S186 */
  1617. &FlsSector_59_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S187 */
  1618. &FlsSector_60_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S188 */
  1619. &FlsSector_61_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S189 */
  1620. &FlsSector_62_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S190 */
  1621. &FlsSector_63_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S191 */
  1622. &FlsSector_64_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S192 */
  1623. &FlsSector_65_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S193 */
  1624. &FlsSector_66_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S194 */
  1625. &FlsSector_67_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S195 */
  1626. &FlsSector_68_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S196 */
  1627. &FlsSector_69_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S197 */
  1628. &FlsSector_70_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S198 */
  1629. &FlsSector_71_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S199 */
  1630. &FlsSector_72_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S200 */
  1631. &FlsSector_73_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S201 */
  1632. &FlsSector_74_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S202 */
  1633. &FlsSector_75_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S203 */
  1634. &FlsSector_76_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S204 */
  1635. &FlsSector_77_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S205 */
  1636. &FlsSector_78_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S206 */
  1637. &FlsSector_79_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S207 */
  1638. &FlsSector_80_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S208 */
  1639. &FlsSector_81_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S209 */
  1640. &FlsSector_82_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S210 */
  1641. &FlsSector_83_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S211 */
  1642. &FlsSector_84_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S212 */
  1643. &FlsSector_85_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S213 */
  1644. &FlsSector_86_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S214 */
  1645. &FlsSector_87_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S215 */
  1646. &FlsSector_88_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_0_S056 */
  1647. &FlsSector_89_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S217 */
  1648. &FlsSector_90_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S218 */
  1649. &FlsSector_91_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S219 */
  1650. &FlsSector_92_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S220 */
  1651. &FlsSector_93_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S221 */
  1652. &FlsSector_94_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S222 */
  1653. &FlsSector_95_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S223 */
  1654. &FlsSector_96_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S224 */
  1655. &FlsSector_97_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S225 */
  1656. &FlsSector_98_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S226 */
  1657. &FlsSector_99_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S227 */
  1658. &FlsSector_100_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S228 */
  1659. &FlsSector_101_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S229 */
  1660. &FlsSector_102_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S230 */
  1661. &FlsSector_103_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S231 */
  1662. &FlsSector_104_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S232 */
  1663. &FlsSector_105_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S233 */
  1664. &FlsSector_106_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S234 */
  1665. &FlsSector_107_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S235 */
  1666. &FlsSector_108_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S236 */
  1667. &FlsSector_109_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S237 */
  1668. &FlsSector_110_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S238 */
  1669. &FlsSector_111_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S239 */
  1670. &FlsSector_112_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S240 */
  1671. &FlsSector_113_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S241 */
  1672. &FlsSector_114_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S242 */
  1673. &FlsSector_115_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S243 */
  1674. &FlsSector_116_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S244 */
  1675. &FlsSector_117_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S245 */
  1676. &FlsSector_118_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S246 */
  1677. &FlsSector_119_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S247 */
  1678. &FlsSector_120_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S248 */
  1679. &FlsSector_121_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S249 */
  1680. &FlsSector_122_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S250 */
  1681. &FlsSector_123_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S251 */
  1682. &FlsSector_124_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S252 */
  1683. &FlsSector_125_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S253 */
  1684. &FlsSector_126_FlsConfigSet_VS_0_sInternalSectorInfo, /* FLS_CODE_ARRAY_0_BLOCK_1_S254 */
  1685. &FlsSector_127_FlsConfigSet_VS_0_sInternalSectorInfo /* FLS_CODE_ARRAY_0_BLOCK_1_S255 */
  1686. };
  1687. /* paHwCh */
  1688. static const Fls_HwChType FlsConfigSet_VS_0_paHwCh[128U] =
  1689. {
  1690. FLS_CH_INTERN, /* FlsSector_0 */
  1691. FLS_CH_INTERN, /* FlsSector_1 */
  1692. FLS_CH_INTERN, /* FlsSector_2 */
  1693. FLS_CH_INTERN, /* FlsSector_3 */
  1694. FLS_CH_INTERN, /* FlsSector_4 */
  1695. FLS_CH_INTERN, /* FlsSector_5 */
  1696. FLS_CH_INTERN, /* FlsSector_6 */
  1697. FLS_CH_INTERN, /* FlsSector_7 */
  1698. FLS_CH_INTERN, /* FlsSector_8 */
  1699. FLS_CH_INTERN, /* FlsSector_9 */
  1700. FLS_CH_INTERN, /* FlsSector_10 */
  1701. FLS_CH_INTERN, /* FlsSector_11 */
  1702. FLS_CH_INTERN, /* FlsSector_12 */
  1703. FLS_CH_INTERN, /* FlsSector_13 */
  1704. FLS_CH_INTERN, /* FlsSector_14 */
  1705. FLS_CH_INTERN, /* FlsSector_15 */
  1706. FLS_CH_INTERN, /* FlsSector_16 */
  1707. FLS_CH_INTERN, /* FlsSector_17 */
  1708. FLS_CH_INTERN, /* FlsSector_18 */
  1709. FLS_CH_INTERN, /* FlsSector_19 */
  1710. FLS_CH_INTERN, /* FlsSector_20 */
  1711. FLS_CH_INTERN, /* FlsSector_21 */
  1712. FLS_CH_INTERN, /* FlsSector_22 */
  1713. FLS_CH_INTERN, /* FlsSector_23 */
  1714. FLS_CH_INTERN, /* FlsSector_24 */
  1715. FLS_CH_INTERN, /* FlsSector_25 */
  1716. FLS_CH_INTERN, /* FlsSector_26 */
  1717. FLS_CH_INTERN, /* FlsSector_27 */
  1718. FLS_CH_INTERN, /* FlsSector_28 */
  1719. FLS_CH_INTERN, /* FlsSector_29 */
  1720. FLS_CH_INTERN, /* FlsSector_30 */
  1721. FLS_CH_INTERN, /* FlsSector_31 */
  1722. FLS_CH_INTERN, /* FlsSector_32 */
  1723. FLS_CH_INTERN, /* FlsSector_33 */
  1724. FLS_CH_INTERN, /* FlsSector_34 */
  1725. FLS_CH_INTERN, /* FlsSector_35 */
  1726. FLS_CH_INTERN, /* FlsSector_36 */
  1727. FLS_CH_INTERN, /* FlsSector_37 */
  1728. FLS_CH_INTERN, /* FlsSector_38 */
  1729. FLS_CH_INTERN, /* FlsSector_39 */
  1730. FLS_CH_INTERN, /* FlsSector_40 */
  1731. FLS_CH_INTERN, /* FlsSector_41 */
  1732. FLS_CH_INTERN, /* FlsSector_42 */
  1733. FLS_CH_INTERN, /* FlsSector_43 */
  1734. FLS_CH_INTERN, /* FlsSector_44 */
  1735. FLS_CH_INTERN, /* FlsSector_45 */
  1736. FLS_CH_INTERN, /* FlsSector_46 */
  1737. FLS_CH_INTERN, /* FlsSector_47 */
  1738. FLS_CH_INTERN, /* FlsSector_48 */
  1739. FLS_CH_INTERN, /* FlsSector_49 */
  1740. FLS_CH_INTERN, /* FlsSector_50 */
  1741. FLS_CH_INTERN, /* FlsSector_51 */
  1742. FLS_CH_INTERN, /* FlsSector_52 */
  1743. FLS_CH_INTERN, /* FlsSector_53 */
  1744. FLS_CH_INTERN, /* FlsSector_54 */
  1745. FLS_CH_INTERN, /* FlsSector_55 */
  1746. FLS_CH_INTERN, /* FlsSector_56 */
  1747. FLS_CH_INTERN, /* FlsSector_57 */
  1748. FLS_CH_INTERN, /* FlsSector_58 */
  1749. FLS_CH_INTERN, /* FlsSector_59 */
  1750. FLS_CH_INTERN, /* FlsSector_60 */
  1751. FLS_CH_INTERN, /* FlsSector_61 */
  1752. FLS_CH_INTERN, /* FlsSector_62 */
  1753. FLS_CH_INTERN, /* FlsSector_63 */
  1754. FLS_CH_INTERN, /* FlsSector_64 */
  1755. FLS_CH_INTERN, /* FlsSector_65 */
  1756. FLS_CH_INTERN, /* FlsSector_66 */
  1757. FLS_CH_INTERN, /* FlsSector_67 */
  1758. FLS_CH_INTERN, /* FlsSector_68 */
  1759. FLS_CH_INTERN, /* FlsSector_69 */
  1760. FLS_CH_INTERN, /* FlsSector_70 */
  1761. FLS_CH_INTERN, /* FlsSector_71 */
  1762. FLS_CH_INTERN, /* FlsSector_72 */
  1763. FLS_CH_INTERN, /* FlsSector_73 */
  1764. FLS_CH_INTERN, /* FlsSector_74 */
  1765. FLS_CH_INTERN, /* FlsSector_75 */
  1766. FLS_CH_INTERN, /* FlsSector_76 */
  1767. FLS_CH_INTERN, /* FlsSector_77 */
  1768. FLS_CH_INTERN, /* FlsSector_78 */
  1769. FLS_CH_INTERN, /* FlsSector_79 */
  1770. FLS_CH_INTERN, /* FlsSector_80 */
  1771. FLS_CH_INTERN, /* FlsSector_81 */
  1772. FLS_CH_INTERN, /* FlsSector_82 */
  1773. FLS_CH_INTERN, /* FlsSector_83 */
  1774. FLS_CH_INTERN, /* FlsSector_84 */
  1775. FLS_CH_INTERN, /* FlsSector_85 */
  1776. FLS_CH_INTERN, /* FlsSector_86 */
  1777. FLS_CH_INTERN, /* FlsSector_87 */
  1778. FLS_CH_INTERN, /* FlsSector_88 */
  1779. FLS_CH_INTERN, /* FlsSector_89 */
  1780. FLS_CH_INTERN, /* FlsSector_90 */
  1781. FLS_CH_INTERN, /* FlsSector_91 */
  1782. FLS_CH_INTERN, /* FlsSector_92 */
  1783. FLS_CH_INTERN, /* FlsSector_93 */
  1784. FLS_CH_INTERN, /* FlsSector_94 */
  1785. FLS_CH_INTERN, /* FlsSector_95 */
  1786. FLS_CH_INTERN, /* FlsSector_96 */
  1787. FLS_CH_INTERN, /* FlsSector_97 */
  1788. FLS_CH_INTERN, /* FlsSector_98 */
  1789. FLS_CH_INTERN, /* FlsSector_99 */
  1790. FLS_CH_INTERN, /* FlsSector_100 */
  1791. FLS_CH_INTERN, /* FlsSector_101 */
  1792. FLS_CH_INTERN, /* FlsSector_102 */
  1793. FLS_CH_INTERN, /* FlsSector_103 */
  1794. FLS_CH_INTERN, /* FlsSector_104 */
  1795. FLS_CH_INTERN, /* FlsSector_105 */
  1796. FLS_CH_INTERN, /* FlsSector_106 */
  1797. FLS_CH_INTERN, /* FlsSector_107 */
  1798. FLS_CH_INTERN, /* FlsSector_108 */
  1799. FLS_CH_INTERN, /* FlsSector_109 */
  1800. FLS_CH_INTERN, /* FlsSector_110 */
  1801. FLS_CH_INTERN, /* FlsSector_111 */
  1802. FLS_CH_INTERN, /* FlsSector_112 */
  1803. FLS_CH_INTERN, /* FlsSector_113 */
  1804. FLS_CH_INTERN, /* FlsSector_114 */
  1805. FLS_CH_INTERN, /* FlsSector_115 */
  1806. FLS_CH_INTERN, /* FlsSector_116 */
  1807. FLS_CH_INTERN, /* FlsSector_117 */
  1808. FLS_CH_INTERN, /* FlsSector_118 */
  1809. FLS_CH_INTERN, /* FlsSector_119 */
  1810. FLS_CH_INTERN, /* FlsSector_120 */
  1811. FLS_CH_INTERN, /* FlsSector_121 */
  1812. FLS_CH_INTERN, /* FlsSector_122 */
  1813. FLS_CH_INTERN, /* FlsSector_123 */
  1814. FLS_CH_INTERN, /* FlsSector_124 */
  1815. FLS_CH_INTERN, /* FlsSector_125 */
  1816. FLS_CH_INTERN, /* FlsSector_126 */
  1817. FLS_CH_INTERN /* FlsSector_127 */
  1818. };
  1819. /* paSectorHwAddress */
  1820. static const Fls_AddressType FlsConfigSet_VS_0_paSectorHwAddress[128U] =
  1821. {
  1822. (Fls_AddressType)0U, /* FlsSector_0 */
  1823. (Fls_AddressType)0U, /* FlsSector_1 */
  1824. (Fls_AddressType)0U, /* FlsSector_2 */
  1825. (Fls_AddressType)0U, /* FlsSector_3 */
  1826. (Fls_AddressType)0U, /* FlsSector_4 */
  1827. (Fls_AddressType)0U, /* FlsSector_5 */
  1828. (Fls_AddressType)0U, /* FlsSector_6 */
  1829. (Fls_AddressType)0U, /* FlsSector_7 */
  1830. (Fls_AddressType)0U, /* FlsSector_8 */
  1831. (Fls_AddressType)0U, /* FlsSector_9 */
  1832. (Fls_AddressType)0U, /* FlsSector_10 */
  1833. (Fls_AddressType)0U, /* FlsSector_11 */
  1834. (Fls_AddressType)0U, /* FlsSector_12 */
  1835. (Fls_AddressType)0U, /* FlsSector_13 */
  1836. (Fls_AddressType)0U, /* FlsSector_14 */
  1837. (Fls_AddressType)0U, /* FlsSector_15 */
  1838. (Fls_AddressType)0U, /* FlsSector_16 */
  1839. (Fls_AddressType)0U, /* FlsSector_17 */
  1840. (Fls_AddressType)0U, /* FlsSector_18 */
  1841. (Fls_AddressType)0U, /* FlsSector_19 */
  1842. (Fls_AddressType)0U, /* FlsSector_20 */
  1843. (Fls_AddressType)0U, /* FlsSector_21 */
  1844. (Fls_AddressType)0U, /* FlsSector_22 */
  1845. (Fls_AddressType)0U, /* FlsSector_23 */
  1846. (Fls_AddressType)0U, /* FlsSector_24 */
  1847. (Fls_AddressType)0U, /* FlsSector_25 */
  1848. (Fls_AddressType)0U, /* FlsSector_26 */
  1849. (Fls_AddressType)0U, /* FlsSector_27 */
  1850. (Fls_AddressType)0U, /* FlsSector_28 */
  1851. (Fls_AddressType)0U, /* FlsSector_29 */
  1852. (Fls_AddressType)0U, /* FlsSector_30 */
  1853. (Fls_AddressType)0U, /* FlsSector_31 */
  1854. (Fls_AddressType)0U, /* FlsSector_32 */
  1855. (Fls_AddressType)0U, /* FlsSector_33 */
  1856. (Fls_AddressType)0U, /* FlsSector_34 */
  1857. (Fls_AddressType)0U, /* FlsSector_35 */
  1858. (Fls_AddressType)0U, /* FlsSector_36 */
  1859. (Fls_AddressType)0U, /* FlsSector_37 */
  1860. (Fls_AddressType)0U, /* FlsSector_38 */
  1861. (Fls_AddressType)0U, /* FlsSector_39 */
  1862. (Fls_AddressType)0U, /* FlsSector_40 */
  1863. (Fls_AddressType)0U, /* FlsSector_41 */
  1864. (Fls_AddressType)0U, /* FlsSector_42 */
  1865. (Fls_AddressType)0U, /* FlsSector_43 */
  1866. (Fls_AddressType)0U, /* FlsSector_44 */
  1867. (Fls_AddressType)0U, /* FlsSector_45 */
  1868. (Fls_AddressType)0U, /* FlsSector_46 */
  1869. (Fls_AddressType)0U, /* FlsSector_47 */
  1870. (Fls_AddressType)0U, /* FlsSector_48 */
  1871. (Fls_AddressType)0U, /* FlsSector_49 */
  1872. (Fls_AddressType)0U, /* FlsSector_50 */
  1873. (Fls_AddressType)0U, /* FlsSector_51 */
  1874. (Fls_AddressType)0U, /* FlsSector_52 */
  1875. (Fls_AddressType)0U, /* FlsSector_53 */
  1876. (Fls_AddressType)0U, /* FlsSector_54 */
  1877. (Fls_AddressType)0U, /* FlsSector_55 */
  1878. (Fls_AddressType)0U, /* FlsSector_56 */
  1879. (Fls_AddressType)0U, /* FlsSector_57 */
  1880. (Fls_AddressType)0U, /* FlsSector_58 */
  1881. (Fls_AddressType)0U, /* FlsSector_59 */
  1882. (Fls_AddressType)0U, /* FlsSector_60 */
  1883. (Fls_AddressType)0U, /* FlsSector_61 */
  1884. (Fls_AddressType)0U, /* FlsSector_62 */
  1885. (Fls_AddressType)0U, /* FlsSector_63 */
  1886. (Fls_AddressType)0U, /* FlsSector_64 */
  1887. (Fls_AddressType)0U, /* FlsSector_65 */
  1888. (Fls_AddressType)0U, /* FlsSector_66 */
  1889. (Fls_AddressType)0U, /* FlsSector_67 */
  1890. (Fls_AddressType)0U, /* FlsSector_68 */
  1891. (Fls_AddressType)0U, /* FlsSector_69 */
  1892. (Fls_AddressType)0U, /* FlsSector_70 */
  1893. (Fls_AddressType)0U, /* FlsSector_71 */
  1894. (Fls_AddressType)0U, /* FlsSector_72 */
  1895. (Fls_AddressType)0U, /* FlsSector_73 */
  1896. (Fls_AddressType)0U, /* FlsSector_74 */
  1897. (Fls_AddressType)0U, /* FlsSector_75 */
  1898. (Fls_AddressType)0U, /* FlsSector_76 */
  1899. (Fls_AddressType)0U, /* FlsSector_77 */
  1900. (Fls_AddressType)0U, /* FlsSector_78 */
  1901. (Fls_AddressType)0U, /* FlsSector_79 */
  1902. (Fls_AddressType)0U, /* FlsSector_80 */
  1903. (Fls_AddressType)0U, /* FlsSector_81 */
  1904. (Fls_AddressType)0U, /* FlsSector_82 */
  1905. (Fls_AddressType)0U, /* FlsSector_83 */
  1906. (Fls_AddressType)0U, /* FlsSector_84 */
  1907. (Fls_AddressType)0U, /* FlsSector_85 */
  1908. (Fls_AddressType)0U, /* FlsSector_86 */
  1909. (Fls_AddressType)0U, /* FlsSector_87 */
  1910. (Fls_AddressType)0U, /* FlsSector_88 */
  1911. (Fls_AddressType)0U, /* FlsSector_89 */
  1912. (Fls_AddressType)0U, /* FlsSector_90 */
  1913. (Fls_AddressType)0U, /* FlsSector_91 */
  1914. (Fls_AddressType)0U, /* FlsSector_92 */
  1915. (Fls_AddressType)0U, /* FlsSector_93 */
  1916. (Fls_AddressType)0U, /* FlsSector_94 */
  1917. (Fls_AddressType)0U, /* FlsSector_95 */
  1918. (Fls_AddressType)0U, /* FlsSector_96 */
  1919. (Fls_AddressType)0U, /* FlsSector_97 */
  1920. (Fls_AddressType)0U, /* FlsSector_98 */
  1921. (Fls_AddressType)0U, /* FlsSector_99 */
  1922. (Fls_AddressType)0U, /* FlsSector_100 */
  1923. (Fls_AddressType)0U, /* FlsSector_101 */
  1924. (Fls_AddressType)0U, /* FlsSector_102 */
  1925. (Fls_AddressType)0U, /* FlsSector_103 */
  1926. (Fls_AddressType)0U, /* FlsSector_104 */
  1927. (Fls_AddressType)0U, /* FlsSector_105 */
  1928. (Fls_AddressType)0U, /* FlsSector_106 */
  1929. (Fls_AddressType)0U, /* FlsSector_107 */
  1930. (Fls_AddressType)0U, /* FlsSector_108 */
  1931. (Fls_AddressType)0U, /* FlsSector_109 */
  1932. (Fls_AddressType)0U, /* FlsSector_110 */
  1933. (Fls_AddressType)0U, /* FlsSector_111 */
  1934. (Fls_AddressType)0U, /* FlsSector_112 */
  1935. (Fls_AddressType)0U, /* FlsSector_113 */
  1936. (Fls_AddressType)0U, /* FlsSector_114 */
  1937. (Fls_AddressType)0U, /* FlsSector_115 */
  1938. (Fls_AddressType)0U, /* FlsSector_116 */
  1939. (Fls_AddressType)0U, /* FlsSector_117 */
  1940. (Fls_AddressType)0U, /* FlsSector_118 */
  1941. (Fls_AddressType)0U, /* FlsSector_119 */
  1942. (Fls_AddressType)0U, /* FlsSector_120 */
  1943. (Fls_AddressType)0U, /* FlsSector_121 */
  1944. (Fls_AddressType)0U, /* FlsSector_122 */
  1945. (Fls_AddressType)0U, /* FlsSector_123 */
  1946. (Fls_AddressType)0U, /* FlsSector_124 */
  1947. (Fls_AddressType)0U, /* FlsSector_125 */
  1948. (Fls_AddressType)0U, /* FlsSector_126 */
  1949. (Fls_AddressType)0U /* FlsSector_127 */
  1950. };
  1951. /**
  1952. * @brief Structure used to set function pointers notification, working mode
  1953. */
  1954. /* Fls module initialization data (FlsConfigSet)*/
  1955. const Fls_ConfigType Fls_Config_VS_0 =
  1956. {
  1957. (Fls_AcErasePtrType)&_ERASE_FUNC_ADDRESS_, /* FlsAcErase */
  1958. (Fls_AcWritePtrType)&_WRITE_FUNC_ADDRESS_, /* FlsAcWrite */
  1959. NULL_PTR, /* FlsACCallback */
  1960. NULL_PTR, /* FlsJobEndNotification */
  1961. NULL_PTR, /* FlsJobErrorNotification */
  1962. NULL_PTR, /* FlsReadFunctionCallout */
  1963. MEMIF_MODE_SLOW, /* FlsDefaultMode */
  1964. 1048576U, /* FlsMaxReadFastMode */
  1965. 1024U, /* FlsMaxReadNormalMode */
  1966. 256U, /* FlsMaxWriteFastMode */
  1967. 8U, /* FlsMaxWriteNormalMode */
  1968. 128U, /* FlsSectorCount */
  1969. &FlsConfigSet_VS_0_aFlsSectorEndAddr, /* (*paSectorEndAddr)[] */
  1970. &FlsConfigSet_VS_0_aFlsSectorSize, /* (*paSectorSize)[] */
  1971. &FlsConfigSet_VS_0_aSectorList, /* (*pSectorList)[] */
  1972. &FlsConfigSet_VS_0_aFlsSectorFlags, /* (*paSectorFlags)[] */
  1973. &FlsConfigSet_VS_0_aFlsSectorPageSize, /* (*paSectorPageSize)[] */
  1974. &FlsConfigSet_VS_0_paHwCh, /* (*paHwCh)[] */
  1975. &FlsConfigSet_VS_0_paSectorHwAddress, /* (*paSectorHwAddress)[] */
  1976. NULL_PTR, /* FlsQspiConfig */
  1977. &FlsConfigSet_VS_0_InitCfg, /* FlsInternalConfig */
  1978. 27560U /* configCrc */
  1979. };
  1980. #define FLS_STOP_SEC_CONFIG_DATA_UNSPECIFIED
  1981. #include "Fls_MemMap.h"
  1982. #ifdef __cplusplus
  1983. }
  1984. #endif
  1985. /** @}*/