F2837xD_DefaultISR.c 57 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138
  1. //###########################################################################
  2. //
  3. // FILE: F2837xD_DefaultISR.c
  4. //
  5. // TITLE: F2837xD Device Default Interrupt Service Routines
  6. //
  7. //###########################################################################
  8. // $TI Release: F2837xD Support Library v3.05.00.00 $
  9. // $Release Date: Tue Jun 26 03:15:23 CDT 2018 $
  10. // $Copyright:
  11. // Copyright (C) 2013-2018 Texas Instruments Incorporated - http://www.ti.com/
  12. //
  13. // Redistribution and use in source and binary forms, with or without
  14. // modification, are permitted provided that the following conditions
  15. // are met:
  16. //
  17. // Redistributions of source code must retain the above copyright
  18. // notice, this list of conditions and the following disclaimer.
  19. //
  20. // Redistributions in binary form must reproduce the above copyright
  21. // notice, this list of conditions and the following disclaimer in the
  22. // documentation and/or other materials provided with the
  23. // distribution.
  24. //
  25. // Neither the name of Texas Instruments Incorporated nor the names of
  26. // its contributors may be used to endorse or promote products derived
  27. // from this software without specific prior written permission.
  28. //
  29. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  30. // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  31. // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  32. // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  33. // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  34. // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  35. // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  36. // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  37. // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38. // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  39. // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  40. // $
  41. //###########################################################################
  42. //
  43. // Included Files
  44. //
  45. #include "F2837xD_device.h"
  46. #include "F2837xD_Examples.h"
  47. //
  48. // CPU Timer 1 Interrupt
  49. //
  50. interrupt void TIMER1_ISR(void)
  51. {
  52. //
  53. // Insert ISR Code here
  54. //
  55. //
  56. // Next two lines for debug only to halt the processor here
  57. // Remove after inserting ISR Code
  58. //
  59. asm (" ESTOP0");
  60. for(;;);
  61. }
  62. //
  63. // CPU Timer 2 Interrupt
  64. //
  65. interrupt void TIMER2_ISR(void)
  66. {
  67. //
  68. // Insert ISR Code here
  69. //
  70. //
  71. // Next two lines for debug only to halt the processor here
  72. // Remove after inserting ISR Code
  73. //
  74. asm (" ESTOP0");
  75. for(;;);
  76. }
  77. //
  78. // Datalogging Interrupt
  79. //
  80. interrupt void DATALOG_ISR(void)
  81. {
  82. //
  83. // Insert ISR Code here
  84. //
  85. //
  86. // Next two lines for debug only to halt the processor here
  87. // Remove after inserting ISR Code
  88. //
  89. asm (" ESTOP0");
  90. for(;;);
  91. }
  92. //
  93. // RTOS Interrupt
  94. //
  95. interrupt void RTOS_ISR(void)
  96. {
  97. //
  98. // Insert ISR Code here
  99. //
  100. //
  101. // Next two lines for debug only to halt the processor here
  102. // Remove after inserting ISR Code
  103. //
  104. asm (" ESTOP0");
  105. for(;;);
  106. }
  107. //
  108. // Emulation Interrupt
  109. //
  110. interrupt void EMU_ISR(void)
  111. {
  112. //
  113. // Insert ISR Code here
  114. //
  115. //
  116. // Next two lines for debug only to halt the processor here
  117. // Remove after inserting ISR Code
  118. //
  119. asm (" ESTOP0");
  120. for(;;);
  121. }
  122. //
  123. // Non-Maskable Interrupt
  124. //
  125. interrupt void NMI_ISR(void)
  126. {
  127. //
  128. // Insert ISR Code here
  129. //
  130. //
  131. // Next two lines for debug only to halt the processor here
  132. // Remove after inserting ISR Code
  133. //
  134. asm (" ESTOP0");
  135. for(;;);
  136. }
  137. //
  138. // Illegal Operation Trap
  139. //
  140. interrupt void ILLEGAL_ISR(void)
  141. {
  142. //
  143. // Insert ISR Code here
  144. //
  145. //
  146. // Next two lines for debug only to halt the processor here
  147. // Remove after inserting ISR Code
  148. //
  149. asm (" ESTOP0");
  150. for(;;);
  151. }
  152. //
  153. // User Defined Trap 1
  154. //
  155. interrupt void USER1_ISR(void)
  156. {
  157. //
  158. // Insert ISR Code here
  159. //
  160. //
  161. // Next two lines for debug only to halt the processor here
  162. // Remove after inserting ISR Code
  163. //
  164. asm (" ESTOP0");
  165. for(;;);
  166. }
  167. //
  168. // User Defined Trap 2
  169. //
  170. interrupt void USER2_ISR(void)
  171. {
  172. //
  173. // Insert ISR Code here
  174. //
  175. //
  176. // Next two lines for debug only to halt the processor here
  177. // Remove after inserting ISR Code
  178. //
  179. asm (" ESTOP0");
  180. for(;;);
  181. }
  182. //
  183. // User Defined Trap 3
  184. //
  185. interrupt void USER3_ISR(void)
  186. {
  187. //
  188. // Insert ISR Code here
  189. //
  190. //
  191. // Next two lines for debug only to halt the processor here
  192. // Remove after inserting ISR Code
  193. //
  194. asm (" ESTOP0");
  195. for(;;);
  196. }
  197. //
  198. // User Defined Trap 4
  199. //
  200. interrupt void USER4_ISR(void)
  201. {
  202. //
  203. // Insert ISR Code here
  204. //
  205. //
  206. // Next two lines for debug only to halt the processor here
  207. // Remove after inserting ISR Code
  208. //
  209. asm (" ESTOP0");
  210. for(;;);
  211. }
  212. //
  213. // User Defined Trap 5
  214. //
  215. interrupt void USER5_ISR(void)
  216. {
  217. //
  218. // Insert ISR Code here
  219. //
  220. //
  221. // Next two lines for debug only to halt the processor here
  222. // Remove after inserting ISR Code
  223. //
  224. asm (" ESTOP0");
  225. for(;;);
  226. }
  227. //
  228. // User Defined Trap 6
  229. //
  230. interrupt void USER6_ISR(void)
  231. {
  232. //
  233. // Insert ISR Code here
  234. //
  235. //
  236. // Next two lines for debug only to halt the processor here
  237. // Remove after inserting ISR Code
  238. //
  239. asm (" ESTOP0");
  240. for(;;);
  241. }
  242. //
  243. // User Defined Trap 7
  244. //
  245. interrupt void USER7_ISR(void)
  246. {
  247. //
  248. // Insert ISR Code here
  249. //
  250. //
  251. // Next two lines for debug only to halt the processor here
  252. // Remove after inserting ISR Code
  253. //
  254. asm (" ESTOP0");
  255. for(;;);
  256. }
  257. //
  258. // User Defined Trap 8
  259. //
  260. interrupt void USER8_ISR(void)
  261. {
  262. //
  263. // Insert ISR Code here
  264. //
  265. //
  266. // Next two lines for debug only to halt the processor here
  267. // Remove after inserting ISR Code
  268. //
  269. asm (" ESTOP0");
  270. for(;;);
  271. }
  272. //
  273. // User Defined Trap 9
  274. //
  275. interrupt void USER9_ISR(void)
  276. {
  277. //
  278. // Insert ISR Code here
  279. //
  280. //
  281. // Next two lines for debug only to halt the processor here
  282. // Remove after inserting ISR Code
  283. //
  284. asm (" ESTOP0");
  285. for(;;);
  286. }
  287. //
  288. // User Defined Trap 10
  289. //
  290. interrupt void USER10_ISR(void)
  291. {
  292. //
  293. // Insert ISR Code here
  294. //
  295. //
  296. // Next two lines for debug only to halt the processor here
  297. // Remove after inserting ISR Code
  298. //
  299. asm (" ESTOP0");
  300. for(;;);
  301. }
  302. //
  303. // User Defined Trap 11
  304. //
  305. interrupt void USER11_ISR(void)
  306. {
  307. //
  308. // Insert ISR Code here
  309. //
  310. //
  311. // Next two lines for debug only to halt the processor here
  312. // Remove after inserting ISR Code
  313. //
  314. asm (" ESTOP0");
  315. for(;;);
  316. }
  317. //
  318. // User Defined Trap 12
  319. //
  320. interrupt void USER12_ISR(void)
  321. {
  322. //
  323. // Insert ISR Code here
  324. //
  325. //
  326. // Next two lines for debug only to halt the processor here
  327. // Remove after inserting ISR Code
  328. //
  329. asm (" ESTOP0");
  330. for(;;);
  331. }
  332. //
  333. // 1.1 - ADCA Interrupt 1
  334. //
  335. interrupt void ADCA1_ISR(void)
  336. {
  337. //
  338. // Insert ISR Code here
  339. //
  340. //
  341. // To receive more interrupts from this PIE group,
  342. // acknowledge this interrupt.
  343. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  344. //
  345. //
  346. // Next two lines for debug only to halt the processor here
  347. // Remove after inserting ISR Code
  348. //
  349. asm (" ESTOP0");
  350. for(;;);
  351. }
  352. //
  353. // 1.2 - ADCB Interrupt 1
  354. //
  355. interrupt void ADCB1_ISR(void)
  356. {
  357. //
  358. // Insert ISR Code here
  359. //
  360. //
  361. // To receive more interrupts from this PIE group,
  362. // acknowledge this interrupt.
  363. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  364. //
  365. //
  366. // Next two lines for debug only to halt the processor here
  367. // Remove after inserting ISR Code
  368. //
  369. asm (" ESTOP0");
  370. for(;;);
  371. }
  372. //
  373. // 1.3 - ADCC Interrupt 1
  374. //
  375. interrupt void ADCC1_ISR(void)
  376. {
  377. //
  378. // Insert ISR Code here
  379. //
  380. //
  381. // To receive more interrupts from this PIE group,
  382. // acknowledge this interrupt.
  383. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  384. //
  385. //
  386. // Next two lines for debug only to halt the processor here
  387. // Remove after inserting ISR Code
  388. //
  389. asm (" ESTOP0");
  390. for(;;);
  391. }
  392. //
  393. // 1.4 - XINT1 Interrupt
  394. //
  395. interrupt void XINT1_ISR(void)
  396. {
  397. //
  398. // Insert ISR Code here
  399. //
  400. //
  401. // To receive more interrupts from this PIE group,
  402. // acknowledge this interrupt.
  403. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  404. //
  405. //
  406. // Next two lines for debug only to halt the processor here
  407. // Remove after inserting ISR Code
  408. //
  409. asm (" ESTOP0");
  410. for(;;);
  411. }
  412. //
  413. // 1.5 - XINT2 Interrupt
  414. //
  415. interrupt void XINT2_ISR(void)
  416. {
  417. //
  418. // Insert ISR Code here
  419. //
  420. //
  421. // To receive more interrupts from this PIE group,
  422. // acknowledge this interrupt.
  423. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  424. //
  425. //
  426. // Next two lines for debug only to halt the processor here
  427. // Remove after inserting ISR Code
  428. //
  429. asm (" ESTOP0");
  430. for(;;);
  431. }
  432. //
  433. // 1.6 - ADCD Interrupt 1
  434. //
  435. interrupt void ADCD1_ISR(void)
  436. {
  437. //
  438. // Insert ISR Code here
  439. //
  440. //
  441. // To receive more interrupts from this PIE group,
  442. // acknowledge this interrupt.
  443. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  444. //
  445. //
  446. // Next two lines for debug only to halt the processor here
  447. // Remove after inserting ISR Code
  448. //
  449. asm (" ESTOP0");
  450. for(;;);
  451. }
  452. //
  453. // 1.7 - Timer 0 Interrupt
  454. //
  455. interrupt void TIMER0_ISR(void)
  456. {
  457. //
  458. // Insert ISR Code here
  459. //
  460. //
  461. // To receive more interrupts from this PIE group,
  462. // acknowledge this interrupt.
  463. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  464. //
  465. //
  466. // Next two lines for debug only to halt the processor here
  467. // Remove after inserting ISR Code
  468. //
  469. asm (" ESTOP0");
  470. for(;;);
  471. }
  472. //
  473. // 1.8 - Standby and Halt Wakeup Interrupt
  474. //
  475. interrupt void WAKE_ISR(void)
  476. {
  477. //
  478. // Insert ISR Code here
  479. //
  480. //
  481. // To receive more interrupts from this PIE group,
  482. // acknowledge this interrupt.
  483. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  484. //
  485. //
  486. // Next two lines for debug only to halt the processor here
  487. // Remove after inserting ISR Code
  488. //
  489. asm (" ESTOP0");
  490. for(;;);
  491. }
  492. //
  493. // 2.1 - ePWM1 Trip Zone Interrupt
  494. //
  495. interrupt void EPWM1_TZ_ISR(void)
  496. {
  497. //
  498. // Insert ISR Code here
  499. //
  500. //
  501. // To receive more interrupts from this PIE group,
  502. // acknowledge this interrupt.
  503. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  504. //
  505. //
  506. // Next two lines for debug only to halt the processor here
  507. // Remove after inserting ISR Code
  508. //
  509. asm (" ESTOP0");
  510. for(;;);
  511. }
  512. //
  513. // 2.2 - ePWM2 Trip Zone Interrupt
  514. //
  515. interrupt void EPWM2_TZ_ISR(void)
  516. {
  517. //
  518. // Insert ISR Code here
  519. //
  520. //
  521. // To receive more interrupts from this PIE group,
  522. // acknowledge this interrupt.
  523. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  524. //
  525. //
  526. // Next two lines for debug only to halt the processor here
  527. // Remove after inserting ISR Code
  528. //
  529. asm (" ESTOP0");
  530. for(;;);
  531. }
  532. //
  533. // 2.3 - ePWM3 Trip Zone Interrupt
  534. //
  535. interrupt void EPWM3_TZ_ISR(void)
  536. {
  537. //
  538. // Insert ISR Code here
  539. //
  540. //
  541. // To receive more interrupts from this PIE group,
  542. // acknowledge this interrupt.
  543. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  544. //
  545. //
  546. // Next two lines for debug only to halt the processor here
  547. // Remove after inserting ISR Code
  548. //
  549. asm (" ESTOP0");
  550. for(;;);
  551. }
  552. //
  553. // 2.4 - ePWM4 Trip Zone Interrupt
  554. //
  555. interrupt void EPWM4_TZ_ISR(void)
  556. {
  557. //
  558. // Insert ISR Code here
  559. //
  560. //
  561. // To receive more interrupts from this PIE group,
  562. // acknowledge this interrupt.
  563. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  564. //
  565. //
  566. // Next two lines for debug only to halt the processor here
  567. // Remove after inserting ISR Code
  568. //
  569. asm (" ESTOP0");
  570. for(;;);
  571. }
  572. //
  573. // 2.5 - ePWM5 Trip Zone Interrupt
  574. //
  575. interrupt void EPWM5_TZ_ISR(void)
  576. {
  577. //
  578. // Insert ISR Code here
  579. //
  580. //
  581. // To receive more interrupts from this PIE group,
  582. // acknowledge this interrupt.
  583. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  584. //
  585. //
  586. // Next two lines for debug only to halt the processor here
  587. // Remove after inserting ISR Code
  588. //
  589. asm (" ESTOP0");
  590. for(;;);
  591. }
  592. //
  593. // 2.6 - ePWM6 Trip Zone Interrupt
  594. //
  595. interrupt void EPWM6_TZ_ISR(void)
  596. {
  597. //
  598. // Insert ISR Code here
  599. //
  600. //
  601. // To receive more interrupts from this PIE group,
  602. // acknowledge this interrupt.
  603. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  604. //
  605. //
  606. // Next two lines for debug only to halt the processor here
  607. // Remove after inserting ISR Code
  608. //
  609. asm (" ESTOP0");
  610. for(;;);
  611. }
  612. //
  613. // 2.7 - ePWM7 Trip Zone Interrupt
  614. //
  615. interrupt void EPWM7_TZ_ISR(void)
  616. {
  617. //
  618. // Insert ISR Code here
  619. //
  620. //
  621. // To receive more interrupts from this PIE group,
  622. // acknowledge this interrupt.
  623. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  624. //
  625. //
  626. // Next two lines for debug only to halt the processor here
  627. // Remove after inserting ISR Code
  628. //
  629. asm (" ESTOP0");
  630. for(;;);
  631. }
  632. //
  633. // 2.8 - ePWM8 Trip Zone Interrupt
  634. //
  635. interrupt void EPWM8_TZ_ISR(void)
  636. {
  637. //
  638. // Insert ISR Code here
  639. //
  640. //
  641. // To receive more interrupts from this PIE group,
  642. // acknowledge this interrupt.
  643. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  644. //
  645. //
  646. // Next two lines for debug only to halt the processor here
  647. // Remove after inserting ISR Code
  648. //
  649. asm (" ESTOP0");
  650. for(;;);
  651. }
  652. //
  653. // 3.1 - ePWM1 Interrupt
  654. //
  655. interrupt void EPWM1_ISR(void)
  656. {
  657. //
  658. // Insert ISR Code here
  659. //
  660. //
  661. // To receive more interrupts from this PIE group,
  662. // acknowledge this interrupt.
  663. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  664. //
  665. //
  666. // Next two lines for debug only to halt the processor here
  667. // Remove after inserting ISR Code
  668. //
  669. asm (" ESTOP0");
  670. for(;;);
  671. }
  672. //
  673. // 3.2 - ePWM2 Interrupt
  674. //
  675. interrupt void EPWM2_ISR(void)
  676. {
  677. //
  678. // Insert ISR Code here
  679. //
  680. //
  681. // To receive more interrupts from this PIE group,
  682. // acknowledge this interrupt.
  683. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  684. //
  685. //
  686. // Next two lines for debug only to halt the processor here
  687. // Remove after inserting ISR Code
  688. //
  689. asm (" ESTOP0");
  690. for(;;);
  691. }
  692. //
  693. // 3.3 - ePWM3 Interrupt
  694. //
  695. interrupt void EPWM3_ISR(void)
  696. {
  697. //
  698. // Insert ISR Code here
  699. //
  700. //
  701. // To receive more interrupts from this PIE group,
  702. // acknowledge this interrupt.
  703. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  704. //
  705. //
  706. // Next two lines for debug only to halt the processor here
  707. // Remove after inserting ISR Code
  708. //
  709. asm (" ESTOP0");
  710. for(;;);
  711. }
  712. //
  713. // 3.4 - ePWM4 Interrupt
  714. //
  715. interrupt void EPWM4_ISR(void)
  716. {
  717. //
  718. // Insert ISR Code here
  719. //
  720. //
  721. // To receive more interrupts from this PIE group,
  722. // acknowledge this interrupt.
  723. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  724. //
  725. //
  726. // Next two lines for debug only to halt the processor here
  727. // Remove after inserting ISR Code
  728. //
  729. asm (" ESTOP0");
  730. for(;;);
  731. }
  732. //
  733. // 3.5 - ePWM5 Interrupt
  734. //
  735. interrupt void EPWM5_ISR(void)
  736. {
  737. //
  738. // Insert ISR Code here
  739. //
  740. //
  741. // To receive more interrupts from this PIE group,
  742. // acknowledge this interrupt.
  743. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  744. //
  745. //
  746. // Next two lines for debug only to halt the processor here
  747. // Remove after inserting ISR Code
  748. //
  749. asm (" ESTOP0");
  750. for(;;);
  751. }
  752. //
  753. // 3.6 - ePWM6 Interrupt
  754. //
  755. interrupt void EPWM6_ISR(void)
  756. {
  757. //
  758. // Insert ISR Code here
  759. //
  760. //
  761. // To receive more interrupts from this PIE group,
  762. // acknowledge this interrupt.
  763. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  764. //
  765. //
  766. // Next two lines for debug only to halt the processor here
  767. // Remove after inserting ISR Code
  768. //
  769. asm (" ESTOP0");
  770. for(;;);
  771. }
  772. //
  773. // 3.7 - ePWM7 Interrupt
  774. //
  775. interrupt void EPWM7_ISR(void)
  776. {
  777. //
  778. // Insert ISR Code here
  779. //
  780. //
  781. // To receive more interrupts from this PIE group,
  782. // acknowledge this interrupt.
  783. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  784. //
  785. //
  786. // Next two lines for debug only to halt the processor here
  787. // Remove after inserting ISR Code
  788. //
  789. asm (" ESTOP0");
  790. for(;;);
  791. }
  792. //
  793. // 3.8 - ePWM8 Interrupt
  794. //
  795. interrupt void EPWM8_ISR(void)
  796. {
  797. //
  798. // Insert ISR Code here
  799. //
  800. //
  801. // To receive more interrupts from this PIE group,
  802. // acknowledge this interrupt.
  803. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  804. //
  805. //
  806. // Next two lines for debug only to halt the processor here
  807. // Remove after inserting ISR Code
  808. //
  809. asm (" ESTOP0");
  810. for(;;);
  811. }
  812. //
  813. // 4.1 - eCAP1 Interrupt
  814. //
  815. interrupt void ECAP1_ISR(void)
  816. {
  817. //
  818. // Insert ISR Code here
  819. //
  820. //
  821. // To receive more interrupts from this PIE group,
  822. // acknowledge this interrupt.
  823. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP4;
  824. //
  825. //
  826. // Next two lines for debug only to halt the processor here
  827. // Remove after inserting ISR Code
  828. //
  829. asm (" ESTOP0");
  830. for(;;);
  831. }
  832. //
  833. // 4.2 - eCAP2 Interrupt
  834. //
  835. interrupt void ECAP2_ISR(void)
  836. {
  837. //
  838. // Insert ISR Code here
  839. //
  840. //
  841. // To receive more interrupts from this PIE group,
  842. // acknowledge this interrupt.
  843. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP4;
  844. //
  845. //
  846. // Next two lines for debug only to halt the processor here
  847. // Remove after inserting ISR Code
  848. //
  849. asm (" ESTOP0");
  850. for(;;);
  851. }
  852. //
  853. // 4.3 - eCAP3 Interrupt
  854. //
  855. interrupt void ECAP3_ISR(void)
  856. {
  857. //
  858. // Insert ISR Code here
  859. //
  860. //
  861. // To receive more interrupts from this PIE group,
  862. // acknowledge this interrupt.
  863. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP4;
  864. //
  865. //
  866. // Next two lines for debug only to halt the processor here
  867. // Remove after inserting ISR Code
  868. //
  869. asm (" ESTOP0");
  870. for(;;);
  871. }
  872. //
  873. // 4.4 - eCAP4 Interrupt
  874. //
  875. interrupt void ECAP4_ISR(void)
  876. {
  877. //
  878. // Insert ISR Code here
  879. //
  880. //
  881. // To receive more interrupts from this PIE group,
  882. // acknowledge this interrupt.
  883. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP4;
  884. //
  885. //
  886. // Next two lines for debug only to halt the processor here
  887. // Remove after inserting ISR Code
  888. //
  889. asm (" ESTOP0");
  890. for(;;);
  891. }
  892. //
  893. // 4.5 - eCAP5 Interrupt
  894. //
  895. interrupt void ECAP5_ISR(void)
  896. {
  897. //
  898. // Insert ISR Code here
  899. //
  900. //
  901. // To receive more interrupts from this PIE group,
  902. // acknowledge this interrupt.
  903. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP4;
  904. //
  905. //
  906. // Next two lines for debug only to halt the processor here
  907. // Remove after inserting ISR Code
  908. //
  909. asm (" ESTOP0");
  910. for(;;);
  911. }
  912. //
  913. // 4.6 - eCAP6 Interrupt
  914. //
  915. interrupt void ECAP6_ISR(void)
  916. {
  917. //
  918. // Insert ISR Code here
  919. //
  920. //
  921. // To receive more interrupts from this PIE group,
  922. // acknowledge this interrupt.
  923. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP4;
  924. //
  925. //
  926. // Next two lines for debug only to halt the processor here
  927. // Remove after inserting ISR Code
  928. //
  929. asm (" ESTOP0");
  930. for(;;);
  931. }
  932. //
  933. // 5.1 - eQEP1 Interrupt
  934. //
  935. interrupt void EQEP1_ISR(void)
  936. {
  937. //
  938. // Insert ISR Code here
  939. //
  940. //
  941. // To receive more interrupts from this PIE group,
  942. // acknowledge this interrupt.
  943. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP5;
  944. //
  945. //
  946. // Next two lines for debug only to halt the processor here
  947. // Remove after inserting ISR Code
  948. //
  949. asm (" ESTOP0");
  950. for(;;);
  951. }
  952. //
  953. // 5.2 - eQEP2 Interrupt
  954. //
  955. interrupt void EQEP2_ISR(void)
  956. {
  957. //
  958. // Insert ISR Code here
  959. //
  960. //
  961. // To receive more interrupts from this PIE group,
  962. // acknowledge this interrupt.
  963. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP5;
  964. //
  965. //
  966. // Next two lines for debug only to halt the processor here
  967. // Remove after inserting ISR Code
  968. //
  969. asm (" ESTOP0");
  970. for(;;);
  971. }
  972. //
  973. // 5.3 - eQEP3 Interrupt
  974. //
  975. interrupt void EQEP3_ISR(void)
  976. {
  977. //
  978. // Insert ISR Code here
  979. //
  980. //
  981. // To receive more interrupts from this PIE group,
  982. // acknowledge this interrupt.
  983. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP5;
  984. //
  985. //
  986. // Next two lines for debug only to halt the processor here
  987. // Remove after inserting ISR Code
  988. //
  989. asm (" ESTOP0");
  990. for(;;);
  991. }
  992. //
  993. // 6.1 - SPIA Receive Interrupt
  994. //
  995. interrupt void SPIA_RX_ISR(void)
  996. {
  997. //
  998. // Insert ISR Code here
  999. //
  1000. //
  1001. // To receive more interrupts from this PIE group,
  1002. // acknowledge this interrupt.
  1003. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  1004. //
  1005. //
  1006. // Next two lines for debug only to halt the processor here
  1007. // Remove after inserting ISR Code
  1008. //
  1009. asm (" ESTOP0");
  1010. for(;;);
  1011. }
  1012. //
  1013. // 6.2 - SPIA Transmit Interrupt
  1014. //
  1015. interrupt void SPIA_TX_ISR(void)
  1016. {
  1017. //
  1018. // Insert ISR Code here
  1019. //
  1020. //
  1021. // To receive more interrupts from this PIE group,
  1022. // acknowledge this interrupt.
  1023. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  1024. //
  1025. //
  1026. // Next two lines for debug only to halt the processor here
  1027. // Remove after inserting ISR Code
  1028. //
  1029. asm (" ESTOP0");
  1030. for(;;);
  1031. }
  1032. //
  1033. // 6.3 - SPIB Receive Interrupt
  1034. //
  1035. interrupt void SPIB_RX_ISR(void)
  1036. {
  1037. //
  1038. // Insert ISR Code here
  1039. //
  1040. //
  1041. // To receive more interrupts from this PIE group,
  1042. // acknowledge this interrupt.
  1043. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  1044. //
  1045. //
  1046. // Next two lines for debug only to halt the processor here
  1047. // Remove after inserting ISR Code
  1048. //
  1049. asm (" ESTOP0");
  1050. for(;;);
  1051. }
  1052. //
  1053. // 6.4 - SPIB Transmit Interrupt
  1054. //
  1055. interrupt void SPIB_TX_ISR(void)
  1056. {
  1057. //
  1058. // Insert ISR Code here
  1059. //
  1060. //
  1061. // To receive more interrupts from this PIE group,
  1062. // acknowledge this interrupt.
  1063. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  1064. //
  1065. //
  1066. // Next two lines for debug only to halt the processor here
  1067. // Remove after inserting ISR Code
  1068. //
  1069. asm (" ESTOP0");
  1070. for(;;);
  1071. }
  1072. //
  1073. // 6.5 - McBSPA Receive Interrupt
  1074. //
  1075. interrupt void MCBSPA_RX_ISR(void)
  1076. {
  1077. //
  1078. // Insert ISR Code here
  1079. //
  1080. //
  1081. // To receive more interrupts from this PIE group,
  1082. // acknowledge this interrupt.
  1083. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  1084. //
  1085. //
  1086. // Next two lines for debug only to halt the processor here
  1087. // Remove after inserting ISR Code
  1088. //
  1089. asm (" ESTOP0");
  1090. for(;;);
  1091. }
  1092. //
  1093. // 6.6 - McBSPA Transmit Interrupt
  1094. //
  1095. interrupt void MCBSPA_TX_ISR(void)
  1096. {
  1097. //
  1098. // Insert ISR Code here
  1099. //
  1100. //
  1101. // To receive more interrupts from this PIE group,
  1102. // acknowledge this interrupt.
  1103. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  1104. //
  1105. //
  1106. // Next two lines for debug only to halt the processor here
  1107. // Remove after inserting ISR Code
  1108. //
  1109. asm (" ESTOP0");
  1110. for(;;);
  1111. }
  1112. //
  1113. // 6.7 - McBSPB Receive Interrupt
  1114. //
  1115. interrupt void MCBSPB_RX_ISR(void)
  1116. {
  1117. //
  1118. // Insert ISR Code here
  1119. //
  1120. //
  1121. // To receive more interrupts from this PIE group,
  1122. // acknowledge this interrupt.
  1123. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  1124. //
  1125. //
  1126. // Next two lines for debug only to halt the processor here
  1127. // Remove after inserting ISR Code
  1128. //
  1129. asm (" ESTOP0");
  1130. for(;;);
  1131. }
  1132. //
  1133. // 6.8 - McBSPB Transmit Interrupt
  1134. //
  1135. interrupt void MCBSPB_TX_ISR(void)
  1136. {
  1137. //
  1138. // Insert ISR Code here
  1139. //
  1140. //
  1141. // To receive more interrupts from this PIE group,
  1142. // acknowledge this interrupt.
  1143. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  1144. //
  1145. //
  1146. // Next two lines for debug only to halt the processor here
  1147. // Remove after inserting ISR Code
  1148. //
  1149. asm (" ESTOP0");
  1150. for(;;);
  1151. }
  1152. //
  1153. // 7.1 - DMA Channel 1 Interrupt
  1154. //
  1155. interrupt void DMA_CH1_ISR(void)
  1156. {
  1157. //
  1158. // Insert ISR Code here
  1159. //
  1160. //
  1161. // To receive more interrupts from this PIE group,
  1162. // acknowledge this interrupt.
  1163. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP7;
  1164. //
  1165. //
  1166. // Next two lines for debug only to halt the processor here
  1167. // Remove after inserting ISR Code
  1168. //
  1169. asm (" ESTOP0");
  1170. for(;;);
  1171. }
  1172. //
  1173. // 7.2 - DMA Channel 2 Interrupt
  1174. //
  1175. interrupt void DMA_CH2_ISR(void)
  1176. {
  1177. //
  1178. // Insert ISR Code here
  1179. //
  1180. //
  1181. // To receive more interrupts from this PIE group,
  1182. // acknowledge this interrupt.
  1183. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP7;
  1184. //
  1185. //
  1186. // Next two lines for debug only to halt the processor here
  1187. // Remove after inserting ISR Code
  1188. //
  1189. asm (" ESTOP0");
  1190. for(;;);
  1191. }
  1192. //
  1193. // 7.3 - DMA Channel 3 Interrupt
  1194. //
  1195. interrupt void DMA_CH3_ISR(void)
  1196. {
  1197. //
  1198. // Insert ISR Code here
  1199. //
  1200. //
  1201. // To receive more interrupts from this PIE group,
  1202. // acknowledge this interrupt.
  1203. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP7;
  1204. //
  1205. //
  1206. // Next two lines for debug only to halt the processor here
  1207. // Remove after inserting ISR Code
  1208. //
  1209. asm (" ESTOP0");
  1210. for(;;);
  1211. }
  1212. //
  1213. // 7.4 - DMA Channel 4 Interrupt
  1214. //
  1215. interrupt void DMA_CH4_ISR(void)
  1216. {
  1217. //
  1218. // Insert ISR Code here
  1219. //
  1220. //
  1221. // To receive more interrupts from this PIE group,
  1222. // acknowledge this interrupt.
  1223. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP7;
  1224. //
  1225. //
  1226. // Next two lines for debug only to halt the processor here
  1227. // Remove after inserting ISR Code
  1228. //
  1229. asm (" ESTOP0");
  1230. for(;;);
  1231. }
  1232. //
  1233. // 7.5 - DMA Channel 5 Interrupt
  1234. //
  1235. interrupt void DMA_CH5_ISR(void)
  1236. {
  1237. //
  1238. // Insert ISR Code here
  1239. //
  1240. //
  1241. // To receive more interrupts from this PIE group,
  1242. // acknowledge this interrupt.
  1243. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP7;
  1244. //
  1245. //
  1246. // Next two lines for debug only to halt the processor here
  1247. // Remove after inserting ISR Code
  1248. //
  1249. asm (" ESTOP0");
  1250. for(;;);
  1251. }
  1252. //
  1253. // 7.6 - DMA Channel 6 Interrupt
  1254. //
  1255. interrupt void DMA_CH6_ISR(void)
  1256. {
  1257. //
  1258. // Insert ISR Code here
  1259. //
  1260. //
  1261. // To receive more interrupts from this PIE group,
  1262. // acknowledge this interrupt.
  1263. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP7;
  1264. //
  1265. //
  1266. // Next two lines for debug only to halt the processor here
  1267. // Remove after inserting ISR Code
  1268. //
  1269. asm (" ESTOP0");
  1270. for(;;);
  1271. }
  1272. //
  1273. // 8.1 - I2CA Interrupt 1
  1274. //
  1275. interrupt void I2CA_ISR(void)
  1276. {
  1277. //
  1278. // Insert ISR Code here
  1279. //
  1280. //
  1281. // To receive more interrupts from this PIE group,
  1282. // acknowledge this interrupt.
  1283. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  1284. //
  1285. //
  1286. // Next two lines for debug only to halt the processor here
  1287. // Remove after inserting ISR Code
  1288. //
  1289. asm (" ESTOP0");
  1290. for(;;);
  1291. }
  1292. //
  1293. // 8.2 - I2CA Interrupt 2
  1294. //
  1295. interrupt void I2CA_FIFO_ISR(void)
  1296. {
  1297. //
  1298. // Insert ISR Code here
  1299. //
  1300. //
  1301. // To receive more interrupts from this PIE group,
  1302. // acknowledge this interrupt.
  1303. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  1304. //
  1305. //
  1306. // Next two lines for debug only to halt the processor here
  1307. // Remove after inserting ISR Code
  1308. //
  1309. asm (" ESTOP0");
  1310. for(;;);
  1311. }
  1312. //
  1313. // 8.3 - I2CB Interrupt 1
  1314. //
  1315. interrupt void I2CB_ISR(void)
  1316. {
  1317. //
  1318. // Insert ISR Code here
  1319. //
  1320. //
  1321. // To receive more interrupts from this PIE group,
  1322. // acknowledge this interrupt.
  1323. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  1324. //
  1325. //
  1326. // Next two lines for debug only to halt the processor here
  1327. // Remove after inserting ISR Code
  1328. //
  1329. asm (" ESTOP0");
  1330. for(;;);
  1331. }
  1332. //
  1333. // 8.4 - I2CB Interrupt 2
  1334. //
  1335. interrupt void I2CB_FIFO_ISR(void)
  1336. {
  1337. //
  1338. // Insert ISR Code here
  1339. //
  1340. //
  1341. // To receive more interrupts from this PIE group,
  1342. // acknowledge this interrupt.
  1343. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  1344. //
  1345. //
  1346. // Next two lines for debug only to halt the processor here
  1347. // Remove after inserting ISR Code
  1348. //
  1349. asm (" ESTOP0");
  1350. for(;;);
  1351. }
  1352. //
  1353. // 8.5 - SCIC Receive Interrupt
  1354. //
  1355. interrupt void SCIC_RX_ISR(void)
  1356. {
  1357. //
  1358. // Insert ISR Code here
  1359. //
  1360. //
  1361. // To receive more interrupts from this PIE group,
  1362. // acknowledge this interrupt.
  1363. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  1364. //
  1365. //
  1366. // Next two lines for debug only to halt the processor here
  1367. // Remove after inserting ISR Code
  1368. //
  1369. asm (" ESTOP0");
  1370. for(;;);
  1371. }
  1372. //
  1373. // 8.6 - SCIC Transmit Interrupt
  1374. //
  1375. interrupt void SCIC_TX_ISR(void)
  1376. {
  1377. //
  1378. // Insert ISR Code here
  1379. //
  1380. //
  1381. // To receive more interrupts from this PIE group,
  1382. // acknowledge this interrupt.
  1383. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  1384. //
  1385. //
  1386. // Next two lines for debug only to halt the processor here
  1387. // Remove after inserting ISR Code
  1388. //
  1389. asm (" ESTOP0");
  1390. for(;;);
  1391. }
  1392. //
  1393. // 8.7 - SCID Receive Interrupt
  1394. //
  1395. interrupt void SCID_RX_ISR(void)
  1396. {
  1397. //
  1398. // Insert ISR Code here
  1399. //
  1400. //
  1401. // To receive more interrupts from this PIE group,
  1402. // acknowledge this interrupt.
  1403. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  1404. //
  1405. //
  1406. // Next two lines for debug only to halt the processor here
  1407. // Remove after inserting ISR Code
  1408. //
  1409. asm (" ESTOP0");
  1410. for(;;);
  1411. }
  1412. //
  1413. // 8.8 - SCID Transmit Interrupt
  1414. //
  1415. interrupt void SCID_TX_ISR(void)
  1416. {
  1417. //
  1418. // Insert ISR Code here
  1419. //
  1420. //
  1421. // To receive more interrupts from this PIE group,
  1422. // acknowledge this interrupt.
  1423. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  1424. //
  1425. //
  1426. // Next two lines for debug only to halt the processor here
  1427. // Remove after inserting ISR Code
  1428. //
  1429. asm (" ESTOP0");
  1430. for(;;);
  1431. }
  1432. //
  1433. // 9.1 - SCIA Receive Interrupt
  1434. //
  1435. interrupt void SCIA_RX_ISR(void)
  1436. {
  1437. //
  1438. // Insert ISR Code here
  1439. //
  1440. //
  1441. // To receive more interrupts from this PIE group,
  1442. // acknowledge this interrupt.
  1443. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  1444. //
  1445. //
  1446. // Next two lines for debug only to halt the processor here
  1447. // Remove after inserting ISR Code
  1448. //
  1449. asm (" ESTOP0");
  1450. for(;;);
  1451. }
  1452. //
  1453. // 9.2 - SCIA Transmit Interrupt
  1454. //
  1455. interrupt void SCIA_TX_ISR(void)
  1456. {
  1457. //
  1458. // Insert ISR Code here
  1459. //
  1460. //
  1461. // To receive more interrupts from this PIE group,
  1462. // acknowledge this interrupt.
  1463. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  1464. //
  1465. //
  1466. // Next two lines for debug only to halt the processor here
  1467. // Remove after inserting ISR Code
  1468. //
  1469. asm (" ESTOP0");
  1470. for(;;);
  1471. }
  1472. //
  1473. // 9.3 - SCIB Receive Interrupt
  1474. //
  1475. interrupt void SCIB_RX_ISR(void)
  1476. {
  1477. //
  1478. // Insert ISR Code here
  1479. //
  1480. //
  1481. // To receive more interrupts from this PIE group,
  1482. // acknowledge this interrupt.
  1483. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  1484. //
  1485. //
  1486. // Next two lines for debug only to halt the processor here
  1487. // Remove after inserting ISR Code
  1488. //
  1489. asm (" ESTOP0");
  1490. for(;;);
  1491. }
  1492. //
  1493. // 9.4 - SCIB Transmit Interrupt
  1494. //
  1495. interrupt void SCIB_TX_ISR(void)
  1496. {
  1497. //
  1498. // Insert ISR Code here
  1499. //
  1500. //
  1501. // To receive more interrupts from this PIE group,
  1502. // acknowledge this interrupt.
  1503. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  1504. //
  1505. //
  1506. // Next two lines for debug only to halt the processor here
  1507. // Remove after inserting ISR Code
  1508. //
  1509. asm (" ESTOP0");
  1510. for(;;);
  1511. }
  1512. //
  1513. // 9.5 - CANA Interrupt 0
  1514. //
  1515. interrupt void CANA0_ISR(void)
  1516. {
  1517. //
  1518. // Insert ISR Code here
  1519. //
  1520. //
  1521. // To receive more interrupts from this PIE group,
  1522. // acknowledge this interrupt.
  1523. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  1524. //
  1525. //
  1526. // Next two lines for debug only to halt the processor here
  1527. // Remove after inserting ISR Code
  1528. //
  1529. asm (" ESTOP0");
  1530. for(;;);
  1531. }
  1532. //
  1533. // 9.6 - CANA Interrupt 1
  1534. //
  1535. interrupt void CANA1_ISR(void)
  1536. {
  1537. //
  1538. // Insert ISR Code here
  1539. //
  1540. //
  1541. // To receive more interrupts from this PIE group,
  1542. // acknowledge this interrupt.
  1543. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  1544. //
  1545. //
  1546. // Next two lines for debug only to halt the processor here
  1547. // Remove after inserting ISR Code
  1548. //
  1549. asm (" ESTOP0");
  1550. for(;;);
  1551. }
  1552. //
  1553. // 9.7 - CANB Interrupt 0
  1554. //
  1555. interrupt void CANB0_ISR(void)
  1556. {
  1557. //
  1558. // Insert ISR Code here
  1559. //
  1560. //
  1561. // To receive more interrupts from this PIE group,
  1562. // acknowledge this interrupt.
  1563. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  1564. //
  1565. //
  1566. // Next two lines for debug only to halt the processor here
  1567. // Remove after inserting ISR Code
  1568. //
  1569. asm (" ESTOP0");
  1570. for(;;);
  1571. }
  1572. //
  1573. // 9.8 - CANB Interrupt 1
  1574. //
  1575. interrupt void CANB1_ISR(void)
  1576. {
  1577. //
  1578. // Insert ISR Code here
  1579. //
  1580. //
  1581. // To receive more interrupts from this PIE group,
  1582. // acknowledge this interrupt.
  1583. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  1584. //
  1585. //
  1586. // Next two lines for debug only to halt the processor here
  1587. // Remove after inserting ISR Code
  1588. //
  1589. asm (" ESTOP0");
  1590. for(;;);
  1591. }
  1592. //
  1593. // 10.1 - ADCA Event Interrupt
  1594. //
  1595. interrupt void ADCA_EVT_ISR(void)
  1596. {
  1597. //
  1598. // Insert ISR Code here
  1599. //
  1600. //
  1601. // To receive more interrupts from this PIE group,
  1602. // acknowledge this interrupt.
  1603. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  1604. //
  1605. //
  1606. // Next two lines for debug only to halt the processor here
  1607. // Remove after inserting ISR Code
  1608. //
  1609. asm (" ESTOP0");
  1610. for(;;);
  1611. }
  1612. //
  1613. // 10.2 - ADCA Interrupt 2
  1614. //
  1615. interrupt void ADCA2_ISR(void)
  1616. {
  1617. //
  1618. // Insert ISR Code here
  1619. //
  1620. //
  1621. // To receive more interrupts from this PIE group,
  1622. // acknowledge this interrupt.
  1623. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  1624. //
  1625. //
  1626. // Next two lines for debug only to halt the processor here
  1627. // Remove after inserting ISR Code
  1628. //
  1629. asm (" ESTOP0");
  1630. for(;;);
  1631. }
  1632. //
  1633. // 10.3 - ADCA Interrupt 3
  1634. //
  1635. interrupt void ADCA3_ISR(void)
  1636. {
  1637. //
  1638. // Insert ISR Code here
  1639. //
  1640. //
  1641. // To receive more interrupts from this PIE group,
  1642. // acknowledge this interrupt.
  1643. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  1644. //
  1645. //
  1646. // Next two lines for debug only to halt the processor here
  1647. // Remove after inserting ISR Code
  1648. //
  1649. asm (" ESTOP0");
  1650. for(;;);
  1651. }
  1652. //
  1653. // 10.4 - ADCA Interrupt 4
  1654. //
  1655. interrupt void ADCA4_ISR(void)
  1656. {
  1657. //
  1658. // Insert ISR Code here
  1659. //
  1660. //
  1661. // To receive more interrupts from this PIE group,
  1662. // acknowledge this interrupt.
  1663. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  1664. //
  1665. //
  1666. // Next two lines for debug only to halt the processor here
  1667. // Remove after inserting ISR Code
  1668. //
  1669. asm (" ESTOP0");
  1670. for(;;);
  1671. }
  1672. //
  1673. // 10.5 - ADCB Event Interrupt
  1674. //
  1675. interrupt void ADCB_EVT_ISR(void)
  1676. {
  1677. //
  1678. // Insert ISR Code here
  1679. //
  1680. //
  1681. // To receive more interrupts from this PIE group,
  1682. // acknowledge this interrupt.
  1683. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  1684. //
  1685. //
  1686. // Next two lines for debug only to halt the processor here
  1687. // Remove after inserting ISR Code
  1688. //
  1689. asm (" ESTOP0");
  1690. for(;;);
  1691. }
  1692. //
  1693. // 10.6 - ADCB Interrupt 2
  1694. //
  1695. interrupt void ADCB2_ISR(void)
  1696. {
  1697. //
  1698. // Insert ISR Code here
  1699. //
  1700. //
  1701. // To receive more interrupts from this PIE group,
  1702. // acknowledge this interrupt.
  1703. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  1704. //
  1705. //
  1706. // Next two lines for debug only to halt the processor here
  1707. // Remove after inserting ISR Code
  1708. //
  1709. asm (" ESTOP0");
  1710. for(;;);
  1711. }
  1712. //
  1713. // 10.7 - ADCB Interrupt 3
  1714. //
  1715. interrupt void ADCB3_ISR(void)
  1716. {
  1717. //
  1718. // Insert ISR Code here
  1719. //
  1720. //
  1721. // To receive more interrupts from this PIE group,
  1722. // acknowledge this interrupt.
  1723. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  1724. //
  1725. //
  1726. // Next two lines for debug only to halt the processor here
  1727. // Remove after inserting ISR Code
  1728. //
  1729. asm (" ESTOP0");
  1730. for(;;);
  1731. }
  1732. //
  1733. // 10.8 - ADCB Interrupt 4
  1734. //
  1735. interrupt void ADCB4_ISR(void)
  1736. {
  1737. //
  1738. // Insert ISR Code here
  1739. //
  1740. //
  1741. // To receive more interrupts from this PIE group,
  1742. // acknowledge this interrupt.
  1743. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  1744. //
  1745. //
  1746. // Next two lines for debug only to halt the processor here
  1747. // Remove after inserting ISR Code
  1748. //
  1749. asm (" ESTOP0");
  1750. for(;;);
  1751. }
  1752. //
  1753. // 11.1 - CLA1 Interrupt 1
  1754. //
  1755. interrupt void CLA1_1_ISR(void)
  1756. {
  1757. //
  1758. // Insert ISR Code here
  1759. //
  1760. //
  1761. // To receive more interrupts from this PIE group,
  1762. // acknowledge this interrupt.
  1763. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP11;
  1764. //
  1765. //
  1766. // Next two lines for debug only to halt the processor here
  1767. // Remove after inserting ISR Code
  1768. //
  1769. asm (" ESTOP0");
  1770. for(;;);
  1771. }
  1772. //
  1773. // 11.2 - CLA1 Interrupt 2
  1774. //
  1775. interrupt void CLA1_2_ISR(void)
  1776. {
  1777. //
  1778. // Insert ISR Code here
  1779. //
  1780. //
  1781. // To receive more interrupts from this PIE group,
  1782. // acknowledge this interrupt.
  1783. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP11;
  1784. //
  1785. //
  1786. // Next two lines for debug only to halt the processor here
  1787. // Remove after inserting ISR Code
  1788. //
  1789. asm (" ESTOP0");
  1790. for(;;);
  1791. }
  1792. //
  1793. // 11.3 - CLA1 Interrupt 3
  1794. //
  1795. interrupt void CLA1_3_ISR(void)
  1796. {
  1797. //
  1798. // Insert ISR Code here
  1799. //
  1800. //
  1801. // To receive more interrupts from this PIE group,
  1802. // acknowledge this interrupt.
  1803. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP11;
  1804. //
  1805. //
  1806. // Next two lines for debug only to halt the processor here
  1807. // Remove after inserting ISR Code
  1808. //
  1809. asm (" ESTOP0");
  1810. for(;;);
  1811. }
  1812. //
  1813. // 11.4 - CLA1 Interrupt 4
  1814. //
  1815. interrupt void CLA1_4_ISR(void)
  1816. {
  1817. //
  1818. // Insert ISR Code here
  1819. //
  1820. //
  1821. // To receive more interrupts from this PIE group,
  1822. // acknowledge this interrupt.
  1823. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP11;
  1824. //
  1825. //
  1826. // Next two lines for debug only to halt the processor here
  1827. // Remove after inserting ISR Code
  1828. //
  1829. asm (" ESTOP0");
  1830. for(;;);
  1831. }
  1832. //
  1833. // 11.5 - CLA1 Interrupt 5
  1834. //
  1835. interrupt void CLA1_5_ISR(void)
  1836. {
  1837. //
  1838. // Insert ISR Code here
  1839. //
  1840. //
  1841. // To receive more interrupts from this PIE group,
  1842. // acknowledge this interrupt.
  1843. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP11;
  1844. //
  1845. //
  1846. // Next two lines for debug only to halt the processor here
  1847. // Remove after inserting ISR Code
  1848. //
  1849. asm (" ESTOP0");
  1850. for(;;);
  1851. }
  1852. //
  1853. // 11.6 - CLA1 Interrupt 6
  1854. //
  1855. interrupt void CLA1_6_ISR(void)
  1856. {
  1857. //
  1858. // Insert ISR Code here
  1859. //
  1860. //
  1861. // To receive more interrupts from this PIE group,
  1862. // acknowledge this interrupt.
  1863. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP11;
  1864. //
  1865. //
  1866. // Next two lines for debug only to halt the processor here
  1867. // Remove after inserting ISR Code
  1868. //
  1869. asm (" ESTOP0");
  1870. for(;;);
  1871. }
  1872. //
  1873. // 11.7 - CLA1 Interrupt 7
  1874. //
  1875. interrupt void CLA1_7_ISR(void)
  1876. {
  1877. //
  1878. // Insert ISR Code here
  1879. //
  1880. //
  1881. // To receive more interrupts from this PIE group,
  1882. // acknowledge this interrupt.
  1883. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP11;
  1884. //
  1885. //
  1886. // Next two lines for debug only to halt the processor here
  1887. // Remove after inserting ISR Code
  1888. //
  1889. asm (" ESTOP0");
  1890. for(;;);
  1891. }
  1892. //
  1893. // 11.8 - CLA1 Interrupt 8
  1894. //
  1895. interrupt void CLA1_8_ISR(void)
  1896. {
  1897. //
  1898. // Insert ISR Code here
  1899. //
  1900. //
  1901. // To receive more interrupts from this PIE group,
  1902. // acknowledge this interrupt.
  1903. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP11;
  1904. //
  1905. //
  1906. // Next two lines for debug only to halt the processor here
  1907. // Remove after inserting ISR Code
  1908. //
  1909. asm (" ESTOP0");
  1910. for(;;);
  1911. }
  1912. //
  1913. // 12.1 - XINT3 Interrupt
  1914. //
  1915. interrupt void XINT3_ISR(void)
  1916. {
  1917. //
  1918. // Insert ISR Code here
  1919. //
  1920. //
  1921. // To receive more interrupts from this PIE group,
  1922. // acknowledge this interrupt.
  1923. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  1924. //
  1925. //
  1926. // Next two lines for debug only to halt the processor here
  1927. // Remove after inserting ISR Code
  1928. //
  1929. asm (" ESTOP0");
  1930. for(;;);
  1931. }
  1932. //
  1933. // 12.2 - XINT4 Interrupt
  1934. //
  1935. interrupt void XINT4_ISR(void)
  1936. {
  1937. //
  1938. // Insert ISR Code here
  1939. //
  1940. //
  1941. // To receive more interrupts from this PIE group,
  1942. // acknowledge this interrupt.
  1943. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  1944. //
  1945. //
  1946. // Next two lines for debug only to halt the processor here
  1947. // Remove after inserting ISR Code
  1948. //
  1949. asm (" ESTOP0");
  1950. for(;;);
  1951. }
  1952. //
  1953. // 12.3 - XINT5 Interrupt
  1954. //
  1955. interrupt void XINT5_ISR(void)
  1956. {
  1957. //
  1958. // Insert ISR Code here
  1959. //
  1960. //
  1961. // To receive more interrupts from this PIE group,
  1962. // acknowledge this interrupt.
  1963. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  1964. //
  1965. //
  1966. // Next two lines for debug only to halt the processor here
  1967. // Remove after inserting ISR Code
  1968. //
  1969. asm (" ESTOP0");
  1970. for(;;);
  1971. }
  1972. //
  1973. // 12.6 - VCU Interrupt
  1974. //
  1975. interrupt void VCU_ISR(void)
  1976. {
  1977. //
  1978. // Insert ISR Code here
  1979. //
  1980. //
  1981. // To receive more interrupts from this PIE group,
  1982. // acknowledge this interrupt.
  1983. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  1984. //
  1985. //
  1986. // Next two lines for debug only to halt the processor here
  1987. // Remove after inserting ISR Code
  1988. //
  1989. asm (" ESTOP0");
  1990. for(;;);
  1991. }
  1992. //
  1993. // 12.7 - FPU Overflow Interrupt
  1994. //
  1995. interrupt void FPU_OVERFLOW_ISR(void)
  1996. {
  1997. //
  1998. // Insert ISR Code here
  1999. //
  2000. //
  2001. // To receive more interrupts from this PIE group,
  2002. // acknowledge this interrupt.
  2003. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2004. //
  2005. //
  2006. // Next two lines for debug only to halt the processor here
  2007. // Remove after inserting ISR Code
  2008. //
  2009. asm (" ESTOP0");
  2010. for(;;);
  2011. }
  2012. //
  2013. // 12.8 - FPU Underflow Interrupt
  2014. //
  2015. interrupt void FPU_UNDERFLOW_ISR(void)
  2016. {
  2017. //
  2018. // Insert ISR Code here
  2019. //
  2020. //
  2021. // To receive more interrupts from this PIE group,
  2022. // acknowledge this interrupt.
  2023. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2024. //
  2025. //
  2026. // Next two lines for debug only to halt the processor here
  2027. // Remove after inserting ISR Code
  2028. //
  2029. asm (" ESTOP0");
  2030. for(;;);
  2031. }
  2032. //
  2033. // 1.13 - IPC Interrupt 0
  2034. //
  2035. interrupt void IPC0_ISR(void)
  2036. {
  2037. //
  2038. // Insert ISR Code here
  2039. //
  2040. //
  2041. // To receive more interrupts from this PIE group,
  2042. // acknowledge this interrupt.
  2043. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  2044. //
  2045. //
  2046. // Next two lines for debug only to halt the processor here
  2047. // Remove after inserting ISR Code
  2048. //
  2049. asm (" ESTOP0");
  2050. for(;;);
  2051. }
  2052. //
  2053. // 1.14 - IPC Interrupt 1
  2054. //
  2055. interrupt void IPC1_ISR(void)
  2056. {
  2057. //
  2058. // Insert ISR Code here
  2059. //
  2060. //
  2061. // To receive more interrupts from this PIE group,
  2062. // acknowledge this interrupt.
  2063. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  2064. //
  2065. //
  2066. // Next two lines for debug only to halt the processor here
  2067. // Remove after inserting ISR Code
  2068. //
  2069. asm (" ESTOP0");
  2070. for(;;);
  2071. }
  2072. //
  2073. // 1.15 - IPC Interrupt 2
  2074. //
  2075. interrupt void IPC2_ISR(void)
  2076. {
  2077. //
  2078. // Insert ISR Code here
  2079. //
  2080. //
  2081. // To receive more interrupts from this PIE group,
  2082. // acknowledge this interrupt.
  2083. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  2084. //
  2085. //
  2086. // Next two lines for debug only to halt the processor here
  2087. // Remove after inserting ISR Code
  2088. //
  2089. asm (" ESTOP0");
  2090. for(;;);
  2091. }
  2092. //
  2093. // 1.16 - IPC Interrupt 3
  2094. //
  2095. interrupt void IPC3_ISR(void)
  2096. {
  2097. //
  2098. // Insert ISR Code here
  2099. //
  2100. //
  2101. // To receive more interrupts from this PIE group,
  2102. // acknowledge this interrupt.
  2103. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP1;
  2104. //
  2105. //
  2106. // Next two lines for debug only to halt the processor here
  2107. // Remove after inserting ISR Code
  2108. //
  2109. asm (" ESTOP0");
  2110. for(;;);
  2111. }
  2112. //
  2113. // 2.9 - ePWM9 Trip Zone Interrupt
  2114. //
  2115. interrupt void EPWM9_TZ_ISR(void)
  2116. {
  2117. //
  2118. // Insert ISR Code here
  2119. //
  2120. //
  2121. // To receive more interrupts from this PIE group,
  2122. // acknowledge this interrupt.
  2123. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  2124. //
  2125. //
  2126. // Next two lines for debug only to halt the processor here
  2127. // Remove after inserting ISR Code
  2128. //
  2129. asm (" ESTOP0");
  2130. for(;;);
  2131. }
  2132. //
  2133. // 2.10 - ePWM10 Trip Zone Interrupt
  2134. //
  2135. interrupt void EPWM10_TZ_ISR(void)
  2136. {
  2137. //
  2138. // Insert ISR Code here
  2139. //
  2140. //
  2141. // To receive more interrupts from this PIE group,
  2142. // acknowledge this interrupt.
  2143. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  2144. //
  2145. //
  2146. // Next two lines for debug only to halt the processor here
  2147. // Remove after inserting ISR Code
  2148. //
  2149. asm (" ESTOP0");
  2150. for(;;);
  2151. }
  2152. //
  2153. // 2.11 - ePWM11 Trip Zone Interrupt
  2154. //
  2155. interrupt void EPWM11_TZ_ISR(void)
  2156. {
  2157. //
  2158. // Insert ISR Code here
  2159. //
  2160. //
  2161. // To receive more interrupts from this PIE group,
  2162. // acknowledge this interrupt.
  2163. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  2164. //
  2165. //
  2166. // Next two lines for debug only to halt the processor here
  2167. // Remove after inserting ISR Code
  2168. //
  2169. asm (" ESTOP0");
  2170. for(;;);
  2171. }
  2172. //
  2173. // 2.12 - ePWM12 Trip Zone Interrupt
  2174. //
  2175. interrupt void EPWM12_TZ_ISR(void)
  2176. {
  2177. //
  2178. // Insert ISR Code here
  2179. //
  2180. //
  2181. // To receive more interrupts from this PIE group,
  2182. // acknowledge this interrupt.
  2183. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP2;
  2184. //
  2185. //
  2186. // Next two lines for debug only to halt the processor here
  2187. // Remove after inserting ISR Code
  2188. //
  2189. asm (" ESTOP0");
  2190. for(;;);
  2191. }
  2192. //
  2193. // 3.9 - ePWM9 Interrupt
  2194. //
  2195. interrupt void EPWM9_ISR(void)
  2196. {
  2197. //
  2198. // Insert ISR Code here
  2199. //
  2200. //
  2201. // To receive more interrupts from this PIE group,
  2202. // acknowledge this interrupt.
  2203. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  2204. //
  2205. //
  2206. // Next two lines for debug only to halt the processor here
  2207. // Remove after inserting ISR Code
  2208. //
  2209. asm (" ESTOP0");
  2210. for(;;);
  2211. }
  2212. //
  2213. // 3.10 - ePWM10 Interrupt
  2214. //
  2215. interrupt void EPWM10_ISR(void)
  2216. {
  2217. //
  2218. // Insert ISR Code here
  2219. //
  2220. //
  2221. // To receive more interrupts from this PIE group,
  2222. // acknowledge this interrupt.
  2223. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  2224. //
  2225. //
  2226. // Next two lines for debug only to halt the processor here
  2227. // Remove after inserting ISR Code
  2228. //
  2229. asm (" ESTOP0");
  2230. for(;;);
  2231. }
  2232. //
  2233. // 3.11 - ePWM11 Interrupt
  2234. //
  2235. interrupt void EPWM11_ISR(void)
  2236. {
  2237. //
  2238. // Insert ISR Code here
  2239. //
  2240. //
  2241. // To receive more interrupts from this PIE group,
  2242. // acknowledge this interrupt.
  2243. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  2244. //
  2245. //
  2246. // Next two lines for debug only to halt the processor here
  2247. // Remove after inserting ISR Code
  2248. //
  2249. asm (" ESTOP0");
  2250. for(;;);
  2251. }
  2252. //
  2253. // 3.12 - ePWM12 Interrupt
  2254. //
  2255. interrupt void EPWM12_ISR(void)
  2256. {
  2257. //
  2258. // Insert ISR Code here
  2259. //
  2260. //
  2261. // To receive more interrupts from this PIE group,
  2262. // acknowledge this interrupt.
  2263. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP3;
  2264. //
  2265. //
  2266. // Next two lines for debug only to halt the processor here
  2267. // Remove after inserting ISR Code
  2268. //
  2269. asm (" ESTOP0");
  2270. for(;;);
  2271. }
  2272. //
  2273. // 5.9 - SD1 Interrupt
  2274. //
  2275. interrupt void SD1_ISR(void)
  2276. {
  2277. //
  2278. // Insert ISR Code here
  2279. //
  2280. //
  2281. // To receive more interrupts from this PIE group,
  2282. // acknowledge this interrupt.
  2283. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP5;
  2284. //
  2285. //
  2286. // Next two lines for debug only to halt the processor here
  2287. // Remove after inserting ISR Code
  2288. //
  2289. asm (" ESTOP0");
  2290. for(;;);
  2291. }
  2292. //
  2293. // 5.10 - SD2 Interrupt
  2294. //
  2295. interrupt void SD2_ISR(void)
  2296. {
  2297. //
  2298. // Insert ISR Code here
  2299. //
  2300. //
  2301. // To receive more interrupts from this PIE group,
  2302. // acknowledge this interrupt.
  2303. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP5;
  2304. //
  2305. //
  2306. // Next two lines for debug only to halt the processor here
  2307. // Remove after inserting ISR Code
  2308. //
  2309. asm (" ESTOP0");
  2310. for(;;);
  2311. }
  2312. //
  2313. // 6.9 - SPIC Receive Interrupt
  2314. //
  2315. interrupt void SPIC_RX_ISR(void)
  2316. {
  2317. //
  2318. // Insert ISR Code here
  2319. //
  2320. //
  2321. // To receive more interrupts from this PIE group,
  2322. // acknowledge this interrupt.
  2323. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  2324. //
  2325. //
  2326. // Next two lines for debug only to halt the processor here
  2327. // Remove after inserting ISR Code
  2328. //
  2329. asm (" ESTOP0");
  2330. for(;;);
  2331. }
  2332. //
  2333. // 6.10 - SPIC Transmit Interrupt
  2334. //
  2335. interrupt void SPIC_TX_ISR(void)
  2336. {
  2337. //
  2338. // Insert ISR Code here
  2339. //
  2340. //
  2341. // To receive more interrupts from this PIE group,
  2342. // acknowledge this interrupt.
  2343. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP6;
  2344. //
  2345. //
  2346. // Next two lines for debug only to halt the processor here
  2347. // Remove after inserting ISR Code
  2348. //
  2349. asm (" ESTOP0");
  2350. for(;;);
  2351. }
  2352. //
  2353. // 8.15 - uPPA Interrupt
  2354. //
  2355. interrupt void UPPA_ISR(void)
  2356. {
  2357. //
  2358. // Insert ISR Code here
  2359. //
  2360. //
  2361. // To receive more interrupts from this PIE group,
  2362. // acknowledge this interrupt.
  2363. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP8;
  2364. //
  2365. //
  2366. // Next two lines for debug only to halt the processor here
  2367. // Remove after inserting ISR Code
  2368. //
  2369. asm (" ESTOP0");
  2370. for(;;);
  2371. }
  2372. //
  2373. // 9.15 - USBA Interrupt
  2374. //
  2375. interrupt void USBA_ISR(void)
  2376. {
  2377. //
  2378. // Insert ISR Code here
  2379. //
  2380. //
  2381. // To receive more interrupts from this PIE group,
  2382. // acknowledge this interrupt.
  2383. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP9;
  2384. //
  2385. //
  2386. // Next two lines for debug only to halt the processor here
  2387. // Remove after inserting ISR Code
  2388. //
  2389. asm (" ESTOP0");
  2390. for(;;);
  2391. }
  2392. //
  2393. // 10.9 - ADCC Event Interrupt
  2394. //
  2395. interrupt void ADCC_EVT_ISR(void)
  2396. {
  2397. //
  2398. // Insert ISR Code here
  2399. //
  2400. //
  2401. // To receive more interrupts from this PIE group,
  2402. // acknowledge this interrupt.
  2403. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  2404. //
  2405. //
  2406. // Next two lines for debug only to halt the processor here
  2407. // Remove after inserting ISR Code
  2408. //
  2409. asm (" ESTOP0");
  2410. for(;;);
  2411. }
  2412. //
  2413. // 10.10 - ADCC Interrupt 2
  2414. //
  2415. interrupt void ADCC2_ISR(void)
  2416. {
  2417. //
  2418. // Insert ISR Code here
  2419. //
  2420. //
  2421. // To receive more interrupts from this PIE group,
  2422. // acknowledge this interrupt.
  2423. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  2424. //
  2425. //
  2426. // Next two lines for debug only to halt the processor here
  2427. // Remove after inserting ISR Code
  2428. //
  2429. asm (" ESTOP0");
  2430. for(;;);
  2431. }
  2432. //
  2433. // 10.11 - ADCC Interrupt 3
  2434. //
  2435. interrupt void ADCC3_ISR(void)
  2436. {
  2437. //
  2438. // Insert ISR Code here
  2439. //
  2440. //
  2441. // To receive more interrupts from this PIE group,
  2442. // acknowledge this interrupt.
  2443. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  2444. //
  2445. //
  2446. // Next two lines for debug only to halt the processor here
  2447. // Remove after inserting ISR Code
  2448. //
  2449. asm (" ESTOP0");
  2450. for(;;);
  2451. }
  2452. //
  2453. // 10.12 - ADCC Interrupt 4
  2454. //
  2455. interrupt void ADCC4_ISR(void)
  2456. {
  2457. //
  2458. // Insert ISR Code here
  2459. //
  2460. //
  2461. // To receive more interrupts from this PIE group,
  2462. // acknowledge this interrupt.
  2463. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  2464. //
  2465. //
  2466. // Next two lines for debug only to halt the processor here
  2467. // Remove after inserting ISR Code
  2468. //
  2469. asm (" ESTOP0");
  2470. for(;;);
  2471. }
  2472. //
  2473. // 10.13 - ADCD Event Interrupt
  2474. //
  2475. interrupt void ADCD_EVT_ISR(void)
  2476. {
  2477. //
  2478. // Insert ISR Code here
  2479. //
  2480. //
  2481. // To receive more interrupts from this PIE group,
  2482. // acknowledge this interrupt.
  2483. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  2484. //
  2485. //
  2486. // Next two lines for debug only to halt the processor here
  2487. // Remove after inserting ISR Code
  2488. //
  2489. asm (" ESTOP0");
  2490. for(;;);
  2491. }
  2492. //
  2493. // 10.14 - ADCD Interrupt 2
  2494. //
  2495. interrupt void ADCD2_ISR(void)
  2496. {
  2497. //
  2498. // Insert ISR Code here
  2499. //
  2500. //
  2501. // To receive more interrupts from this PIE group,
  2502. // acknowledge this interrupt.
  2503. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  2504. //
  2505. //
  2506. // Next two lines for debug only to halt the processor here
  2507. // Remove after inserting ISR Code
  2508. //
  2509. asm (" ESTOP0");
  2510. for(;;);
  2511. }
  2512. //
  2513. // 10.15 - ADCD Interrupt 3
  2514. //
  2515. interrupt void ADCD3_ISR(void)
  2516. {
  2517. //
  2518. // Insert ISR Code here
  2519. //
  2520. //
  2521. // To receive more interrupts from this PIE group,
  2522. // acknowledge this interrupt.
  2523. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  2524. //
  2525. //
  2526. // Next two lines for debug only to halt the processor here
  2527. // Remove after inserting ISR Code
  2528. //
  2529. asm (" ESTOP0");
  2530. for(;;);
  2531. }
  2532. //
  2533. // 10.16 - ADCD Interrupt 4
  2534. //
  2535. interrupt void ADCD4_ISR(void)
  2536. {
  2537. //
  2538. // Insert ISR Code here
  2539. //
  2540. //
  2541. // To receive more interrupts from this PIE group,
  2542. // acknowledge this interrupt.
  2543. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP10;
  2544. //
  2545. //
  2546. // Next two lines for debug only to halt the processor here
  2547. // Remove after inserting ISR Code
  2548. //
  2549. asm (" ESTOP0");
  2550. for(;;);
  2551. }
  2552. //
  2553. // 12.9 - EMIF Error Interrupt
  2554. //
  2555. interrupt void EMIF_ERROR_ISR(void)
  2556. {
  2557. //
  2558. // Insert ISR Code here
  2559. //
  2560. //
  2561. // To receive more interrupts from this PIE group,
  2562. // acknowledge this interrupt.
  2563. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2564. //
  2565. //
  2566. // Next two lines for debug only to halt the processor here
  2567. // Remove after inserting ISR Code
  2568. //
  2569. asm (" ESTOP0");
  2570. for(;;);
  2571. }
  2572. //
  2573. // 12.10 - RAM Correctable Error Interrupt
  2574. //
  2575. interrupt void RAM_CORRECTABLE_ERROR_ISR(void)
  2576. {
  2577. //
  2578. // Insert ISR Code here
  2579. //
  2580. //
  2581. // To receive more interrupts from this PIE group,
  2582. // acknowledge this interrupt.
  2583. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2584. //
  2585. //
  2586. // Next two lines for debug only to halt the processor here
  2587. // Remove after inserting ISR Code
  2588. //
  2589. asm (" ESTOP0");
  2590. for(;;);
  2591. }
  2592. //
  2593. // 12.11 - Flash Correctable Error Interrupt
  2594. //
  2595. interrupt void FLASH_CORRECTABLE_ERROR_ISR(void)
  2596. {
  2597. //
  2598. // Insert ISR Code here
  2599. //
  2600. //
  2601. // To receive more interrupts from this PIE group,
  2602. // acknowledge this interrupt.
  2603. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2604. //
  2605. //
  2606. // Next two lines for debug only to halt the processor here
  2607. // Remove after inserting ISR Code
  2608. //
  2609. asm (" ESTOP0");
  2610. for(;;);
  2611. }
  2612. //
  2613. // 12.12 - RAM Access Violation Interrupt
  2614. //
  2615. interrupt void RAM_ACCESS_VIOLATION_ISR(void)
  2616. {
  2617. //
  2618. // Insert ISR Code here
  2619. //
  2620. //
  2621. // To receive more interrupts from this PIE group,
  2622. // acknowledge this interrupt.
  2623. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2624. //
  2625. //
  2626. // Next two lines for debug only to halt the processor here
  2627. // Remove after inserting ISR Code
  2628. //
  2629. asm (" ESTOP0");
  2630. for(;;);
  2631. }
  2632. //
  2633. // 12.13 - System PLL Slip Interrupt
  2634. //
  2635. interrupt void SYS_PLL_SLIP_ISR(void)
  2636. {
  2637. //
  2638. // Insert ISR Code here
  2639. //
  2640. //
  2641. // To receive more interrupts from this PIE group,
  2642. // acknowledge this interrupt.
  2643. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2644. //
  2645. //
  2646. // Next two lines for debug only to halt the processor here
  2647. // Remove after inserting ISR Code
  2648. //
  2649. asm (" ESTOP0");
  2650. for(;;);
  2651. }
  2652. //
  2653. // 12.14 - Auxiliary PLL Slip Interrupt
  2654. //
  2655. interrupt void AUX_PLL_SLIP_ISR(void)
  2656. {
  2657. //
  2658. // Insert ISR Code here
  2659. //
  2660. //
  2661. // To receive more interrupts from this PIE group,
  2662. // acknowledge this interrupt.
  2663. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2664. //
  2665. //
  2666. // Next two lines for debug only to halt the processor here
  2667. // Remove after inserting ISR Code
  2668. //
  2669. asm (" ESTOP0");
  2670. for(;;);
  2671. }
  2672. //
  2673. // 12.15 - CLA Overflow Interrupt
  2674. //
  2675. interrupt void CLA_OVERFLOW_ISR(void)
  2676. {
  2677. //
  2678. // Insert ISR Code here
  2679. //
  2680. //
  2681. // To receive more interrupts from this PIE group,
  2682. // acknowledge this interrupt.
  2683. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2684. //
  2685. //
  2686. // Next two lines for debug only to halt the processor here
  2687. // Remove after inserting ISR Code
  2688. //
  2689. asm (" ESTOP0");
  2690. for(;;);
  2691. }
  2692. //
  2693. // 12.16 - CLA Underflow Interrupt
  2694. //
  2695. interrupt void CLA_UNDERFLOW_ISR(void)
  2696. {
  2697. //
  2698. // Insert ISR Code here
  2699. //
  2700. //
  2701. // To receive more interrupts from this PIE group,
  2702. // acknowledge this interrupt.
  2703. // PieCtrlRegs.PIEACK.all = PIEACK_GROUP12;
  2704. //
  2705. //
  2706. // Next two lines for debug only to halt the processor here
  2707. // Remove after inserting ISR Code
  2708. //
  2709. asm (" ESTOP0");
  2710. for(;;);
  2711. }
  2712. //
  2713. // Catch-all Default ISRs:
  2714. //
  2715. //
  2716. // PIE_RESERVED_ISR - Reserved ISR
  2717. //
  2718. interrupt void PIE_RESERVED_ISR(void)
  2719. {
  2720. asm (" ESTOP0");
  2721. for(;;);
  2722. }
  2723. //
  2724. // EMPTY_ISR - Only does a return
  2725. //
  2726. interrupt void EMPTY_ISR(void)
  2727. {
  2728. }
  2729. //
  2730. // NOTUSED_ISR - Unused ISR
  2731. //
  2732. interrupt void NOTUSED_ISR(void)
  2733. {
  2734. asm (" ESTOP0");
  2735. for(;;);
  2736. }