From 5251d2c965721082f3f206b95a4e5c6c5180cd43 Mon Sep 17 00:00:00 2001 From: Avi Levkovich Date: Sun, 29 Mar 2020 12:31:05 +0300 Subject: update stub new head I/O (0x0EAD) --- .../Embedded/Modules/Stubs_Handler/Progress.c | 45 +++++++++++++++++++--- 1 file changed, 39 insertions(+), 6 deletions(-) (limited to 'Software/Embedded_SW/Embedded/Modules') diff --git a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c index 76a92bd89..25f9bcb3d 100644 --- a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c +++ b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c @@ -368,7 +368,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) if(Write_Buf[0] == 0)//Read { - Head_Read_IO_Reg(Script_Slave_Add, LOW); + //Head_Read_IO_Reg(Script_Slave_Add, LOW); delayms(1); if(Script_Slave_Add == 0x40) @@ -403,7 +403,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) if(Write_Buf[0] == 1)//Read { - Head_Read_IO_Reg(Script_Slave_Add, HIGH); + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); delayms(1); if(Script_Slave_Add == 0x40) @@ -427,7 +427,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) response.has_progress = true; } else - if(Script_Slave_Add == 0x46) + if(Script_Slave_Add == 0x46)//LS { Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; response.progress = Read_Buf[0]; @@ -435,6 +435,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) } } else + /* if(Write_Buf[0] == 2)//write { if(Script_Slave_Add == 0x40) @@ -452,7 +453,7 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); } - Head_Write_IO_Reg(Script_Slave_Add, LOW); + //Head_Write_IO_Reg(Script_Slave_Add, LOW); } if(Write_Buf[0] == 3)//write { @@ -463,14 +464,46 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) else if(Script_Slave_Add == 0x42) { - Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet } else if(Script_Slave_Add == 0x46) { Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); } - Head_Write_IO_Reg(Script_Slave_Add, HIGH); + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + */ + { + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); + } } } else -- cgit v1.3.1 From cec34cfdc8aefd337fa71b423431e67ec93e79a6 Mon Sep 17 00:00:00 2001 From: Avi Levkovich Date: Sun, 29 Mar 2020 14:07:08 +0300 Subject: update stub - Head Card I/O --- .../.history/0/b0871b93ac71001a1f70833eb9ed7011 | 29 + .../.history/11/203f98efab71001a1f70833eb9ed7011 | 56 + .../.history/11/908c2293ac71001a1f70833eb9ed7011 | 26 + .../.history/14/000403efab71001a1f70833eb9ed7011 | 15 + .../.history/14/503d3092ac71001a1f70833eb9ed7011 | 146 + .../.history/15/30acbceeab71001a1f70833eb9ed7011 | 22 + .../.history/15/50f95e93ac71001a1f70833eb9ed7011 | 15 + .../.history/16/101989eeab71001a1f70833eb9ed7011 | 15 + .../.history/16/a0062a93ac71001a1f70833eb9ed7011 | 15 + .../.history/16/a074e4edab71001a1f70833eb9ed7011 | 632 +++ .../.history/17/102c8791ac71001a1f70833eb9ed7011 | 26 + .../.history/18/100b4892ac71001a1f70833eb9ed7011 | 152 + .../.history/18/30055093ac71001a1f70833eb9ed7011 | 26 + .../.history/18/5093ec93ac71001a1f70833eb9ed7011 | 44 + .../.history/18/60ffae91ac71001a1f70833eb9ed7011 | 44 + .../.history/18/b0279eeeab71001a1f70833eb9ed7011 | 26 + .../.history/18/e0b42febab71001a1f70833eb9ed7011 | 26 + .../.history/1b/40f05993ac71001a1f70833eb9ed7011 | 26 + .../.history/1b/d0d679eeab71001a1f70833eb9ed7011 | 15 + .../.history/1c/201df7eeab71001a1f70833eb9ed7011 | 26 + .../.history/1c/20e879ecab71001a1f70833eb9ed7011 | 62 + .../.history/1e/206fa093ac71001a1f70833eb9ed7011 | 32 + .../.history/1f/70d150ebab71001a1f70833eb9ed7011 | 62 + .../.history/1f/d0957becab71001a1f70833eb9ed7011 | 57 + .../.history/2/60984b93ac71001a1f70833eb9ed7011 | 26 + .../.history/2/e0765b93ac71001a1f70833eb9ed7011 | 15 + .../.history/20/70b102ebab71001a1f70833eb9ed7011 | 211 + .../.history/21/d0a4b593ac71001a1f70833eb9ed7011 | 15 + .../.history/22/503ff0eeab71001a1f70833eb9ed7011 | 15 + .../.history/23/405639efab71001a1f70833eb9ed7011 | 22 + .../.history/23/60e55992ac71001a1f70833eb9ed7011 | 62 + .../.history/25/80608b93ac71001a1f70833eb9ed7011 | 22 + .../.history/27/e00c4393ac71001a1f70833eb9ed7011 | 26 + .../.history/27/f0659a91ac71001a1f70833eb9ed7011 | 50 + .../.history/28/f05e1deeab71001a1f70833eb9ed7011 | 26 + .../.history/29/60b55594ac71001a1f70833eb9ed7011 | 22 + .../.history/29/a0a7a193ac71001a1f70833eb9ed7011 | 22 + .../.history/2a/10d20694ac71001a1f70833eb9ed7011 | 56 + .../.history/2a/604a48efab71001a1f70833eb9ed7011 | 36 + .../.history/2b/a0840beeab71001a1f70833eb9ed7011 | 29 + .../.history/2c/30ae0fefab71001a1f70833eb9ed7011 | 62 + .../.history/2c/9025bbeeab71001a1f70833eb9ed7011 | 32 + .../.history/2c/a021e193ac71001a1f70833eb9ed7011 | 15 + .../.history/2d/00f90592ac71001a1f70833eb9ed7011 | 463 ++ .../.history/2d/304f1a93ac71001a1f70833eb9ed7011 | 38 + .../.history/2d/90f97e92ac71001a1f70833eb9ed7011 | 170 + .../.history/2f/50cdfcefab71001a1f70833eb9ed7011 | 38 + .../.history/3/601ff9ebab71001a1f70833eb9ed7011 | 463 ++ .../.history/3/70d06392ac71001a1f70833eb9ed7011 | 43 + .../.history/30/40c73befab71001a1f70833eb9ed7011 | 26 + .../.history/32/006c5b92ac71001a1f70833eb9ed7011 | 57 + .../.history/33/30e2bd93ac71001a1f70833eb9ed7011 | 26 + .../.history/33/a05061efab71001a1f70833eb9ed7011 | 50 + .../.history/34/601196eeab71001a1f70833eb9ed7011 | 22 + .../.history/34/f00ba991ac71001a1f70833eb9ed7011 | 38 + .../.history/35/a02c6deeab71001a1f70833eb9ed7011 | 22 + .../.history/36/50b7dceeab71001a1f70833eb9ed7011 | 32 + .../.history/37/204d6cefab71001a1f70833eb9ed7011 | 36 + .../.history/37/c0207ceeab71001a1f70833eb9ed7011 | 26 + .../.history/38/904c82ecab71001a1f70833eb9ed7011 | 50 + .../.history/38/d0a3c0eeab71001a1f70833eb9ed7011 | 15 + .../.history/38/f06e44eeab71001a1f70833eb9ed7011 | 26 + .../.history/39/a0b22deeab71001a1f70833eb9ed7011 | 29 + .../.history/39/d07ac891ac71001a1f70833eb9ed7011 | 86 + .../.history/3a/c0c77f93ac71001a1f70833eb9ed7011 | 32 + .../.history/3b/208025efab71001a1f70833eb9ed7011 | 15 + .../.history/3c/80c00492ac71001a1f70833eb9ed7011 | 410 ++ .../.history/3d/309fdd93ac71001a1f70833eb9ed7011 | 15 + .../.history/3e/10c33defab71001a1f70833eb9ed7011 | 15 + .../.history/3e/700f9e91ac71001a1f70833eb9ed7011 | 26 + .../.history/3e/80c071eeab71001a1f70833eb9ed7011 | 15 + .../.history/3f/503effefab71001a1f70833eb9ed7011 | 29 + .../.history/4/80ab42ecab71001a1f70833eb9ed7011 | 155 + .../.history/40/a0310894ac71001a1f70833eb9ed7011 | 50 + .../.history/41/00e94beeab71001a1f70833eb9ed7011 | 29 + .../.history/41/a0c59c93ac71001a1f70833eb9ed7011 | 26 + .../.history/42/809b1becab71001a1f70833eb9ed7011 | 62 + .../.history/43/806baa91ac71001a1f70833eb9ed7011 | 29 + .../.history/43/9088e9eeab71001a1f70833eb9ed7011 | 26 + .../.history/44/90c46eecab71001a1f70833eb9ed7011 | 152 + .../.history/45/30691c8bac71001a1f70833eb9ed7011 | 813 +++ .../.history/45/60c91eefab71001a1f70833eb9ed7011 | 15 + .../.history/45/e0945693ac71001a1f70833eb9ed7011 | 26 + .../.history/46/500911ebab71001a1f70833eb9ed7011 | 22 + .../.history/46/506b5292ac71001a1f70833eb9ed7011 | 162 + .../.history/47/d0f81aefab71001a1f70833eb9ed7011 | 22 + .../.history/47/f0154893ac71001a1f70833eb9ed7011 | 38 + .../.history/48/70efc093ac71001a1f70833eb9ed7011 | 26 + .../.history/49/404c9e93ac71001a1f70833eb9ed7011 | 15 + .../.history/49/508c9191ac71001a1f70833eb9ed7011 | 29 + .../.history/4a/20e100efab71001a1f70833eb9ed7011 | 26 + .../.history/4a/801035efab71001a1f70833eb9ed7011 | 32 + .../.history/4a/e0706292ac71001a1f70833eb9ed7011 | 50 + .../.history/4b/30f18292ac71001a1f70833eb9ed7011 | 183 + .../.history/4b/8025f3eeab71001a1f70833eb9ed7011 | 26 + .../.history/4d/4045b493ac71001a1f70833eb9ed7011 | 26 + .../.history/4d/b0a00aebab71001a1f70833eb9ed7011 | 36 + .../.history/4e/20f6beeeab71001a1f70833eb9ed7011 | 26 + .../.history/4e/505854efab71001a1f70833eb9ed7011 | 44 + .../.history/5/1015e793ac71001a1f70833eb9ed7011 | 26 + .../.history/5/10b1c3eeab71001a1f70833eb9ed7011 | 32 + .../.history/5/20914194ac71001a1f70833eb9ed7011 | 50 + .../.history/5/4069a4eeab71001a1f70833eb9ed7011 | 32 + .../.history/5/40fe2d93ac71001a1f70833eb9ed7011 | 38 + .../.history/51/40bcabeeab71001a1f70833eb9ed7011 | 22 + .../.history/51/a0e57991ac71001a1f70833eb9ed7011 | 211 + .../.history/51/e05010ecab71001a1f70833eb9ed7011 | 106 + .../.history/52/70fc9feeab71001a1f70833eb9ed7011 | 15 + .../.history/52/b0c815efab71001a1f70833eb9ed7011 | 15 + .../.history/52/d007e493ac71001a1f70833eb9ed7011 | 32 + .../.history/53/107d37ebab71001a1f70833eb9ed7011 | 29 + .../.history/53/60e6bb93ac71001a1f70833eb9ed7011 | 15 + .../.history/54/5040e593ac71001a1f70833eb9ed7011 | 22 + .../.history/54/70ce7deeab71001a1f70833eb9ed7011 | 15 + .../.history/55/60d69493ac71001a1f70833eb9ed7011 | 32 + .../.history/56/104214efab71001a1f70833eb9ed7011 | 26 + .../.history/56/30867993ac71001a1f70833eb9ed7011 | 44 + .../.history/57/209b6f93ac71001a1f70833eb9ed7011 | 26 + .../.history/57/403a2493ac71001a1f70833eb9ed7011 | 15 + .../.history/59/a07202f0ab71001a1f70833eb9ed7011 | 32 + .../.history/5a/10362693ac71001a1f70833eb9ed7011 | 26 + .../.history/5a/d089fe92ac71001a1f70833eb9ed7011 | 722 +++ .../.history/5a/f01fe3eeab71001a1f70833eb9ed7011 | 22 + .../.history/5b/d06324eeab71001a1f70833eb9ed7011 | 26 + .../.history/5c/80b04e94ac71001a1f70833eb9ed7011 | 29 + .../.history/5e/803ba693ac71001a1f70833eb9ed7011 | 22 + .../.history/5e/d0ce9eefab71001a1f70833eb9ed7011 | 15 + .../.history/6/c048a993ac71001a1f70833eb9ed7011 | 32 + .../.history/6/c0a29a93ac71001a1f70833eb9ed7011 | 22 + .../.history/60/f0436a93ac71001a1f70833eb9ed7011 | 15 + .../.history/61/204b19efab71001a1f70833eb9ed7011 | 32 + .../.history/62/601b53ebab71001a1f70833eb9ed7011 | 57 + .../.history/62/80f923efab71001a1f70833eb9ed7011 | 26 + .../.history/62/c0dd9beeab71001a1f70833eb9ed7011 | 22 + .../.history/64/0005f893ac71001a1f70833eb9ed7011 | 50 + .../.history/64/10114193ac71001a1f70833eb9ed7011 | 50 + .../.history/65/10eeae93ac71001a1f70833eb9ed7011 | 22 + .../.history/66/00151beeab71001a1f70833eb9ed7011 | 15 + .../.history/66/506719eeab71001a1f70833eb9ed7011 | 26 + .../.history/66/b05efdeeab71001a1f70833eb9ed7011 | 15 + .../.history/67/7039f8efab71001a1f70833eb9ed7011 | 43 + .../.history/67/e035ce93ac71001a1f70833eb9ed7011 | 62 + .../.history/67/f0c33192ac71001a1f70833eb9ed7011 | 155 + .../.history/68/30098591ac71001a1f70833eb9ed7011 | 22 + .../.history/68/80d71592ac71001a1f70833eb9ed7011 | 106 + .../.history/68/c066a493ac71001a1f70833eb9ed7011 | 32 + .../.history/68/d05d2f93ac71001a1f70833eb9ed7011 | 29 + .../.history/68/e086efefab71001a1f70833eb9ed7011 | 50 + .../.history/6b/000a8f93ac71001a1f70833eb9ed7011 | 22 + .../.history/6b/d0ec99efab71001a1f70833eb9ed7011 | 50 + .../.history/6c/f073df93ac71001a1f70833eb9ed7011 | 26 + .../.history/6d/b0af40ecab71001a1f70833eb9ed7011 | 146 + .../.history/6e/e06f7193ac71001a1f70833eb9ed7011 | 15 + .../.history/6f/4081aa93ac71001a1f70833eb9ed7011 | 22 + .../.history/6f/c0421defab71001a1f70833eb9ed7011 | 26 + .../.history/6f/f08f8793ac71001a1f70833eb9ed7011 | 15 + .../.history/70/30d98093ac71001a1f70833eb9ed7011 | 22 + .../.history/70/c0e57a93ac71001a1f70833eb9ed7011 | 36 + .../.history/71/105f3cebab71001a1f70833eb9ed7011 | 38 + .../.history/73/e02c9193ac71001a1f70833eb9ed7011 | 32 + .../.history/74/70dc51eeab71001a1f70833eb9ed7011 | 26 + .../.history/75/f0ba61eeab71001a1f70833eb9ed7011 | 26 + .../.history/77/5075f193ac71001a1f70833eb9ed7011 | 44 + .../.history/77/6040ad93ac71001a1f70833eb9ed7011 | 32 + .../.history/77/709e9b91ac71001a1f70833eb9ed7011 | 43 + .../.history/78/70578693ac71001a1f70833eb9ed7011 | 26 + .../.history/78/805659eeab71001a1f70833eb9ed7011 | 26 + .../.history/78/e0acc5eeab71001a1f70833eb9ed7011 | 22 + .../.history/79/30380993ac71001a1f70833eb9ed7011 | 62 + .../.history/79/3059b5eeab71001a1f70833eb9ed7011 | 32 + .../.history/7a/20c05493ac71001a1f70833eb9ed7011 | 15 + .../.history/7c/50b3c991ac71001a1f70833eb9ed7011 | 85 + .../.history/7d/301c6193ac71001a1f70833eb9ed7011 | 26 + .../.history/7d/706e9793ac71001a1f70833eb9ed7011 | 22 + .../.history/7d/a03fdc93ac71001a1f70833eb9ed7011 | 26 + .../.history/7d/e01922eeab71001a1f70833eb9ed7011 | 15 + .../.history/8/50bc73eeab71001a1f70833eb9ed7011 | 26 + .../.history/8/900eaaeeab71001a1f70833eb9ed7011 | 32 + .../.history/80/a083a9ecab71001a1f70833eb9ed7011 | 170 + .../.history/81/90a07e91ac71001a1f70833eb9ed7011 | 58 + .../.history/82/a01f19ebab71001a1f70833eb9ed7011 | 15 + .../.history/84/60e646ebab71001a1f70833eb9ed7011 | 36 + .../.history/84/90605393ac71001a1f70833eb9ed7011 | 26 + .../.history/84/d0d08493ac71001a1f70833eb9ed7011 | 22 + .../.history/85/3000b993ac71001a1f70833eb9ed7011 | 15 + .../.history/86/00212bebab71001a1f70833eb9ed7011 | 50 + .../.history/87/204e5deeab71001a1f70833eb9ed7011 | 26 + .../.history/87/60197593ac71001a1f70833eb9ed7011 | 15 + .../.history/88/d08b5193ac71001a1f70833eb9ed7011 | 15 + .../.history/8a/408f09ebab71001a1f70833eb9ed7011 | 58 + .../.history/8c/20eee3efab71001a1f70833eb9ed7011 | 204 + .../.history/8d/80b13f93ac71001a1f70833eb9ed7011 | 56 + .../.history/8d/901c0decab71001a1f70833eb9ed7011 | 104 + .../.history/8d/c0927393ac71001a1f70833eb9ed7011 | 26 + .../.history/8d/f0a623ebab71001a1f70833eb9ed7011 | 29 + .../.history/8e/200a1f93ac71001a1f70833eb9ed7011 | 26 + .../.history/8e/9017e7eeab71001a1f70833eb9ed7011 | 15 + .../.history/8e/d01c2debab71001a1f70833eb9ed7011 | 43 + .../.history/8f/70894aeeab71001a1f70833eb9ed7011 | 38 + .../.history/8f/90cdabecab71001a1f70833eb9ed7011 | 183 + .../.history/8f/e0adba93ac71001a1f70833eb9ed7011 | 26 + .../.history/90/60dc1c92ac71001a1f70833eb9ed7011 | 62 + .../.history/93/5099e1eeab71001a1f70833eb9ed7011 | 32 + .../.history/94/20b2edefab71001a1f70833eb9ed7011 | 56 + .../.history/94/40fa83ecab71001a1f70833eb9ed7011 | 43 + .../.history/94/f0e63494ac71001a1f70833eb9ed7011 | 204 + .../.history/95/10d97f91ac71001a1f70833eb9ed7011 | 36 + .../.history/95/205456efab71001a1f70833eb9ed7011 | 36 + .../.history/95/40eda491ac71001a1f70833eb9ed7011 | 29 + .../.history/96/e00b4eeeab71001a1f70833eb9ed7011 | 26 + .../.history/98/101f1593ac71001a1f70833eb9ed7011 | 38 + .../.history/99/f03521ebab71001a1f70833eb9ed7011 | 38 + .../.history/9a/60454493ac71001a1f70833eb9ed7011 | 15 + .../.history/9a/e0c96293ac71001a1f70833eb9ed7011 | 15 + .../.history/9a/f0495feeab71001a1f70833eb9ed7011 | 15 + .../.history/9c/80924feeab71001a1f70833eb9ed7011 | 15 + .../.history/a/40393394ac71001a1f70833eb9ed7011 | 188 + .../.history/a0/c0995d93ac71001a1f70833eb9ed7011 | 26 + .../.history/a0/f07b27efab71001a1f70833eb9ed7011 | 26 + .../.history/a1/c0ab62ebab71001a1f70833eb9ed7011 | 86 + .../.history/a2/90ed6aefab71001a1f70833eb9ed7011 | 44 + .../.history/a4/509f6d93ac71001a1f70833eb9ed7011 | 15 + .../.history/a4/606b87eeab71001a1f70833eb9ed7011 | 26 + .../.history/a5/d0555494ac71001a1f70833eb9ed7011 | 32 + .../.history/a6/d09a83eeab71001a1f70833eb9ed7011 | 44 + .../.history/a9/00631e92ac71001a1f70833eb9ed7011 | 57 + .../.history/a9/408135ebab71001a1f70833eb9ed7011 | 38 + .../.history/a9/b0692093ac71001a1f70833eb9ed7011 | 15 + .../.history/aa/b0f5d993ac71001a1f70833eb9ed7011 | 15 + .../.history/ab/302b93eeab71001a1f70833eb9ed7011 | 32 + .../.history/ab/d0af41eeab71001a1f70833eb9ed7011 | 50 + .../.history/ad/e0576beeab71001a1f70833eb9ed7011 | 32 + .../.history/ae/80c9aeeeab71001a1f70833eb9ed7011 | 32 + .../.history/af/507a13ebab71001a1f70833eb9ed7011 | 26 + .../.history/af/80f8c593ac71001a1f70833eb9ed7011 | 15 + .../.history/af/b0a51693ac71001a1f70833eb9ed7011 | 29 + .../.history/b/d07d7d93ac71001a1f70833eb9ed7011 | 15 + .../.history/b0/50457c93ac71001a1f70833eb9ed7011 | 26 + .../.history/b0/d0cbed93ac71001a1f70833eb9ed7011 | 36 + .../.history/b1/80754993ac71001a1f70833eb9ed7011 | 29 + .../.history/b2/50b245efab71001a1f70833eb9ed7011 | 44 + .../.history/b2/e0d4f293ac71001a1f70833eb9ed7011 | 36 + .../.history/b3/606ecf93ac71001a1f70833eb9ed7011 | 57 + .../.history/b3/80d52feeab71001a1f70833eb9ed7011 | 26 + .../.history/b6/a0ce64ebab71001a1f70833eb9ed7011 | 85 + .../.history/b6/e0d9f6efab71001a1f70833eb9ed7011 | 50 + .../.history/b7/701431ebab71001a1f70833eb9ed7011 | 15 + .../.history/b7/c041bf93ac71001a1f70833eb9ed7011 | 15 + .../.history/b7/f04275eeab71001a1f70833eb9ed7011 | 15 + .../.history/b8/a09d6feeab71001a1f70833eb9ed7011 | 26 + .../.history/b9/70f45793ac71001a1f70833eb9ed7011 | 15 + .../.history/ba/10309aeeab71001a1f70833eb9ed7011 | 32 + .../.history/ba/3080edeeab71001a1f70833eb9ed7011 | 26 + .../.history/bb/60fa84eeab71001a1f70833eb9ed7011 | 36 + .../.history/bc/b086b991ac71001a1f70833eb9ed7011 | 62 + .../.history/bf/d0291492ac71001a1f70833eb9ed7011 | 104 + .../.history/c/503e9293ac71001a1f70833eb9ed7011 | 22 + .../.history/c/a0a0b793ac71001a1f70833eb9ed7011 | 26 + .../.history/c0/308331eeab71001a1f70833eb9ed7011 | 15 + .../.history/c2/100278eeab71001a1f70833eb9ed7011 | 26 + .../.history/c3/700730efab71001a1f70833eb9ed7011 | 15 + .../.history/c3/b0e53debab71001a1f70833eb9ed7011 | 29 + .../.history/c5/e0d98993ac71001a1f70833eb9ed7011 | 32 + .../.history/c6/706e04f0ab71001a1f70833eb9ed7011 | 22 + .../.history/c6/b08da391ac71001a1f70833eb9ed7011 | 38 + .../.history/c6/c02c9091ac71001a1f70833eb9ed7011 | 38 + .../.history/c6/f0504d94ac71001a1f70833eb9ed7011 | 38 + .../.history/c8/209dc293ac71001a1f70833eb9ed7011 | 15 + .../.history/cb/30b93293ac71001a1f70833eb9ed7011 | 15 + .../.history/cb/f010b193ac71001a1f70833eb9ed7011 | 26 + .../.history/cc/60ae67eeab71001a1f70833eb9ed7011 | 15 + .../.history/cd/d05d9cefab71001a1f70833eb9ed7011 | 26 + .../.history/ce/d0a7f992ac71001a1f70833eb9ed7011 | 632 +++ .../.history/cf/10b06593ac71001a1f70833eb9ed7011 | 32 + .../.history/cf/805b8391ac71001a1f70833eb9ed7011 | 32 + .../.history/cf/a0a20a94ac71001a1f70833eb9ed7011 | 26 + .../.history/d/303714eeab71001a1f70833eb9ed7011 | 29 + .../.history/d/b09be893ac71001a1f70833eb9ed7011 | 15 + .../.history/d/c03ad593ac71001a1f70833eb9ed7011 | 32 + .../.history/d0/10d111efab71001a1f70833eb9ed7011 | 57 + .../.history/d0/905d0f94ac71001a1f70833eb9ed7011 | 15 + .../.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 | 22 + .../.history/d3/00b1fbeeab71001a1f70833eb9ed7011 | 26 + .../.history/d4/90a9bb91ac71001a1f70833eb9ed7011 | 57 + .../.history/d5/80993d94ac71001a1f70833eb9ed7011 | 56 + .../.history/d5/f098c493ac71001a1f70833eb9ed7011 | 26 + .../.history/d6/208ef9eeab71001a1f70833eb9ed7011 | 15 + .../.history/d7/f00015ebab71001a1f70833eb9ed7011 | 15 + .../.history/d9/40718393ac71001a1f70833eb9ed7011 | 32 + .../.history/da/406e3beeab71001a1f70833eb9ed7011 | 56 + .../.history/da/70ea25eeab71001a1f70833eb9ed7011 | 15 + .../.history/da/a074afe1ab71001a1f70833eb9ed7011 | 810 +++ .../.history/da/b0b28891ac71001a1f70833eb9ed7011 | 15 + .../.history/db/101cd193ac71001a1f70833eb9ed7011 | 26 + .../.history/db/4073d693ac71001a1f70833eb9ed7011 | 22 + .../.history/db/f030ff93ac71001a1f70833eb9ed7011 | 44 + .../.history/db/f05eb091ac71001a1f70833eb9ed7011 | 36 + .../.history/dc/a08bf993ac71001a1f70833eb9ed7011 | 43 + .../.history/de/a01145ebab71001a1f70833eb9ed7011 | 44 + .../.history/df/4036ebeeab71001a1f70833eb9ed7011 | 15 + .../.history/df/a01c46eeab71001a1f70833eb9ed7011 | 15 + .../.history/e/8070b293ac71001a1f70833eb9ed7011 | 15 + .../.history/e/90340febab71001a1f70833eb9ed7011 | 32 + .../.history/e/f090e5eeab71001a1f70833eb9ed7011 | 26 + .../.history/e1/30bdd893ac71001a1f70833eb9ed7011 | 26 + .../.history/e1/e016deeeab71001a1f70833eb9ed7011 | 22 + .../.history/e4/009917ebab71001a1f70833eb9ed7011 | 26 + .../.history/e5/d0dd6794ac71001a1f70833eb9ed7011 | 866 ++++ .../.history/e6/106353eeab71001a1f70833eb9ed7011 | 15 + .../.history/e6/40701decab71001a1f70833eb9ed7011 | 57 + .../.history/e7/10d455eeab71001a1f70833eb9ed7011 | 26 + .../.history/e7/402b5beeab71001a1f70833eb9ed7011 | 15 + .../.history/e7/8067e2efab71001a1f70833eb9ed7011 | 188 + .../.history/e7/90d58a91ac71001a1f70833eb9ed7011 | 26 + .../.history/e8/805d4794ac71001a1f70833eb9ed7011 | 50 + .../.history/e8/909a63efab71001a1f70833eb9ed7011 | 43 + .../.history/e8/b00066eeab71001a1f70833eb9ed7011 | 26 + .../.history/e9/90bee6edab71001a1f70833eb9ed7011 | 722 +++ .../.history/e9/b005fdedab71001a1f70833eb9ed7011 | 62 + .../.history/eb/70690094ac71001a1f70833eb9ed7011 | 36 + .../.history/ec/e004f3ebab71001a1f70833eb9ed7011 | 410 ++ .../.history/ec/e0efa5eeab71001a1f70833eb9ed7011 | 22 + .../.history/ed/20acf4eeab71001a1f70833eb9ed7011 | 15 + .../.history/ee/4008c9eeab71001a1f70833eb9ed7011 | 32 + .../.history/ee/f02db7eeab71001a1f70833eb9ed7011 | 22 + .../.history/f/b0bfd8eeab71001a1f70833eb9ed7011 | 22 + .../.history/f0/50bd6893ac71001a1f70833eb9ed7011 | 26 + .../.history/f0/f0479f91ac71001a1f70833eb9ed7011 | 15 + .../.history/f1/90e86693ac71001a1f70833eb9ed7011 | 22 + .../.history/f4/50919993ac71001a1f70833eb9ed7011 | 32 + .../.history/f6/100e8c91ac71001a1f70833eb9ed7011 | 15 + .../.history/f6/90b012eeab71001a1f70833eb9ed7011 | 38 + .../.history/f7/70aa8d93ac71001a1f70833eb9ed7011 | 32 + .../.history/f7/b0803193ac71001a1f70833eb9ed7011 | 26 + .../.history/f8/00381ef0ab71001a1f70833eb9ed7011 | 866 ++++ .../.history/f8/9054d293ac71001a1f70833eb9ed7011 | 15 + .../.history/f8/a03357eeab71001a1f70833eb9ed7011 | 15 + .../.history/f9/30a90b93ac71001a1f70833eb9ed7011 | 57 + .../.history/fa/d08809eeab71001a1f70833eb9ed7011 | 38 + .../.history/fa/d0dd63eeab71001a1f70833eb9ed7011 | 15 + .../.history/fb/e0ebffedab71001a1f70833eb9ed7011 | 57 + .../.history/fc/300b4994ac71001a1f70833eb9ed7011 | 43 + .../.history/fc/60c070ecab71001a1f70833eb9ed7011 | 162 + .../.history/fc/c03f6c93ac71001a1f70833eb9ed7011 | 26 + .../.history/fe/60094e93ac71001a1f70833eb9ed7011 | 15 + .../.history/fe/f0042ceeab71001a1f70833eb9ed7011 | 38 + .../Embedded/.indexes/33/4a/f5/26/history.index | Bin 3026 -> 3122 bytes .../Embedded/.indexes/33/4a/f5/34/history.index | Bin 3058 -> 3154 bytes .../Embedded/.indexes/33/4a/f5/3f/history.index | Bin 3052 -> 3148 bytes .../Embedded/.indexes/33/4a/f5/65/history.index | Bin 3032 -> 3128 bytes .../Embedded/.indexes/33/4a/f5/8/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/4a/f5/8c/history.index | Bin 3044 -> 3140 bytes .../Embedded/.indexes/33/4a/f5/b/history.index | Bin 3034 -> 3130 bytes .../Embedded/.indexes/33/4a/f5/b2/history.index | Bin 3048 -> 3144 bytes .../Embedded/.indexes/33/4a/f5/cb/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/4a/f5/ce/history.index | Bin 3040 -> 3136 bytes .../Embedded/.indexes/33/4a/f5/e5/history.index | Bin 3032 -> 3128 bytes .../Embedded/.indexes/33/4a/f5/f9/history.index | Bin 3048 -> 3144 bytes .../Embedded/.indexes/33/4a/f5/fe/history.index | Bin 3042 -> 3138 bytes .../Embedded/.indexes/33/4a/history.index | Bin 3012 -> 3108 bytes .../Embedded/.indexes/33/99/36/history.index | Bin 3028 -> 3124 bytes .../Embedded/.indexes/33/99/50/history.index | Bin 3028 -> 3124 bytes .../Embedded/.indexes/33/99/8c/history.index | Bin 3024 -> 3120 bytes .../Embedded/.indexes/33/99/98/history.index | Bin 3008 -> 3104 bytes .../Embedded/.indexes/33/99/aa/history.index | Bin 3016 -> 3112 bytes .../Embedded/.indexes/33/99/c3/history.index | Bin 3016 -> 3112 bytes .../Embedded/.indexes/33/99/c8/history.index | Bin 3016 -> 3112 bytes .../Embedded/.indexes/33/99/d6/history.index | Bin 6017 -> 6209 bytes .../Embedded/.indexes/33/99/fa/history.index | Bin 3012 -> 3108 bytes .../Embedded/.indexes/33/9d/c0/history.index | Bin 3042 -> 3138 bytes .../Embedded/.indexes/33/9d/cb/history.index | Bin 3030 -> 3126 bytes .../Embedded/.indexes/33/b/16/history.index | Bin 3018 -> 3114 bytes .../Embedded/.indexes/33/b/37/history.index | Bin 3014 -> 3110 bytes .../Embedded/.indexes/33/b/4a/history.index | Bin 3034 -> 3130 bytes .../Embedded/.indexes/33/b/4d/history.index | Bin 3016 -> 3112 bytes .../Embedded/.indexes/33/b/5f/history.index | Bin 3020 -> 3116 bytes .../Embedded/.indexes/33/b/c4/history.index | Bin 3024 -> 3120 bytes .../Embedded/.indexes/33/b/cc/history.index | Bin 3012 -> 3108 bytes .../Embedded/.indexes/33/d5/1a/history.index | Bin 3026 -> 3122 bytes .../Embedded/.indexes/33/d5/23/a2/51/history.index | Bin 1510 -> 1606 bytes .../Embedded/.indexes/33/d5/23/a2/65/history.index | Bin 2766 -> 2862 bytes .../Embedded/.indexes/33/d5/23/a2/73/history.index | Bin 2754 -> 2850 bytes .../Embedded/.indexes/33/d5/23/a2/history.index | Bin 3034 -> 3130 bytes .../Embedded/.indexes/33/d5/23/b5/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/d5/23/history.index | Bin 3020 -> 3116 bytes .../Embedded/.indexes/33/d5/24/6b/history.index | Bin 3042 -> 3138 bytes .../Embedded/.indexes/33/d5/24/a/history.index | Bin 3030 -> 3126 bytes .../Embedded/.indexes/33/d5/24/de/b8/history.index | Bin 3042 -> 3138 bytes .../Embedded/.indexes/33/d5/24/de/history.index | Bin 3028 -> 3124 bytes .../Embedded/.indexes/33/d5/24/e9/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/d5/24/history.index | Bin 3010 -> 3106 bytes .../Embedded/.indexes/33/d5/42/history.index | Bin 3014 -> 3110 bytes .../Embedded/.indexes/33/d5/43/history.index | Bin 3014 -> 3110 bytes .../Embedded/.indexes/33/d5/70/86/history.index | Bin 3038 -> 3134 bytes .../Embedded/.indexes/33/d5/70/history.index | Bin 3026 -> 3122 bytes .../Embedded/.indexes/33/d5/83/history.index | Bin 3028 -> 3124 bytes .../Embedded/.indexes/33/d5/8c/history.index | Bin 3008 -> 3104 bytes .../Embedded/.indexes/33/d5/91/53/0/history.index | Bin 3068 -> 3164 bytes .../Embedded/.indexes/33/d5/91/53/29/history.index | Bin 3082 -> 3178 bytes .../Embedded/.indexes/33/d5/91/53/51/history.index | Bin 3084 -> 3180 bytes .../Embedded/.indexes/33/d5/91/53/7e/history.index | Bin 3106 -> 3202 bytes .../Embedded/.indexes/33/d5/91/53/87/history.index | Bin 3090 -> 3186 bytes .../Embedded/.indexes/33/d5/91/53/94/history.index | Bin 3096 -> 3192 bytes .../Embedded/.indexes/33/d5/91/53/96/history.index | Bin 3084 -> 3180 bytes .../Embedded/.indexes/33/d5/91/53/bd/history.index | Bin 3090 -> 3186 bytes .../Embedded/.indexes/33/d5/91/53/history.index | Bin 3054 -> 3150 bytes .../Embedded/.indexes/33/d5/91/66/0/history.index | Bin 3080 -> 3176 bytes .../Embedded/.indexes/33/d5/91/66/67/history.index | Bin 3084 -> 3180 bytes .../Embedded/.indexes/33/d5/91/66/history.index | Bin 6105 -> 6297 bytes .../Embedded/.indexes/33/d5/91/8f/history.index | Bin 3052 -> 3148 bytes .../Embedded/.indexes/33/d5/91/9b/72/history.index | Bin 3072 -> 3168 bytes .../Embedded/.indexes/33/d5/91/9b/history.index | Bin 3054 -> 3150 bytes .../Embedded/.indexes/33/d5/91/af/history.index | Bin 3054 -> 3150 bytes .../Embedded/.indexes/33/d5/91/c1/history.index | Bin 3072 -> 3168 bytes .../Embedded/.indexes/33/d5/91/f/0/history.index | Bin 3070 -> 3166 bytes .../.indexes/33/d5/91/f/67/aa/history.index | Bin 3090 -> 3186 bytes .../Embedded/.indexes/33/d5/91/f/67/history.index | Bin 3074 -> 3170 bytes .../Embedded/.indexes/33/d5/91/f/6d/history.index | Bin 3068 -> 3164 bytes .../Embedded/.indexes/33/d5/91/f/80/history.index | Bin 3064 -> 3160 bytes .../Embedded/.indexes/33/d5/91/f/f3/history.index | Bin 3064 -> 3160 bytes .../Embedded/.indexes/33/d5/91/f/history.index | Bin 3056 -> 3152 bytes .../Embedded/.indexes/33/d5/91/history.index | Bin 3036 -> 3132 bytes .../Embedded/.indexes/33/d5/b1/history.index | Bin 3020 -> 3116 bytes .../Embedded/.indexes/33/d5/c2/3f/history.index | Bin 3032 -> 3128 bytes .../Embedded/.indexes/33/d5/c2/f2/history.index | Bin 3044 -> 3140 bytes .../Embedded/.indexes/33/d5/c2/history.index | Bin 3018 -> 3114 bytes .../Embedded/.indexes/33/d5/e5/history.index | Bin 3036 -> 3132 bytes .../Embedded/.indexes/33/d5/fd/history.index | Bin 3014 -> 3110 bytes .../.projects/Embedded/.indexes/33/history.index | Bin 6261 -> 6477 bytes .../Embedded/.indexes/99/50/history.index | Bin 138 -> 186 bytes .../Embedded/.indexes/d5/91/c1/properties.index | Bin 0 -> 176 bytes .../.projects/Embedded/.markers.snap | Bin 185664 -> 274290 bytes .../.projects/Embedded/.syncinfo.snap | Bin 96 -> 128 bytes .../.projects/RemoteSystemsTempFiles/.markers.snap | Bin 96 -> 128 bytes .../RemoteSystemsTempFiles/.syncinfo.snap | Bin 96 -> 128 bytes .../org.eclipse.core.resources/.root/.markers.snap | Bin 96 -> 128 bytes .../.safetable/org.eclipse.core.resources | Bin 2389 -> 2959 bytes .../.plugins/org.eclipse.core.resources/54.snap | Bin 62766 -> 73423 bytes .../org.eclipse.e4.workbench/workbench.xmi | 5447 ++++++++++---------- .../Embedded/Modules/Stubs_Handler/Progress.c | 3 + 440 files changed, 23713 insertions(+), 2678 deletions(-) create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/b0871b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/203f98efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/908c2293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/000403efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/503d3092ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/30acbceeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/50f95e93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/101989eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a0062a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a074e4edab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102c8791ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/100b4892ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30055093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/5093ec93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60ffae91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/b0279eeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0b42febab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/40f05993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0d679eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/201df7eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/20e879ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/206fa093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/70d150ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0957becab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/60984b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/e0765b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/70b102ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0a4b593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/503ff0eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/405639efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/60e55992ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/80608b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/e00c4393ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0659a91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/f05e1deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/60b55594ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a0a7a193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/10d20694ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/604a48efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/a0840beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30ae0fefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/9025bbeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a021e193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00f90592ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/304f1a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90f97e92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50cdfcefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/601ff9ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70d06392ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/40c73befab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/006c5b92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/30e2bd93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/a05061efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/601196eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/f00ba991ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a02c6deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/50b7dceeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/204d6cefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c0207ceeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/904c82ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/d0a3c0eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f06e44eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/a0b22deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/d07ac891ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c0c77f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/208025efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/80c00492ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/309fdd93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10c33defab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/700f9e91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80c071eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/503effefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/80ab42ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/a0310894ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/00e94beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/a0c59c93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/809b1becab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/806baa91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/9088e9eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90c46eecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/30691c8bac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/60c91eefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0945693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/500911ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/506b5292ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/d0f81aefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/f0154893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70efc093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/404c9e93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/508c9191ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20e100efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/801035efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0706292ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30f18292ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/8025f3eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4045b493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/b0a00aebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/20f6beeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/505854efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/1015e793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10b1c3eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/20914194ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/4069a4eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/40fe2d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/40bcabeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/a0e57991ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/e05010ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/70fc9feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/b0c815efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/d007e493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/107d37ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/60e6bb93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/5040e593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/70ce7deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/60d69493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/104214efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/30867993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/209b6f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/403a2493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/a07202f0ab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10362693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d089fe92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/f01fe3eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d06324eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80b04e94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/803ba693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d0ce9eefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c048a993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c0a29a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/f0436a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/204b19efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/601b53ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/80f923efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c0dd9beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/0005f893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/10114193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/10eeae93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/00151beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/506719eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b05efdeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/7039f8efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/e035ce93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0c33192ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/30098591ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80d71592ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/c066a493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/d05d2f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e086efefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/000a8f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0ec99efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/f073df93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0af40ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e06f7193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/4081aa93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0421defab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/f08f8793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30d98093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/c0e57a93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/105f3cebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/e02c9193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70dc51eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ba61eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/5075f193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/6040ad93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/709e9b91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/70578693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/805659eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0acc5eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/30380993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/3059b5eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/20c05493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/50b3c991ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/301c6193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/706e9793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a03fdc93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e01922eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50bc73eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/900eaaeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/a083a9ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/90a07e91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/a01f19ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/60e646ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/90605393ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/d0d08493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/3000b993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00212bebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/204e5deeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60197593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/d08b5193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/408f09ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/20eee3efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b13f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/901c0decab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0927393ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0a623ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/200a1f93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/9017e7eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/d01c2debab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/70894aeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/90cdabecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/e0adba93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/60dc1c92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/5099e1eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20b2edefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/40fa83ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e63494ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/10d97f91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/205456efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/40eda491ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00b4eeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/101f1593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f03521ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/60454493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e0c96293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0495feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/80924feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40393394ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c0995d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f07b27efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ab62ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/90ed6aefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/509f6d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/606b87eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/d0555494ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/d09a83eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00631e92ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/408135ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b0692093ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/b0f5d993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/302b93eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/d0af41eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0576beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80c9aeeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/507a13ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/80f8c593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/b0a51693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/d07d7d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/50457c93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d0cbed93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80754993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/50b245efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/e0d4f293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/606ecf93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/80d52feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a0ce64ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e0d9f6efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/701431ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c041bf93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/f04275eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a09d6feeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70f45793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10309aeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3080edeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/60fa84eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/b086b991ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0291492ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/503e9293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/a0a0b793ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/308331eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/100278eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/700730efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b0e53debab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0d98993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/706e04f0ab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b08da391ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c02c9091ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0504d94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/209dc293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30b93293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f010b193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/60ae67eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d05d9cefab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/d0a7f992ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10b06593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/805b8391ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/a0a20a94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/303714eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b09be893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/c03ad593ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/10d111efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/905d0f94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/00b1fbeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a9bb91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/80993d94ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f098c493ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/208ef9eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/f00015ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40718393ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/406e3beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/70ea25eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/a074afe1ab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/b0b28891ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/101cd193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/4073d693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f030ff93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f05eb091ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/a08bf993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a01145ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4036ebeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a01c46eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/8070b293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90340febab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/f090e5eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/30bdd893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e016deeeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/009917ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/d0dd6794ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/106353eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/40701decab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/10d455eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/402b5beeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/8067e2efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/90d58a91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/805d4794ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/909a63efab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/b00066eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/90bee6edab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b005fdedab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70690094ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e004f3ebab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e0efa5eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/20acf4eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/4008c9eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f02db7eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0bfd8eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/50bd6893ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/f0479f91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90e86693ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50919993ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/100e8c91ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/90b012eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/70aa8d93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0803193ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/00381ef0ab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9054d293ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a03357eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/30a90b93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d08809eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d0dd63eeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/e0ebffedab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/300b4994ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/60c070ecab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c03f6c93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/60094e93ac71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f0042ceeab71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/91/c1/properties.index (limited to 'Software/Embedded_SW/Embedded/Modules') diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/b0871b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/b0871b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/0/b0871b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/203f98efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/203f98efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/203f98efab71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/908c2293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/908c2293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/908c2293ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/000403efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/000403efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/000403efab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/503d3092ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/503d3092ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/503d3092ac71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/30acbceeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/30acbceeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/30acbceeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/50f95e93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/50f95e93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/15/50f95e93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/101989eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/101989eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/101989eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a0062a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a0062a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a0062a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a074e4edab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a074e4edab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/a074e4edab71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102c8791ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102c8791ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/102c8791ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/100b4892ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/100b4892ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/100b4892ac71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30055093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30055093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/30055093ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/5093ec93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/5093ec93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/5093ec93ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60ffae91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60ffae91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/60ffae91ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/b0279eeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/b0279eeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/b0279eeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0b42febab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0b42febab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/e0b42febab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/40f05993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/40f05993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/40f05993ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0d679eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0d679eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/d0d679eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/201df7eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/201df7eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/201df7eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/20e879ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/20e879ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1c/20e879ecab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/206fa093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/206fa093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/206fa093ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/70d150ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/70d150ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/70d150ebab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0957becab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0957becab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/d0957becab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/60984b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/60984b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/60984b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/e0765b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/e0765b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2/e0765b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/70b102ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/70b102ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/70b102ebab71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0a4b593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0a4b593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/d0a4b593ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/503ff0eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/503ff0eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/503ff0eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/405639efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/405639efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/405639efab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/60e55992ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/60e55992ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/60e55992ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/80608b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/80608b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/80608b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/e00c4393ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/e00c4393ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/e00c4393ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0659a91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0659a91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/f0659a91ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/f05e1deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/f05e1deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/f05e1deeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/60b55594ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/60b55594ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/60b55594ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a0a7a193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a0a7a193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/a0a7a193ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/10d20694ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/10d20694ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/10d20694ac71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/604a48efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/604a48efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2a/604a48efab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/a0840beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/a0840beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/a0840beeab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30ae0fefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30ae0fefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/30ae0fefab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/9025bbeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/9025bbeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/9025bbeeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a021e193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a021e193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/a021e193ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00f90592ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00f90592ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/00f90592ac71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/304f1a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/304f1a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/304f1a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90f97e92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90f97e92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90f97e92ac71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50cdfcefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50cdfcefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/50cdfcefab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/601ff9ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/601ff9ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/601ff9ebab71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70d06392ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70d06392ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/70d06392ac71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/40c73befab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/40c73befab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/40c73befab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/006c5b92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/006c5b92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/006c5b92ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/30e2bd93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/30e2bd93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/30e2bd93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/a05061efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/a05061efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/a05061efab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/601196eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/601196eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/601196eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/f00ba991ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/f00ba991ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/34/f00ba991ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a02c6deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a02c6deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/a02c6deeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/50b7dceeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/50b7dceeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/50b7dceeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/204d6cefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/204d6cefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/204d6cefab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c0207ceeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c0207ceeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/c0207ceeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/904c82ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/904c82ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/904c82ecab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/d0a3c0eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/d0a3c0eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/d0a3c0eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f06e44eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f06e44eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/f06e44eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/a0b22deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/a0b22deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/a0b22deeab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/d07ac891ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/d07ac891ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/39/d07ac891ac71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c0c77f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c0c77f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/c0c77f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/208025efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/208025efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/208025efab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/80c00492ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/80c00492ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3c/80c00492ac71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/309fdd93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/309fdd93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/309fdd93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10c33defab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10c33defab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/10c33defab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/700f9e91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/700f9e91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/700f9e91ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80c071eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80c071eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/80c071eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/503effefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/503effefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/503effefab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/80ab42ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/80ab42ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/80ab42ecab71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/a0310894ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/a0310894ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/a0310894ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/00e94beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/00e94beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/00e94beeab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/a0c59c93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/a0c59c93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/a0c59c93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/809b1becab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/809b1becab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/809b1becab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/806baa91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/806baa91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/806baa91ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/9088e9eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/9088e9eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/9088e9eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90c46eecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90c46eecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/90c46eecab71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/30691c8bac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/30691c8bac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71c419f0d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/30691c8bac71001a1f70833eb9ed7011 @@ -0,0 +1,813 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O read only!!!! + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + /* + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + //Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + */ + if(Write_Buf[0] >=0xF0) + { + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + Write_Buf[0] &=0x0f; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/60c91eefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/60c91eefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/60c91eefab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0945693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0945693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/e0945693ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/500911ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/500911ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/500911ebab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/506b5292ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/506b5292ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/506b5292ac71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/d0f81aefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/d0f81aefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/d0f81aefab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/f0154893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/f0154893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/f0154893ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70efc093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70efc093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70efc093ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/404c9e93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/404c9e93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/404c9e93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/508c9191ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/508c9191ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/508c9191ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20e100efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20e100efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/20e100efab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/801035efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/801035efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/801035efab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0706292ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0706292ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/e0706292ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30f18292ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30f18292ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/30f18292ac71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/8025f3eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/8025f3eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4b/8025f3eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4045b493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4045b493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/4045b493ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/b0a00aebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/b0a00aebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/b0a00aebab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/20f6beeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/20f6beeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/20f6beeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/505854efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/505854efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4e/505854efab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/1015e793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/1015e793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/1015e793ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10b1c3eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10b1c3eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/10b1c3eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/20914194ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/20914194ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/20914194ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/4069a4eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/4069a4eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/4069a4eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/40fe2d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/40fe2d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5/40fe2d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/40bcabeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/40bcabeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/40bcabeeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/a0e57991ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/a0e57991ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/a0e57991ac71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/e05010ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/e05010ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/51/e05010ecab71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/70fc9feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/70fc9feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/70fc9feeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/b0c815efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/b0c815efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/b0c815efab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/d007e493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/d007e493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/52/d007e493ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/107d37ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/107d37ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/107d37ebab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/60e6bb93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/60e6bb93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/60e6bb93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/5040e593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/5040e593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/5040e593ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/70ce7deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/70ce7deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/70ce7deeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/60d69493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/60d69493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/60d69493ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/104214efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/104214efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/104214efab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/30867993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/30867993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/30867993ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/209b6f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/209b6f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/209b6f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/403a2493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/403a2493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/403a2493ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/a07202f0ab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/a07202f0ab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/59/a07202f0ab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10362693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10362693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/10362693ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d089fe92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d089fe92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/d089fe92ac71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/f01fe3eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/f01fe3eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5a/f01fe3eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d06324eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d06324eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/d06324eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80b04e94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80b04e94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/80b04e94ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/803ba693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/803ba693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/803ba693ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d0ce9eefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d0ce9eefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/d0ce9eefab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c048a993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c048a993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c048a993ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c0a29a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c0a29a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/c0a29a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/f0436a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/f0436a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/60/f0436a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/204b19efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/204b19efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/204b19efab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/601b53ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/601b53ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/601b53ebab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/80f923efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/80f923efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/80f923efab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c0dd9beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c0dd9beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/62/c0dd9beeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/0005f893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/0005f893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/0005f893ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/10114193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/10114193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/10114193ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/10eeae93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/10eeae93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/10eeae93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/00151beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/00151beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/00151beeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/506719eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/506719eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/506719eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b05efdeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b05efdeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/b05efdeeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/7039f8efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/7039f8efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/7039f8efab71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/e035ce93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/e035ce93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/e035ce93ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0c33192ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0c33192ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/f0c33192ac71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/30098591ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/30098591ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/30098591ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80d71592ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80d71592ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/80d71592ac71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/c066a493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/c066a493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/c066a493ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/d05d2f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/d05d2f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/d05d2f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e086efefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e086efefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/68/e086efefab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/000a8f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/000a8f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/000a8f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0ec99efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0ec99efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6b/d0ec99efab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/f073df93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/f073df93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6c/f073df93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0af40ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0af40ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/b0af40ecab71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e06f7193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e06f7193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/e06f7193ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/4081aa93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/4081aa93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/4081aa93ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0421defab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0421defab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c0421defab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/f08f8793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/f08f8793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/f08f8793ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30d98093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30d98093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/30d98093ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/c0e57a93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/c0e57a93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/c0e57a93ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/105f3cebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/105f3cebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/71/105f3cebab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/e02c9193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/e02c9193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/e02c9193ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70dc51eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70dc51eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70dc51eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ba61eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ba61eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/75/f0ba61eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/5075f193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/5075f193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/5075f193ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/6040ad93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/6040ad93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/6040ad93ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/709e9b91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/709e9b91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/709e9b91ac71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/70578693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/70578693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/70578693ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/805659eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/805659eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/805659eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0acc5eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0acc5eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/e0acc5eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/30380993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/30380993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/30380993ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/3059b5eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/3059b5eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/3059b5eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/20c05493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/20c05493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/20c05493ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/50b3c991ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/50b3c991ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/50b3c991ac71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/301c6193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/301c6193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/301c6193ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/706e9793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/706e9793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/706e9793ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a03fdc93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a03fdc93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/a03fdc93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e01922eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e01922eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/e01922eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50bc73eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50bc73eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/50bc73eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/900eaaeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/900eaaeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/900eaaeeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/a083a9ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/a083a9ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/80/a083a9ecab71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/90a07e91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/90a07e91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/90a07e91ac71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/a01f19ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/a01f19ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/a01f19ebab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/60e646ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/60e646ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/60e646ebab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/90605393ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/90605393ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/90605393ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/d0d08493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/d0d08493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/d0d08493ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/3000b993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/3000b993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/3000b993ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00212bebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00212bebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/00212bebab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/204e5deeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/204e5deeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/204e5deeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60197593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60197593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60197593ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/d08b5193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/d08b5193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/d08b5193ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/408f09ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/408f09ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8a/408f09ebab71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/20eee3efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/20eee3efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/20eee3efab71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b13f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b13f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/80b13f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/901c0decab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/901c0decab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/901c0decab71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0927393ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0927393ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/c0927393ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0a623ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0a623ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8d/f0a623ebab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/200a1f93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/200a1f93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/200a1f93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/9017e7eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/9017e7eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/9017e7eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/d01c2debab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/d01c2debab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8e/d01c2debab71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/70894aeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/70894aeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/70894aeeab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/90cdabecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/90cdabecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/90cdabecab71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/e0adba93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/e0adba93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/e0adba93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/60dc1c92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/60dc1c92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/90/60dc1c92ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/5099e1eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/5099e1eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/5099e1eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20b2edefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20b2edefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/20b2edefab71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/40fa83ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/40fa83ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/40fa83ecab71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e63494ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e63494ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/94/f0e63494ac71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/10d97f91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/10d97f91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/10d97f91ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/205456efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/205456efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/205456efab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/40eda491ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/40eda491ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/95/40eda491ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00b4eeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00b4eeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/96/e00b4eeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/101f1593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/101f1593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/101f1593ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f03521ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f03521ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/99/f03521ebab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/60454493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/60454493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/60454493ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e0c96293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e0c96293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/e0c96293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0495feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0495feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0495feeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/80924feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/80924feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/80924feeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40393394ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40393394ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/40393394ac71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c0995d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c0995d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/c0995d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f07b27efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f07b27efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f07b27efab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ab62ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ab62ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/c0ab62ebab71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/90ed6aefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/90ed6aefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a2/90ed6aefab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/509f6d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/509f6d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/509f6d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/606b87eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/606b87eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a4/606b87eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/d0555494ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/d0555494ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a5/d0555494ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/d09a83eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/d09a83eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/d09a83eeab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00631e92ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00631e92ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/00631e92ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/408135ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/408135ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/408135ebab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b0692093ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b0692093ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a9/b0692093ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/b0f5d993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/b0f5d993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/b0f5d993ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/302b93eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/302b93eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/302b93eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/d0af41eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/d0af41eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/d0af41eeab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0576beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0576beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/e0576beeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80c9aeeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80c9aeeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ae/80c9aeeeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/507a13ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/507a13ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/507a13ebab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/80f8c593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/80f8c593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/80f8c593ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/b0a51693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/b0a51693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/b0a51693ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/d07d7d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/d07d7d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/d07d7d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/50457c93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/50457c93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/50457c93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d0cbed93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d0cbed93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/d0cbed93ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80754993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80754993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/80754993ac71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/50b245efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/50b245efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/50b245efab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/e0d4f293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/e0d4f293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/e0d4f293ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/606ecf93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/606ecf93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/606ecf93ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/80d52feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/80d52feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/80d52feeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a0ce64ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a0ce64ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/a0ce64ebab71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e0d9f6efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e0d9f6efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/e0d9f6efab71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/701431ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/701431ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/701431ebab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c041bf93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c041bf93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/c041bf93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/f04275eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/f04275eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/f04275eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a09d6feeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a09d6feeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/a09d6feeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70f45793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70f45793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/70f45793ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10309aeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10309aeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/10309aeeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3080edeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3080edeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/3080edeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/60fa84eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/60fa84eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/60fa84eeab71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/b086b991ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/b086b991ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/b086b991ac71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0291492ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0291492ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bf/d0291492ac71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/503e9293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/503e9293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/503e9293ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/a0a0b793ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/a0a0b793ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/a0a0b793ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/308331eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/308331eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/308331eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/100278eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/100278eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/100278eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/700730efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/700730efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/700730efab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b0e53debab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b0e53debab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c3/b0e53debab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0d98993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0d98993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/e0d98993ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/706e04f0ab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/706e04f0ab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/706e04f0ab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b08da391ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b08da391ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/b08da391ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c02c9091ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c02c9091ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/c02c9091ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0504d94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0504d94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0504d94ac71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/209dc293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/209dc293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/209dc293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30b93293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30b93293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30b93293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f010b193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f010b193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f010b193ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/60ae67eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/60ae67eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cc/60ae67eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d05d9cefab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d05d9cefab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/d05d9cefab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/d0a7f992ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/d0a7f992ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ce/d0a7f992ac71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10b06593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10b06593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/10b06593ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/805b8391ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/805b8391ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/805b8391ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/a0a20a94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/a0a20a94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cf/a0a20a94ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/303714eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/303714eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/303714eeab71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b09be893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b09be893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/b09be893ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/c03ad593ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/c03ad593ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d/c03ad593ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/10d111efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/10d111efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/10d111efab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/905d0f94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/905d0f94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/905d0f94ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0fdb1eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/00b1fbeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/00b1fbeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d3/00b1fbeeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a9bb91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a9bb91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a9bb91ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/80993d94ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/80993d94ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/80993d94ac71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f098c493ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f098c493ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d5/f098c493ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/208ef9eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/208ef9eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d6/208ef9eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/f00015ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/f00015ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/f00015ebab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40718393ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40718393ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/40718393ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/406e3beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/406e3beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/406e3beeab71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/70ea25eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/70ea25eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/70ea25eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/a074afe1ab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/a074afe1ab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..25f9bcb3d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/a074afe1ab71001a1f70833eb9ed7011 @@ -0,0 +1,810 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + /* + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + //Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + */ + { + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/b0b28891ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/b0b28891ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/da/b0b28891ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/101cd193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/101cd193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/101cd193ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/4073d693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/4073d693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/4073d693ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f030ff93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f030ff93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f030ff93ac71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f05eb091ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f05eb091ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/f05eb091ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/a08bf993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/a08bf993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/a08bf993ac71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a01145ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a01145ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/de/a01145ebab71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4036ebeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4036ebeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/4036ebeeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a01c46eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a01c46eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/a01c46eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/8070b293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/8070b293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/8070b293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90340febab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90340febab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90340febab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/f090e5eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/f090e5eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/f090e5eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/30bdd893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/30bdd893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/30bdd893ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e016deeeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e016deeeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e1/e016deeeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/009917ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/009917ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/009917ebab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/d0dd6794ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/d0dd6794ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/d0dd6794ac71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/106353eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/106353eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/106353eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/40701decab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/40701decab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/40701decab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/10d455eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/10d455eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/10d455eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/402b5beeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/402b5beeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/402b5beeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/8067e2efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/8067e2efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/8067e2efab71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/90d58a91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/90d58a91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e7/90d58a91ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/805d4794ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/805d4794ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/805d4794ac71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/909a63efab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/909a63efab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/909a63efab71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/b00066eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/b00066eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/b00066eeab71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/90bee6edab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/90bee6edab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/90bee6edab71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b005fdedab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b005fdedab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/b005fdedab71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70690094ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70690094ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/70690094ac71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e004f3ebab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e004f3ebab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e004f3ebab71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e0efa5eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e0efa5eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/e0efa5eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/20acf4eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/20acf4eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/20acf4eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/4008c9eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/4008c9eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/4008c9eeab71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f02db7eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f02db7eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/f02db7eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0bfd8eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0bfd8eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/b0bfd8eeab71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/50bd6893ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/50bd6893ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/50bd6893ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/f0479f91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/f0479f91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/f0479f91ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90e86693ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90e86693ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f1/90e86693ac71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50919993ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50919993ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f4/50919993ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/100e8c91ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/100e8c91ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/100e8c91ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/90b012eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/90b012eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f6/90b012eeab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/70aa8d93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/70aa8d93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/70aa8d93ac71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0803193ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0803193ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/b0803193ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/00381ef0ab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/00381ef0ab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/00381ef0ab71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9054d293ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9054d293ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/9054d293ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a03357eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a03357eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f8/a03357eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/30a90b93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/30a90b93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/30a90b93ac71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d08809eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d08809eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d08809eeab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d0dd63eeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d0dd63eeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fa/d0dd63eeab71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/e0ebffedab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/e0ebffedab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/e0ebffedab71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/300b4994ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/300b4994ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/300b4994ac71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/60c070ecab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/60c070ecab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/60c070ecab71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c03f6c93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c03f6c93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/c03f6c93ac71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/60094e93ac71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/60094e93ac71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/60094e93ac71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f0042ceeab71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f0042ceeab71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/f0042ceeab71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index index a1421bebc..dfb2fcbe2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index index 2d94195ec..8093e6421 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index index eb1863152..55089d454 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index index 739043c82..0c2cf4641 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index index a08673fc8..fabcea493 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index index da138bce0..f732aa4f8 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index index d0659ef9f..62c1063ee 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index index 05301a442..75fcb67e7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index index a435ad170..07a964c37 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index index cb71d3d92..8cb730e92 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index index 654a7efdd..a9bb85c2d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index index 6f81d3844..b4cf491ad 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index index 4e5deda48..9444d5abb 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index index 403a89583..bf2392d51 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index index 51526f8b3..0b99739c7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index index 220df3b01..1525bee99 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index index c7b9aab24..063be0028 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index index 7d55682d2..b6e422f46 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index index 48a471490..1eae7d38d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index index ac2ed8354..faee56b70 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index index 94e5781ae..72f1223fc 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index index 086abbf23..02be526ab 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index index 90e3d6e52..139901f3f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index index f3482c941..bd11504ac 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index index 6a568ba81..9bcebc70d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index index 95b440993..15ed99ce0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index index 912aa1af1..4b55de012 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index index 038657041..2d2b6feb5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index index 69fae0b04..1eab45a17 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index index 88adc091e..8603dd595 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index index 529db06ba..2bbc45970 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index index 9d2882267..0f803b0f1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index index 5986dd4b6..04bdb284e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index index 7c3d56641..2e637044f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index index 2d9e4cec3..3d474dd63 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index index 8d4b4a09b..d9ccd4dae 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index index 7d90386ef..3816e5025 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index index bb2910b9e..1573d7c38 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index index 48f34c645..0d3c94eff 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index index 3ae89772e..3c3208a27 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index index 819d95b2a..2993cff7f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index index 72af67760..3f6bd6e8b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index index 985513bf5..f28f92f7b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index index 29b4ecd27..24447699a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index index fd85f7e38..43f43ac6f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index index a102316bc..dd17bcffa 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index index 92173c6f5..091c6f447 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index index 479514c38..9ada74d06 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index index 7cb05645b..b8ef151dc 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index index 47946de79..2a0ac3ea4 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index index 097eb6abf..2ae394598 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index index 7b34b4653..a19d5539e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index index 774863f3e..56e4f7a68 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index index dc780b91f..7d59cdf24 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index index e7228dbf0..b7d0c8008 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index index e4296dbb6..a8ef4e8e1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index index 054c20d7f..7c1807fca 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index index cb25da445..89641a00d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index index cd986ac4c..1caeb46fe 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index index 1553ba713..41b2e94e1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index index 516df1909..c733e9517 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index index d89b762aa..74c48d6e2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index index 90621363d..baf186c8b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index index 531cf4aee..1ce7cfea7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index index 49ed2d4ea..8d81d023a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index index 7155518eb..efd198246 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index index cedcd3e9c..f523e47b3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index index 701baa431..6c41d392d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index index 7a0ed2378..ebe90f08e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index index 3815b3c96..954d84aa6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index index 614faadad..834677549 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index index e798f1ea7..3f6b78078 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index index 4efbecc44..3b74a5814 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index index b1efbde96..8fd95dccc 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index index 41bb5f7cb..c04c2d9d0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index index 5296a29ff..40dbf0a29 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index index 58e12b873..09c1368e3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index index 58f53858d..380dbcfb6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index index 99236c4ab..cfecac8d5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index index 2182e6662..5dcb7bd2f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index index ee56f3f33..f6fc6c1f5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index index 64bb90857..f82b3753b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index index 037aa9727..007c8eb3c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index index 1a17a7a9c..2ef6a7a34 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/91/c1/properties.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/91/c1/properties.index new file mode 100644 index 000000000..7f756210c Binary files /dev/null and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/d5/91/c1/properties.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap index 6f5ee61ae..107424499 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap index fd766bfd2..5ed84375f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.syncinfo.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap index fd766bfd2..5ed84375f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap index fd766bfd2..5ed84375f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/RemoteSystemsTempFiles/.syncinfo.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap index fd766bfd2..5ed84375f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/.root/.markers.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources b/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources index dd8e5a9f2..dea48629b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources and b/Software/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap b/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap index 7fcdee9a7..d10b960b0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap and b/Software/.metadata/.plugins/org.eclipse.core.resources/54.snap differ diff --git a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi index b5bee5ea9..866a4d44c 100644 --- a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,10 +1,10 @@ - - + + activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration ModelMigrationProcessor.001 activeSchemeId:com.ti.ccstudio.ui.keyBindingScheme - + @@ -13,9 +13,9 @@ topLevel shellMaximized - - - + + + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -65,72 +65,72 @@ persp.newWizSC:org.eclipse.rtsc.builddefinitions.dspbios.ui.DSPBIOSCreateNew persp.newWizSC:org.eclipse.rtsc.xdctools.ui.cdt.wizards.configfile.RTSCConfigFileWizard persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - - + + + + - - + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - + + + + + - - + + - - - + + + - + General C/C++ Team - - - - - - - - - + + + + + + + + + - + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -177,48 +177,48 @@ persp.actionSet:com.ti.dvt.rovsupport persp.actionSet:com.ti.dvt.via.plugin.ActionSet persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - + + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - + + + - + Analysis Views - + @@ -227,7889 +227,7980 @@ - - - - + + + + - + View categoryTag:Help - + View categoryTag:General - + ViewMenu menuContribution:menu - + - + View categoryTag:Help - - - + + + active - noFocus - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide active - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.ui.cmdFileEditor removeOnHide - + menuContribution:popup popup:#ASMEditorContext popup:com.ti.ccstudio.ui.cmdFileEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#ASMEditorRulerContext popup:com.ti.ccstudio.ui.cmdFileEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.ui.DefaultTextEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide activeOnClose - + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + + menuContribution:popup + popup:#OverviewRulerContext + + + + + Editor + org.eclipse.cdt.ui.editor.CEditor + removeOnHide + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + + menuContribution:popup + popup:#OverviewRulerContext + + + + + Editor + org.eclipse.cdt.ui.editor.CEditor + removeOnHide + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + org.eclipse.e4.primaryDataStack EditorStack - - - + + + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.ui.MessageConsole.#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + - + View categoryTag:Code Composer Studio - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + - + View categoryTag:Debug - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:Grace - + View categoryTag:RTSC - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:General highlighted - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + - + View categoryTag:Other - + ViewMenu menuContribution:menu - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.callHierarchy - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + - + View categoryTag:Analysis Views - + ViewMenu menuContribution:menu - + - + View categoryTag:Team - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.team.ui.GenericHistoryView - + - - + + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Draggable - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Draggable - + Draggable - + toolbarSeparator - + - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + stretch SHOW_RESTORE_MENU - + Draggable HIDEABLE SHOW_RESTORE_MENU - - + + stretch - + Draggable - + Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Editor - + View categoryTag:C/C++ - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Make - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:Connections - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Team - + View categoryTag:Team - + View categoryTag:Terminal - + View categoryTag:Other - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:General - + View categoryTag:DVT - + View categoryTag:Analysis Views - + View categoryTag:DVT - + View categoryTag:EnergyTrace - + View categoryTag:Analysis Views - + View categoryTag:Profiling - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:UIA - + View categoryTag:Grace - + View categoryTag:Other - + View categoryTag:RTSC - + View categoryTag:RTSC - + View categoryTag:RTSC - - - - - + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - + + + - - - + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c index 25f9bcb3d..0eb5a1158 100644 --- a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c +++ b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c @@ -475,10 +475,13 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) //Head_Write_IO_Reg(Script_Slave_Add, HIGH); } */ + if(Write_Buf[0] >=0xF0) // write { // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 Write_Buf[1] = Write_Buf[1] & 0x01; + Write_Buf[0] &=0x0f; + if(Script_Slave_Add == 0x40) { if(Write_Buf[1] == 0x01) -- cgit v1.3.1 From 2980ba8d1a13f68fef90c40e3a2814cc4db7bc58 Mon Sep 17 00:00:00 2001 From: Avi Levkovich Date: Sun, 29 Mar 2020 16:10:01 +0300 Subject: update head i/o script --- .../Embedded.1560423654045.pdom | Bin 17899520 -> 17948672 bytes .../.history/1/50347878be71001a1f70833eb9ed7011 | 26 + .../.history/1/a00c3778be71001a1f70833eb9ed7011 | 26 + .../.history/10/50bf8107be71001a1f70833eb9ed7011 | 36 + .../.history/11/e0a74679be71001a1f70833eb9ed7011 | 56 + .../.history/12/000fec06be71001a1f70833eb9ed7011 | 22 + .../.history/12/3055d907be71001a1f70833eb9ed7011 | 50 + .../.history/14/3087ef78be71001a1f70833eb9ed7011 | 57 + .../.history/14/80366405be71001a1f70833eb9ed7011 | 29 + .../.history/14/d0355b05be71001a1f70833eb9ed7011 | 15 + .../.history/16/10e83a79be71001a1f70833eb9ed7011 | 43 + .../.history/16/70452077be71001a1f70833eb9ed7011 | 85 + .../.history/17/70a75d78be71001a1f70833eb9ed7011 | 15 + .../.history/18/10aed806be71001a1f70833eb9ed7011 | 15 + .../.history/18/708a0507be71001a1f70833eb9ed7011 | 22 + .../.history/19/70aa5307be71001a1f70833eb9ed7011 | 15 + .../.history/19/90af3979be71001a1f70833eb9ed7011 | 50 + .../.history/1a/7063cd06be71001a1f70833eb9ed7011 | 15 + .../.history/1b/803e6f79be71001a1f70833eb9ed7011 | 43 + .../.history/1d/b0055605be71001a1f70833eb9ed7011 | 32 + .../.history/1e/90212d78be71001a1f70833eb9ed7011 | 38 + .../.history/1e/90cbe178be71001a1f70833eb9ed7011 | 26 + .../.history/1f/b0d98605be71001a1f70833eb9ed7011 | 62 + .../.history/1f/e0b17478be71001a1f70833eb9ed7011 | 26 + .../.history/20/50a57a78be71001a1f70833eb9ed7011 | 15 + .../.history/20/50c41807be71001a1f70833eb9ed7011 | 22 + .../.history/20/8083e306be71001a1f70833eb9ed7011 | 26 + .../.history/20/f0be1f79be71001a1f70833eb9ed7011 | 26 + .../.history/21/202be378be71001a1f70833eb9ed7011 | 15 + .../.history/21/40b17405be71001a1f70833eb9ed7011 | 29 + .../.history/21/5008a978be71001a1f70833eb9ed7011 | 32 + .../.history/21/50df1d78be71001a1f70833eb9ed7011 | 722 +++ .../.history/22/10f10677be71001a1f70833eb9ed7011 | 29 + .../.history/22/c0d94e05be71001a1f70833eb9ed7011 | 58 + .../.history/23/e04a5207be71001a1f70833eb9ed7011 | 26 + .../.history/23/e0bab178be71001a1f70833eb9ed7011 | 32 + .../.history/25/204b3179be71001a1f70833eb9ed7011 | 44 + .../.history/27/60096277be71001a1f70833eb9ed7011 | 62 + .../.history/28/00e4cc78be71001a1f70833eb9ed7011 | 32 + .../.history/29/f0de6d79be71001a1f70833eb9ed7011 | 50 + .../.history/2b/20453878be71001a1f70833eb9ed7011 | 15 + .../.history/2b/70bd0c77be71001a1f70833eb9ed7011 | 36 + .../.history/2c/40840277be71001a1f70833eb9ed7011 | 29 + .../.history/2c/c097d006be71001a1f70833eb9ed7011 | 38 + .../.history/2d/90c8de06be71001a1f70833eb9ed7011 | 15 + .../.history/2d/e0a87805be71001a1f70833eb9ed7011 | 38 + .../.history/2e/10f17779be71001a1f70833eb9ed7011 | 32 + .../.history/2e/a02a7305be71001a1f70833eb9ed7011 | 38 + .../.history/2f/00182907be71001a1f70833eb9ed7011 | 26 + .../.history/2f/5011e678be71001a1f70833eb9ed7011 | 15 + .../.history/3/10e3e406be71001a1f70833eb9ed7011 | 15 + .../.history/30/0083f178be71001a1f70833eb9ed7011 | 26 + .../.history/30/20ebf807be71001a1f70833eb9ed7011 | 866 ++++ .../.history/30/505ea607be71001a1f70833eb9ed7011 | 36 + .../.history/31/a0118007be71001a1f70833eb9ed7011 | 44 + .../.history/32/6074dc78be71001a1f70833eb9ed7011 | 15 + .../.history/33/10acd376be71001a1f70833eb9ed7011 | 26 + .../.history/33/606e9507be71001a1f70833eb9ed7011 | 36 + .../.history/33/60ac6d05be71001a1f70833eb9ed7011 | 26 + .../.history/35/80853607be71001a1f70833eb9ed7011 | 22 + .../.history/35/b0eff476be71001a1f70833eb9ed7011 | 50 + .../.history/35/f07d9279be71001a1f70833eb9ed7011 | 866 ++++ .../.history/36/40fbaf07be71001a1f70833eb9ed7011 | 56 + .../.history/36/508c5705be71001a1f70833eb9ed7011 | 22 + .../.history/36/70e39405be71001a1f70833eb9ed7011 | 85 + .../.history/37/a0adae78be71001a1f70833eb9ed7011 | 22 + .../.history/38/00336f05be71001a1f70833eb9ed7011 | 15 + .../.history/3a/70014f78be71001a1f70833eb9ed7011 | 50 + .../.history/3a/70146c07be71001a1f70833eb9ed7011 | 26 + .../.history/3a/b0358a78be71001a1f70833eb9ed7011 | 15 + .../.history/3a/d014db78be71001a1f70833eb9ed7011 | 26 + .../.history/3b/1013a877be71001a1f70833eb9ed7011 | 183 + .../.history/3b/50f32b06be71001a1f70833eb9ed7011 | 183 + .../.history/3b/60878805be71001a1f70833eb9ed7011 | 57 + .../.history/3b/b0080b07be71001a1f70833eb9ed7011 | 22 + .../.history/3d/7027d706be71001a1f70833eb9ed7011 | 26 + .../.history/3d/f0150e07be71001a1f70833eb9ed7011 | 15 + .../.history/3e/d0d29d07be71001a1f70833eb9ed7011 | 50 + .../.history/3f/f0c3b678be71001a1f70833eb9ed7011 | 22 + .../.history/4/109b6d07be71001a1f70833eb9ed7011 | 15 + .../.history/4/20633378be71001a1f70833eb9ed7011 | 38 + .../.history/4/d00c4107be71001a1f70833eb9ed7011 | 26 + .../.history/4/d0de1e07be71001a1f70833eb9ed7011 | 32 + .../.history/40/00113f07be71001a1f70833eb9ed7011 | 15 + .../.history/40/b01cd807be71001a1f70833eb9ed7011 | 56 + .../.history/40/d0e3b506be71001a1f70833eb9ed7011 | 15 + .../.history/41/403f4079be71001a1f70833eb9ed7011 | 36 + .../.history/41/f0326678be71001a1f70833eb9ed7011 | 15 + .../.history/42/6088ea06be71001a1f70833eb9ed7011 | 32 + .../.history/43/00fa2d07be71001a1f70833eb9ed7011 | 22 + .../.history/43/70fa6478be71001a1f70833eb9ed7011 | 26 + .../.history/44/00080207be71001a1f70833eb9ed7011 | 15 + .../.history/45/80567178be71001a1f70833eb9ed7011 | 26 + .../.history/45/d0ae6879be71001a1f70833eb9ed7011 | 50 + .../.history/46/10bcac06be71001a1f70833eb9ed7011 | 38 + .../.history/46/4084b406be71001a1f70833eb9ed7011 | 26 + .../.history/46/60976e78be71001a1f70833eb9ed7011 | 32 + .../.history/46/e0cf6f78be71001a1f70833eb9ed7011 | 22 + .../.history/47/806be107be71001a1f70833eb9ed7011 | 38 + .../.history/48/60660879be71001a1f70833eb9ed7011 | 15 + .../.history/48/70dd0c07be71001a1f70833eb9ed7011 | 26 + .../.history/48/c057f378be71001a1f70833eb9ed7011 | 15 + .../.history/48/e0211577be71001a1f70833eb9ed7011 | 57 + .../.history/49/0027ad78be71001a1f70833eb9ed7011 | 32 + .../.history/49/303a2207be71001a1f70833eb9ed7011 | 32 + .../.history/49/90b06b05be71001a1f70833eb9ed7011 | 43 + .../.history/49/b00b0e79be71001a1f70833eb9ed7011 | 32 + .../.history/49/b052d506be71001a1f70833eb9ed7011 | 15 + .../.history/49/e08d8077be71001a1f70833eb9ed7011 | 162 + .../.history/4a/b0240177be71001a1f70833eb9ed7011 | 38 + .../.history/4d/30a82e78be71001a1f70833eb9ed7011 | 29 + .../.history/4d/50c50906be71001a1f70833eb9ed7011 | 57 + .../.history/4d/d0dfce78be71001a1f70833eb9ed7011 | 22 + .../.history/4f/0086e707be71001a1f70833eb9ed7011 | 22 + .../.history/4f/e0af6205be71001a1f70833eb9ed7011 | 38 + .../.history/50/20a90907be71001a1f70833eb9ed7011 | 32 + .../.history/53/00216607be71001a1f70833eb9ed7011 | 22 + .../.history/53/a0e9a478be71001a1f70833eb9ed7011 | 26 + .../.history/53/e073dd07be71001a1f70833eb9ed7011 | 50 + .../.history/54/d0d73407be71001a1f70833eb9ed7011 | 32 + .../.history/55/f00fd478be71001a1f70833eb9ed7011 | 15 + .../.history/56/1052e276be71001a1f70833eb9ed7011 | 38 + .../.history/56/1090dd06be71001a1f70833eb9ed7011 | 26 + .../.history/56/e0a9da06be71001a1f70833eb9ed7011 | 26 + .../.history/57/60f25077be71001a1f70833eb9ed7011 | 410 ++ .../.history/58/20a31006be71001a1f70833eb9ed7011 | 43 + .../.history/58/400ac376be71001a1f70833eb9ed7011 | 211 + .../.history/58/40d65905be71001a1f70833eb9ed7011 | 26 + .../.history/58/5054c678be71001a1f70833eb9ed7011 | 22 + .../.history/58/704e5d77be71001a1f70833eb9ed7011 | 106 + .../.history/58/e046fa76be71001a1f70833eb9ed7011 | 26 + .../.history/5b/008f7278be71001a1f70833eb9ed7011 | 15 + .../.history/5b/60dd4407be71001a1f70833eb9ed7011 | 26 + .../.history/5b/b0076878be71001a1f70833eb9ed7011 | 26 + .../.history/5c/c087f776be71001a1f70833eb9ed7011 | 43 + .../.history/5d/80910577be71001a1f70833eb9ed7011 | 38 + .../.history/5d/d04f6f77be71001a1f70833eb9ed7011 | 146 + .../.history/5d/e0ed6a78be71001a1f70833eb9ed7011 | 26 + .../.history/5e/30868d77be71001a1f70833eb9ed7011 | 50 + .../.history/5e/50b94779be71001a1f70833eb9ed7011 | 50 + .../.history/6/900ace07be71001a1f70833eb9ed7011 | 188 + .../.history/61/e0f74a07be71001a1f70833eb9ed7011 | 15 + .../.history/63/10fba578be71001a1f70833eb9ed7011 | 15 + .../.history/63/608a3d07be71001a1f70833eb9ed7011 | 26 + .../.history/63/a0dbd078be71001a1f70833eb9ed7011 | 26 + .../.history/64/604cf406be71001a1f70833eb9ed7011 | 26 + .../.history/65/00d0b107be71001a1f70833eb9ed7011 | 50 + .../.history/65/90c64a79be71001a1f70833eb9ed7011 | 15 + .../.history/65/90f16907be71001a1f70833eb9ed7011 | 15 + .../.history/65/d090ae06be71001a1f70833eb9ed7011 | 29 + .../.history/66/30406978be71001a1f70833eb9ed7011 | 15 + .../.history/66/304e3d78be71001a1f70833eb9ed7011 | 26 + .../.history/66/3070de78be71001a1f70833eb9ed7011 | 26 + .../.history/66/60869706be71001a1f70833eb9ed7011 | 632 +++ .../.history/66/70934207be71001a1f70833eb9ed7011 | 15 + .../.history/67/40146278be71001a1f70833eb9ed7011 | 26 + .../.history/67/6092d778be71001a1f70833eb9ed7011 | 26 + .../.history/67/c0ad3e78be71001a1f70833eb9ed7011 | 15 + .../.history/69/006e3379be71001a1f70833eb9ed7011 | 36 + .../.history/69/b0037407be71001a1f70833eb9ed7011 | 32 + .../.history/69/f08eaa78be71001a1f70833eb9ed7011 | 22 + .../.history/6a/60193b07be71001a1f70833eb9ed7011 | 22 + .../.history/6d/6036d405be71001a1f70833eb9ed7011 | 104 + .../.history/6e/609a6407be71001a1f70833eb9ed7011 | 32 + .../.history/6f/20f77907be71001a1f70833eb9ed7011 | 15 + .../.history/6f/c024c976be71001a1f70833eb9ed7011 | 36 + .../.history/7/60942a79be71001a1f70833eb9ed7011 | 44 + .../.history/7/907cc106be71001a1f70833eb9ed7011 | 15 + .../.history/7/e02a0407be71001a1f70833eb9ed7011 | 32 + .../.history/70/4054fe78be71001a1f70833eb9ed7011 | 26 + .../.history/72/70c00206be71001a1f70833eb9ed7011 | 162 + .../.history/72/c0992307be71001a1f70833eb9ed7011 | 22 + .../.history/73/601ccd76be71001a1f70833eb9ed7011 | 32 + .../.history/74/70b0db05be71001a1f70833eb9ed7011 | 62 + .../.history/74/70c4a806be71001a1f70833eb9ed7011 | 29 + .../.history/74/801d7107be71001a1f70833eb9ed7011 | 15 + .../.history/74/d0c75b77be71001a1f70833eb9ed7011 | 104 + .../.history/74/d0d8e478be71001a1f70833eb9ed7011 | 26 + .../.history/76/30274605be71001a1f70833eb9ed7011 | 211 + .../.history/77/202fca06be71001a1f70833eb9ed7011 | 50 + .../.history/77/e003cc06be71001a1f70833eb9ed7011 | 26 + .../.history/78/d05b6179be71001a1f70833eb9ed7011 | 204 + .../.history/78/f0292978be71001a1f70833eb9ed7011 | 57 + .../.history/79/40a65507be71001a1f70833eb9ed7011 | 26 + .../.history/79/e05d0b77be71001a1f70833eb9ed7011 | 44 + .../.history/79/f06e5c78be71001a1f70833eb9ed7011 | 26 + .../.history/79/f0870106be71001a1f70833eb9ed7011 | 152 + .../.history/7a/70d0e878be71001a1f70833eb9ed7011 | 15 + .../.history/7a/c0315e07be71001a1f70833eb9ed7011 | 57 + .../.history/7b/80cdfb76be71001a1f70833eb9ed7011 | 15 + .../.history/7b/f097e778be71001a1f70833eb9ed7011 | 26 + .../.history/7c/00a3ce76be71001a1f70833eb9ed7011 | 22 + .../.history/7c/d001b106be71001a1f70833eb9ed7011 | 26 + .../.history/7d/3089d176be71001a1f70833eb9ed7011 | 15 + .../.history/7d/b00e9305be71001a1f70833eb9ed7011 | 86 + .../.history/7d/f0bd6f07be71001a1f70833eb9ed7011 | 26 + .../.history/7e/80a8c806be71001a1f70833eb9ed7011 | 56 + .../.history/7f/102e5f78be71001a1f70833eb9ed7011 | 26 + .../.history/7f/f0754678be71001a1f70833eb9ed7011 | 26 + .../.history/8/70debc78be71001a1f70833eb9ed7011 | 26 + .../.history/8/808b7d78be71001a1f70833eb9ed7011 | 26 + .../.history/81/c04b7279be71001a1f70833eb9ed7011 | 38 + .../.history/82/f00c1f77be71001a1f70833eb9ed7011 | 86 + .../.history/83/10af8878be71001a1f70833eb9ed7011 | 26 + .../.history/84/80f68677be71001a1f70833eb9ed7011 | 62 + .../.history/84/c0e3ed06be71001a1f70833eb9ed7011 | 26 + .../.history/85/c0ffe376be71001a1f70833eb9ed7011 | 29 + .../.history/86/20b3f678be71001a1f70833eb9ed7011 | 32 + .../.history/87/60227807be71001a1f70833eb9ed7011 | 26 + .../.history/87/60348105be71001a1f70833eb9ed7011 | 36 + .../.history/87/b009bb78be71001a1f70833eb9ed7011 | 22 + .../.history/88/7009dc06be71001a1f70833eb9ed7011 | 15 + .../.history/88/70117678be71001a1f70833eb9ed7011 | 15 + .../.history/88/c090e606be71001a1f70833eb9ed7011 | 26 + .../.history/89/00f1f006be71001a1f70833eb9ed7011 | 26 + .../.history/8c/00afc078be71001a1f70833eb9ed7011 | 32 + .../.history/8c/10422c79be71001a1f70833eb9ed7011 | 36 + .../.history/8c/304a4907be71001a1f70833eb9ed7011 | 26 + .../.history/8c/d01a6377be71001a1f70833eb9ed7011 | 57 + .../.history/8f/9030a406be71001a1f70833eb9ed7011 | 57 + .../.history/9/409b1377be71001a1f70833eb9ed7011 | 62 + .../.history/91/007b5707be71001a1f70833eb9ed7011 | 15 + .../.history/91/3077c878be71001a1f70833eb9ed7011 | 32 + .../.history/92/304fe006be71001a1f70833eb9ed7011 | 26 + .../.history/92/e04b0279be71001a1f70833eb9ed7011 | 26 + .../.history/93/802f7a05be71001a1f70833eb9ed7011 | 29 + .../.history/97/301c2707be71001a1f70833eb9ed7011 | 22 + .../.history/97/a0315d05be71001a1f70833eb9ed7011 | 26 + .../.history/98/90b8b706be71001a1f70833eb9ed7011 | 26 + .../.history/9a/b06c2a06be71001a1f70833eb9ed7011 | 170 + .../.history/9a/f0fd5978be71001a1f70833eb9ed7011 | 26 + .../.history/9b/6031fc78be71001a1f70833eb9ed7011 | 15 + .../.history/9b/b0932179be71001a1f70833eb9ed7011 | 15 + .../.history/9c/b050d076be71001a1f70833eb9ed7011 | 26 + .../.history/9c/b0a8df78be71001a1f70833eb9ed7011 | 15 + .../.history/9c/b0d7a407be71001a1f70833eb9ed7011 | 44 + .../.history/9d/4048be06be71001a1f70833eb9ed7011 | 29 + .../.history/a/909abc06be71001a1f70833eb9ed7011 | 38 + .../.history/a0/b0df3e79be71001a1f70833eb9ed7011 | 44 + .../.history/a0/f0f5bf06be71001a1f70833eb9ed7011 | 26 + .../.history/a1/d017d107be71001a1f70833eb9ed7011 | 204 + .../.history/a3/604a6079be71001a1f70833eb9ed7011 | 188 + .../.history/a3/7088b206be71001a1f70833eb9ed7011 | 15 + .../.history/a3/e064a706be71001a1f70833eb9ed7011 | 38 + .../.history/a6/40c2fd06be71001a1f70833eb9ed7011 | 44 + .../.history/a7/303fb906be71001a1f70833eb9ed7011 | 15 + .../.history/aa/00795277be71001a1f70833eb9ed7011 | 463 ++ .../.history/ab/40a99906be71001a1f70833eb9ed7011 | 722 +++ .../.history/ab/502b3b78be71001a1f70833eb9ed7011 | 15 + .../.history/ab/90267607be71001a1f70833eb9ed7011 | 22 + .../.history/ac/40b85e05be71001a1f70833eb9ed7011 | 15 + .../.history/ad/200bd605be71001a1f70833eb9ed7011 | 106 + .../.history/af/a0ebf778be71001a1f70833eb9ed7011 | 22 + .../.history/b/10ccd306be71001a1f70833eb9ed7011 | 26 + .../.history/b/2065c705be71001a1f70833eb9ed7011 | 410 ++ .../.history/b/60acde07be71001a1f70833eb9ed7011 | 43 + .../.history/b/c0f4c478be71001a1f70833eb9ed7011 | 32 + .../.history/b0/20658678be71001a1f70833eb9ed7011 | 36 + .../.history/b0/e0184979be71001a1f70833eb9ed7011 | 26 + .../.history/b1/e0941c07be71001a1f70833eb9ed7011 | 22 + .../.history/b2/3067a178be71001a1f70833eb9ed7011 | 32 + .../.history/b2/90ef1607be71001a1f70833eb9ed7011 | 32 + .../.history/b2/d0663207be71001a1f70833eb9ed7011 | 22 + .../.history/b3/40471b78be71001a1f70833eb9ed7011 | 632 +++ .../.history/b4/90666078be71001a1f70833eb9ed7011 | 15 + .../.history/b5/70b78478be71001a1f70833eb9ed7011 | 44 + .../.history/b6/c0923907be71001a1f70833eb9ed7011 | 32 + .../.history/b7/60ca2778be71001a1f70833eb9ed7011 | 62 + .../.history/b8/d0414d07be71001a1f70833eb9ed7011 | 26 + .../.history/b9/40ac9c78be71001a1f70833eb9ed7011 | 32 + .../.history/ba/40607f78be71001a1f70833eb9ed7011 | 15 + .../.history/bb/1040d978be71001a1f70833eb9ed7011 | 15 + .../.history/bb/b03e0806be71001a1f70833eb9ed7011 | 62 + .../.history/bc/50f0e706be71001a1f70833eb9ed7011 | 15 + .../.history/bc/c0e58e77be71001a1f70833eb9ed7011 | 43 + .../.history/c/d0eda278be71001a1f70833eb9ed7011 | 22 + .../.history/c0/f0a9a206be71001a1f70833eb9ed7011 | 62 + .../.history/c2/80cf0007be71001a1f70833eb9ed7011 | 26 + .../.history/c2/80d9ed78be71001a1f70833eb9ed7011 | 62 + .../.history/c5/0041b407be71001a1f70833eb9ed7011 | 26 + .../.history/c5/50ab7379be71001a1f70833eb9ed7011 | 29 + .../.history/c5/6011ef05be71001a1f70833eb9ed7011 | 155 + .../.history/c6/30c48807be71001a1f70833eb9ed7011 | 44 + .../.history/c6/600f5b78be71001a1f70833eb9ed7011 | 15 + .../.history/c6/f0005007be71001a1f70833eb9ed7011 | 15 + .../.history/c7/40db6107be71001a1f70833eb9ed7011 | 15 + .../.history/c8/003ebe78be71001a1f70833eb9ed7011 | 15 + .../.history/c9/d0cef706be71001a1f70833eb9ed7011 | 26 + .../.history/cb/30e03007be71001a1f70833eb9ed7011 | 32 + .../.history/cb/f0599e78be71001a1f70833eb9ed7011 | 22 + .../.history/cd/5043ef06be71001a1f70833eb9ed7011 | 15 + .../.history/d0/60266c78be71001a1f70833eb9ed7011 | 15 + .../.history/d1/c0355278be71001a1f70833eb9ed7011 | 15 + .../.history/d2/a0234878be71001a1f70833eb9ed7011 | 15 + .../.history/d2/d0103578be71001a1f70833eb9ed7011 | 29 + .../.history/d4/70d67077be71001a1f70833eb9ed7011 | 155 + .../.history/d4/90a79f07be71001a1f70833eb9ed7011 | 43 + .../.history/d7/50351b07be71001a1f70833eb9ed7011 | 32 + .../.history/d8/30c5c776be71001a1f70833eb9ed7011 | 58 + .../.history/d8/709a2c07be71001a1f70833eb9ed7011 | 32 + .../.history/d8/80b2b578be71001a1f70833eb9ed7011 | 32 + .../.history/d9/e0436807be71001a1f70833eb9ed7011 | 26 + .../.history/db/20f2e207be71001a1f70833eb9ed7011 | 29 + .../.history/dc/603e2007be71001a1f70833eb9ed7011 | 22 + .../.history/dc/80502a07be71001a1f70833eb9ed7011 | 15 + .../.history/dc/90a0b507be71001a1f70833eb9ed7011 | 15 + .../.history/dc/e0026a05be71001a1f70833eb9ed7011 | 50 + .../.history/dd/e0a14d78be71001a1f70833eb9ed7011 | 56 + .../.history/df/40fd5078be71001a1f70833eb9ed7011 | 26 + .../.history/df/b063ed05be71001a1f70833eb9ed7011 | 146 + .../.history/e/601ed206be71001a1f70833eb9ed7011 | 29 + .../.history/e/90a3f906be71001a1f70833eb9ed7011 | 15 + .../.history/e0/20aab978be71001a1f70833eb9ed7011 | 32 + .../.history/e2/f0010079be71001a1f70833eb9ed7011 | 15 + .../.history/e4/8041b378be71001a1f70833eb9ed7011 | 22 + .../.history/e5/00d3f506be71001a1f70833eb9ed7011 | 15 + .../.history/e5/b05cc278be71001a1f70833eb9ed7011 | 22 + .../.history/e6/c036a2ffbd71001a1f70833eb9ed7011 | 813 +++ .../.history/e8/40125005be71001a1f70833eb9ed7011 | 36 + .../.history/e8/d021ff06be71001a1f70833eb9ed7011 | 36 + .../.history/e8/d0736378be71001a1f70833eb9ed7011 | 15 + .../.history/e8/f0137a79be71001a1f70833eb9ed7011 | 22 + .../.history/e9/404f6779be71001a1f70833eb9ed7011 | 56 + .../.history/e9/f04bca78be71001a1f70833eb9ed7011 | 22 + .../.history/eb/604e4707be71001a1f70833eb9ed7011 | 15 + .../.history/ec/d0f23978be71001a1f70833eb9ed7011 | 26 + .../.history/ed/6065a677be71001a1f70833eb9ed7011 | 170 + .../.history/ee/30971679be71001a1f70833eb9ed7011 | 22 + .../.history/ef/90430f06be71001a1f70833eb9ed7011 | 50 + .../.history/ef/e0fce106be71001a1f70833eb9ed7011 | 15 + .../.history/f/807b5678be71001a1f70833eb9ed7011 | 38 + .../.history/f0/002c4478be71001a1f70833eb9ed7011 | 29 + .../.history/f3/f0e8dc05be71001a1f70833eb9ed7011 | 57 + .../.history/f7/7026e607be71001a1f70833eb9ed7011 | 32 + .../.history/f9/10927e77be71001a1f70833eb9ed7011 | 152 + .../.history/f9/80f34278be71001a1f70833eb9ed7011 | 38 + .../.history/f9/f060c905be71001a1f70833eb9ed7011 | 463 ++ .../.history/fb/10db5778be71001a1f70833eb9ed7011 | 29 + .../.history/fb/20ab5c07be71001a1f70833eb9ed7011 | 62 + .../.history/fb/a05f7f05be71001a1f70833eb9ed7011 | 44 + .../.history/fc/70408977be71001a1f70833eb9ed7011 | 57 + .../.history/fc/b032d576be71001a1f70833eb9ed7011 | 15 + .../.history/fd/9035fa78be71001a1f70833eb9ed7011 | 26 + .../.history/fe/9050f206be71001a1f70833eb9ed7011 | 15 + .../.history/fe/a0546007be71001a1f70833eb9ed7011 | 26 + .../.history/ff/b0e32507be71001a1f70833eb9ed7011 | 32 + .../Embedded/.indexes/33/4a/f5/26/history.index | Bin 3122 -> 3218 bytes .../Embedded/.indexes/33/4a/f5/34/history.index | Bin 3154 -> 3250 bytes .../Embedded/.indexes/33/4a/f5/3f/history.index | Bin 3148 -> 3244 bytes .../Embedded/.indexes/33/4a/f5/65/history.index | Bin 3128 -> 3224 bytes .../Embedded/.indexes/33/4a/f5/8/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/4a/f5/8c/history.index | Bin 3140 -> 3236 bytes .../Embedded/.indexes/33/4a/f5/b/history.index | Bin 3130 -> 3226 bytes .../Embedded/.indexes/33/4a/f5/b2/history.index | Bin 3144 -> 3240 bytes .../Embedded/.indexes/33/4a/f5/cb/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/4a/f5/ce/history.index | Bin 3136 -> 3232 bytes .../Embedded/.indexes/33/4a/f5/e5/history.index | Bin 3128 -> 3224 bytes .../Embedded/.indexes/33/4a/f5/f9/history.index | Bin 3144 -> 3240 bytes .../Embedded/.indexes/33/4a/f5/fe/history.index | Bin 3138 -> 3234 bytes .../Embedded/.indexes/33/4a/history.index | Bin 3108 -> 3204 bytes .../Embedded/.indexes/33/99/36/history.index | Bin 3124 -> 3220 bytes .../Embedded/.indexes/33/99/50/history.index | Bin 3124 -> 3220 bytes .../Embedded/.indexes/33/99/8c/history.index | Bin 3120 -> 3216 bytes .../Embedded/.indexes/33/99/98/history.index | Bin 3104 -> 3200 bytes .../Embedded/.indexes/33/99/aa/history.index | Bin 3112 -> 3208 bytes .../Embedded/.indexes/33/99/c3/history.index | Bin 3112 -> 3208 bytes .../Embedded/.indexes/33/99/c8/history.index | Bin 3112 -> 3208 bytes .../Embedded/.indexes/33/99/d6/history.index | Bin 6209 -> 6401 bytes .../Embedded/.indexes/33/99/fa/history.index | Bin 3108 -> 3204 bytes .../Embedded/.indexes/33/9d/c0/history.index | Bin 3138 -> 3234 bytes .../Embedded/.indexes/33/9d/cb/history.index | Bin 3126 -> 3222 bytes .../Embedded/.indexes/33/b/16/history.index | Bin 3114 -> 3210 bytes .../Embedded/.indexes/33/b/37/history.index | Bin 3110 -> 3206 bytes .../Embedded/.indexes/33/b/4a/history.index | Bin 3130 -> 3226 bytes .../Embedded/.indexes/33/b/4d/history.index | Bin 3112 -> 3208 bytes .../Embedded/.indexes/33/b/5f/history.index | Bin 3116 -> 3212 bytes .../Embedded/.indexes/33/b/c4/history.index | Bin 3120 -> 3216 bytes .../Embedded/.indexes/33/b/cc/history.index | Bin 3108 -> 3204 bytes .../Embedded/.indexes/33/d5/1a/history.index | Bin 3122 -> 3218 bytes .../Embedded/.indexes/33/d5/23/a2/51/history.index | Bin 1606 -> 1702 bytes .../Embedded/.indexes/33/d5/23/a2/65/history.index | Bin 2862 -> 2958 bytes .../Embedded/.indexes/33/d5/23/a2/73/history.index | Bin 2850 -> 2946 bytes .../Embedded/.indexes/33/d5/23/a2/history.index | Bin 3130 -> 3226 bytes .../Embedded/.indexes/33/d5/23/b5/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/d5/23/history.index | Bin 3116 -> 3212 bytes .../Embedded/.indexes/33/d5/24/6b/history.index | Bin 3138 -> 3234 bytes .../Embedded/.indexes/33/d5/24/a/history.index | Bin 3126 -> 3222 bytes .../Embedded/.indexes/33/d5/24/de/b8/history.index | Bin 3138 -> 3234 bytes .../Embedded/.indexes/33/d5/24/de/history.index | Bin 3124 -> 3220 bytes .../Embedded/.indexes/33/d5/24/e9/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/d5/24/history.index | Bin 3106 -> 3202 bytes .../Embedded/.indexes/33/d5/42/history.index | Bin 3110 -> 3206 bytes .../Embedded/.indexes/33/d5/43/history.index | Bin 3110 -> 3206 bytes .../Embedded/.indexes/33/d5/70/86/history.index | Bin 3134 -> 3230 bytes .../Embedded/.indexes/33/d5/70/history.index | Bin 3122 -> 3218 bytes .../Embedded/.indexes/33/d5/83/history.index | Bin 3124 -> 3220 bytes .../Embedded/.indexes/33/d5/8c/history.index | Bin 3104 -> 3200 bytes .../Embedded/.indexes/33/d5/91/53/0/history.index | Bin 3164 -> 3260 bytes .../Embedded/.indexes/33/d5/91/53/29/history.index | Bin 3178 -> 3274 bytes .../Embedded/.indexes/33/d5/91/53/51/history.index | Bin 3180 -> 3276 bytes .../Embedded/.indexes/33/d5/91/53/7e/history.index | Bin 3202 -> 3298 bytes .../Embedded/.indexes/33/d5/91/53/87/history.index | Bin 3186 -> 3282 bytes .../Embedded/.indexes/33/d5/91/53/94/history.index | Bin 3192 -> 3288 bytes .../Embedded/.indexes/33/d5/91/53/96/history.index | Bin 3180 -> 3276 bytes .../Embedded/.indexes/33/d5/91/53/bd/history.index | Bin 3186 -> 3282 bytes .../Embedded/.indexes/33/d5/91/53/history.index | Bin 3150 -> 3246 bytes .../Embedded/.indexes/33/d5/91/66/0/history.index | Bin 3176 -> 3272 bytes .../Embedded/.indexes/33/d5/91/66/67/history.index | Bin 3180 -> 3276 bytes .../Embedded/.indexes/33/d5/91/66/history.index | Bin 6297 -> 6489 bytes .../Embedded/.indexes/33/d5/91/8f/history.index | Bin 3148 -> 3244 bytes .../Embedded/.indexes/33/d5/91/9b/72/history.index | Bin 3168 -> 3264 bytes .../Embedded/.indexes/33/d5/91/9b/history.index | Bin 3150 -> 3246 bytes .../Embedded/.indexes/33/d5/91/af/history.index | Bin 3150 -> 3246 bytes .../Embedded/.indexes/33/d5/91/c1/history.index | Bin 3168 -> 3264 bytes .../Embedded/.indexes/33/d5/91/f/0/history.index | Bin 3166 -> 3262 bytes .../.indexes/33/d5/91/f/67/aa/history.index | Bin 3186 -> 3282 bytes .../Embedded/.indexes/33/d5/91/f/67/history.index | Bin 3170 -> 3266 bytes .../Embedded/.indexes/33/d5/91/f/6d/history.index | Bin 3164 -> 3260 bytes .../Embedded/.indexes/33/d5/91/f/80/history.index | Bin 3160 -> 3256 bytes .../Embedded/.indexes/33/d5/91/f/f3/history.index | Bin 3160 -> 3256 bytes .../Embedded/.indexes/33/d5/91/f/history.index | Bin 3152 -> 3248 bytes .../Embedded/.indexes/33/d5/91/history.index | Bin 3132 -> 3228 bytes .../Embedded/.indexes/33/d5/b1/history.index | Bin 3116 -> 3212 bytes .../Embedded/.indexes/33/d5/c2/3f/history.index | Bin 3128 -> 3224 bytes .../Embedded/.indexes/33/d5/c2/f2/history.index | Bin 3140 -> 3236 bytes .../Embedded/.indexes/33/d5/c2/history.index | Bin 3114 -> 3210 bytes .../Embedded/.indexes/33/d5/e5/history.index | Bin 3132 -> 3228 bytes .../Embedded/.indexes/33/d5/fd/history.index | Bin 3110 -> 3206 bytes .../.projects/Embedded/.indexes/33/history.index | Bin 6477 -> 6645 bytes .../Embedded/.indexes/99/50/history.index | Bin 186 -> 210 bytes .../org.eclipse.e4.workbench/workbench.xmi | 5404 ++++++++++---------- .../Embedded/Modules/Stubs_Handler/Progress.c | 60 +- 432 files changed, 22870 insertions(+), 2725 deletions(-) create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/50347878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a00c3778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/50bf8107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/e0a74679be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/000fec06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/3055d907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/3087ef78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80366405be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0355b05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/10e83a79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70452077be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/70a75d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/10aed806be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/708a0507be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/70aa5307be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/90af3979be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/7063cd06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/803e6f79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b0055605be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90212d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90cbe178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0d98605be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/e0b17478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50a57a78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50c41807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/8083e306be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/f0be1f79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/202be378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/40b17405be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/5008a978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/50df1d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/10f10677be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/c0d94e05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e04a5207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0bab178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/204b3179be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/60096277be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/00e4cc78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0de6d79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20453878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/70bd0c77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40840277be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/c097d006be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90c8de06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e0a87805be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/10f17779be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/a02a7305be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/00182907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5011e678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10e3e406be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/0083f178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/20ebf807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/505ea607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a0118007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/6074dc78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10acd376be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/606e9507be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/60ac6d05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80853607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0eff476be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/f07d9279be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/40fbaf07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/508c5705be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/70e39405be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a0adae78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00336f05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70014f78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70146c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0358a78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/d014db78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/1013a877be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/50f32b06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60878805be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/b0080b07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/7027d706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/f0150e07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d29d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0c3b678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109b6d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/20633378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d00c4107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0de1e07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00113f07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b01cd807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/d0e3b506be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/403f4079be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/f0326678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/6088ea06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/00fa2d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/70fa6478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/00080207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80567178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/d0ae6879be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/10bcac06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4084b406be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/60976e78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/e0cf6f78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/806be107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60660879be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70dd0c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c057f378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/e0211577be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/0027ad78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/303a2207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b06b05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b00b0e79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b052d506be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e08d8077be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/b0240177be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/30a82e78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/50c50906be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/d0dfce78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/0086e707be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/e0af6205be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a90907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/00216607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0e9a478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e073dd07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/d0d73407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/f00fd478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1052e276be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1090dd06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/e0a9da06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/60f25077be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/20a31006be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/400ac376be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/40d65905be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/5054c678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/704e5d77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/e046fa76be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/008f7278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/60dd4407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0076878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/c087f776be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80910577be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d04f6f77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/e0ed6a78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/30868d77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50b94779be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/900ace07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0f74a07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10fba578be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/608a3d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/a0dbd078be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/604cf406be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/00d0b107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90c64a79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90f16907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d090ae06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/30406978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/304e3d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/3070de78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60869706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/70934207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/40146278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/6092d778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/c0ad3e78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/006e3379be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/b0037407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/f08eaa78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/60193b07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/6036d405be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/609a6407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/20f77907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c024c976be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/60942a79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/907cc106be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e02a0407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/4054fe78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/70c00206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c0992307be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/601ccd76be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70b0db05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70c4a806be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/801d7107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0c75b77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0d8e478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/30274605be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/202fca06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/e003cc06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/d05b6179be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0292978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/40a65507be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/e05d0b77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f06e5c78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f0870106be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/70d0e878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c0315e07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/80cdfb76be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f097e778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/00a3ce76be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/d001b106be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/3089d176be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b00e9305be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f0bd6f07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/80a8c806be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/102e5f78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0754678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/70debc78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/808b7d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/c04b7279be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f00c1f77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10af8878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/80f68677be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/c0e3ed06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/c0ffe376be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/20b3f678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60227807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60348105be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b009bb78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/7009dc06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/70117678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c090e606be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/00f1f006be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/00afc078be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10422c79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/304a4907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/d01a6377be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/9030a406be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/409b1377be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/007b5707be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/3077c878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/304fe006be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/e04b0279be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/802f7a05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/301c2707be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/a0315d05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/90b8b706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/b06c2a06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0fd5978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/6031fc78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0932179be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b050d076be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0a8df78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0d7a407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/4048be06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/909abc06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/b0df3e79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f0f5bf06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d017d107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/604a6079be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7088b206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e064a706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/40c2fd06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/303fb906be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/00795277be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/40a99906be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/502b3b78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/90267607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/40b85e05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/200bd605be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0ebf778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/10ccd306be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/2065c705be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60acde07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/c0f4c478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/20658678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/e0184979be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/e0941c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/3067a178be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/90ef1607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/d0663207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/40471b78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90666078be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/70b78478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/c0923907be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/60ca2778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/d0414d07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/40ac9c78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40607f78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/1040d978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b03e0806be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/50f0e706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/c0e58e77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d0eda278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f0a9a206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80cf0007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80d9ed78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/0041b407be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/50ab7379be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/6011ef05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/30c48807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/600f5b78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0005007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/40db6107be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/003ebe78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/d0cef706be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30e03007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f0599e78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5043ef06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/60266c78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0355278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0234878be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0103578be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/70d67077be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a79f07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/50351b07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/30c5c776be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/709a2c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/80b2b578be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e0436807be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/20f2e207be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/603e2007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/80502a07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/90a0b507be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/e0026a05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e0a14d78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/40fd5078be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/b063ed05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/601ed206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90a3f906be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/20aab978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/f0010079be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/8041b378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/00d3f506be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/b05cc278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/c036a2ffbd71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/40125005be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d021ff06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d0736378be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f0137a79be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/404f6779be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f04bca78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/604e4707be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/d0f23978be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/6065a677be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30971679be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/90430f06be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/e0fce106be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/807b5678be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/002c4478be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f0e8dc05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/7026e607be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/10927e77be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/80f34278be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/f060c905be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/10db5778be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20ab5c07be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/a05f7f05be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70408977be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/b032d576be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/9035fa78be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/9050f206be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/a0546007be71001a1f70833eb9ed7011 create mode 100644 Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/b0e32507be71001a1f70833eb9ed7011 (limited to 'Software/Embedded_SW/Embedded/Modules') diff --git a/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom b/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom index 83b61e64f..54d5bf78f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom and b/Software/.metadata/.plugins/org.eclipse.cdt.core/Embedded.1560423654045.pdom differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/50347878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/50347878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/50347878be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a00c3778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a00c3778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1/a00c3778be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/50bf8107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/50bf8107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/10/50bf8107be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/e0a74679be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/e0a74679be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/11/e0a74679be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/000fec06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/000fec06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/000fec06be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/3055d907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/3055d907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/12/3055d907be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/3087ef78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/3087ef78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/3087ef78be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80366405be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80366405be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/80366405be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0355b05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0355b05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/14/d0355b05be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/10e83a79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/10e83a79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/10e83a79be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70452077be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70452077be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/16/70452077be71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/70a75d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/70a75d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/17/70a75d78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/10aed806be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/10aed806be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8ecd45e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/10aed806be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/DAC/Blower.obj: ../Drivers/I2C_Communication/DAC/Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/DAC/Blower.d_raw" --obj_directory="Drivers/I2C_Communication/DAC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/708a0507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/708a0507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/18/708a0507be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/70aa5307be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/70aa5307be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/70aa5307be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/90af3979be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/90af3979be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/19/90af3979be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/7063cd06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/7063cd06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1a/7063cd06be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/803e6f79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/803e6f79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1b/803e6f79be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b0055605be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b0055605be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1d/b0055605be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90212d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90212d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90212d78be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90cbe178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90cbe178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1e/90cbe178be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0d98605be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0d98605be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/b0d98605be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/e0b17478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/e0b17478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/1f/e0b17478be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50a57a78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50a57a78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50a57a78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50c41807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50c41807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/50c41807be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/8083e306be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/8083e306be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/8083e306be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/f0be1f79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/f0be1f79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/20/f0be1f79be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/202be378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/202be378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/202be378be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/40b17405be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/40b17405be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/40b17405be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/5008a978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/5008a978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/5008a978be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/50df1d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/50df1d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/21/50df1d78be71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/10f10677be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/10f10677be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/10f10677be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/c0d94e05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/c0d94e05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/22/c0d94e05be71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e04a5207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e04a5207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e04a5207be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0bab178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0bab178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/23/e0bab178be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/204b3179be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/204b3179be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/25/204b3179be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/60096277be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/60096277be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/27/60096277be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/00e4cc78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/00e4cc78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/28/00e4cc78be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0de6d79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0de6d79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/29/f0de6d79be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20453878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20453878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/20453878be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/70bd0c77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/70bd0c77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2b/70bd0c77be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40840277be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40840277be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66f3efdee --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/40840277be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/report/distributor.obj: ../Common/report/distributor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/distributor.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/filter.obj: ../Common/report/filter.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/filter.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/report/reportInit.obj: ../Common/report/reportInit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/report/reportInit.d_raw" --obj_directory="Common/report" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/c097d006be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/c097d006be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2c/c097d006be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90c8de06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90c8de06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/90c8de06be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e0a87805be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e0a87805be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2d/e0a87805be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/10f17779be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/10f17779be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/10f17779be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/a02a7305be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/a02a7305be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2e/a02a7305be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/00182907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/00182907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/00182907be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5011e678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5011e678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b223c7168 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/2f/5011e678be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/USB_Communication/USBCDCD.obj: ../Drivers/USB_Communication/USBCDCD.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/USB_Communication/USBCDCD.d_raw" --obj_directory="Drivers/USB_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10e3e406be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10e3e406be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3/10e3e406be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/0083f178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/0083f178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/0083f178be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/20ebf807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/20ebf807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/20ebf807be71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/505ea607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/505ea607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/30/505ea607be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a0118007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a0118007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/31/a0118007be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/6074dc78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/6074dc78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/32/6074dc78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10acd376be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10acd376be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/10acd376be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/606e9507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/606e9507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/606e9507be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/60ac6d05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/60ac6d05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/33/60ac6d05be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80853607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80853607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/80853607be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0eff476be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0eff476be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/b0eff476be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/f07d9279be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/f07d9279be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5a547b25b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/35/f07d9279be71001a1f70833eb9ed7011 @@ -0,0 +1,866 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +CG_TOOL_ROOT := C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS + +GEN_OPTS__FLAG := --cmd_file="configPkg/compiler.opt" +GEN_CMDS__FLAG := -l"configPkg/linker.cmd" + +ORDERED_OBJS += \ +"./Main.obj" \ +"./delay.obj" \ +"./Common/SWUpdate/FileSystem.obj" \ +"./Common/SWUpdate/FirmwareUpgrade.obj" \ +"./Common/SW_Info/SW_Info.obj" \ +"./Common/Software_CRC/sw_crc.obj" \ +"./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj" \ +"./Common/Sys_PinOut_Config/Pin.obj" \ +"./Common/Sys_PinOut_Config/Pin_config.obj" \ +"./Common/Utilities/RFIDTagHandling.obj" \ +"./Common/Utilities/Update.obj" \ +"./Common/Utilities/Utils.obj" \ +"./Common/Utilities/idle_task.obj" \ +"./Common/Utilities/ustdlib.obj" \ +"./Common/protobuf-c/protobuf-c.obj" \ +"./Common/report/distributor.obj" \ +"./Common/report/filter.obj" \ +"./Common/report/reportInit.obj" \ +"./Communication/CommunicationTask.obj" \ +"./Communication/Connection.obj" \ +"./Communication/Container.obj" \ +"./Communication/PMR/Common/ErrorCode.pb-c.obj" \ +"./Communication/PMR/Common/ErrorResponse.pb-c.obj" \ +"./Communication/PMR/Common/MessageContainer.pb-c.obj" \ +"./Communication/PMR/Common/MessageType.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/ConnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/DeviceInformation.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectRequest.pb-c.obj" \ +"./Communication/PMR/Connection/DisconnectResponse.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj" \ +"./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributor.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj" \ +"./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj" \ +"./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Cartridge.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj" \ +"./Communication/PMR/Diagnostics/Event.pb-c.obj" \ +"./Communication/PMR/Diagnostics/EventType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/HeaterType.pb-c.obj" \ +"./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveState.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj" \ +"./Communication/PMR/Diagnostics/ValveType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj" \ +"./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj" \ +"./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlower.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancer.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinder.pb-c.obj" \ +"./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj" \ +"./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj" \ +"./Communication/PMR/IO/CreateRequest.pb-c.obj" \ +"./Communication/PMR/IO/CreateResponse.pb-c.obj" \ +"./Communication/PMR/IO/DeleteRequest.pb-c.obj" \ +"./Communication/PMR/IO/DeleteResponse.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileAttribute.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileDownloadResponse.pb-c.obj" \ +"./Communication/PMR/IO/FileInfo.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadRequest.pb-c.obj" \ +"./Communication/PMR/IO/FileUploadResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetFilesResponse.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj" \ +"./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessRequest.pb-c.obj" \ +"./Communication/PMR/IO/KillProcessResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineState.pb-c.obj" \ +"./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj" \ +"./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Power/PowerDownState.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj" \ +"./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/AbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj" \ +"./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj" \ +"./Communication/PMR/Printing/JobBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj" \ +"./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobDispenser.pb-c.obj" \ +"./Communication/PMR/Printing/JobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/JobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/JobSegment.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpool.pb-c.obj" \ +"./Communication/PMR/Printing/JobSpoolType.pb-c.obj" \ +"./Communication/PMR/Printing/JobStatus.pb-c.obj" \ +"./Communication/PMR/Printing/JobTicket.pb-c.obj" \ +"./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj" \ +"./Communication/PMR/Printing/JobWindingMethod.pb-c.obj" \ +"./Communication/PMR/Printing/ProcessParameters.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj" \ +"./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj" \ +"./Communication/PMR/Printing/ThreadParameters.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj" \ +"./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/CalculateResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/ProgressResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubJobResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveRequest.pb-c.obj" \ +"./Communication/PMR/Stubs/StubValveResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj" \ +"./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj" \ +"./Drivers/ADC_Sampling/ADC.obj" \ +"./Drivers/ADC_Sampling/ADC_VAC.obj" \ +"./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj" \ +"./Drivers/FPGA/FPGA.obj" \ +"./Drivers/FPGA/FPGA_SPI_Comm.obj" \ +"./Drivers/FPGA/FPGA_SSI_Comm.obj" \ +"./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj" \ +"./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj" \ +"./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/hardware.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj" \ +"./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj" \ +"./Drivers/FPGA/Motors_Driver/L6470.obj" \ +"./Drivers/Flash_Memory/FATFS/Control_File_System.obj" \ +"./Drivers/Flash_Memory/FATFS/cc932.obj" \ +"./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/ff.obj" \ +"./Drivers/Flash_Memory/FATFS/mx66l51235f.obj" \ +"./Drivers/Flash_Memory/FATFS/spi_flash.obj" \ +"./Drivers/Flash_Memory/Flash_Memory.obj" \ +"./Drivers/Heater/ADS1220.obj" \ +"./Drivers/Heater/Heater.obj" \ +"./Drivers/Heater/TemperatureSensor.obj" \ +"./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj" \ +"./Drivers/I2C_Communication/DAC/Blower.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj" \ +"./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj" \ +"./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj" \ +"./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj" \ +"./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj" \ +"./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj" \ +"./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/I2C.obj" \ +"./Drivers/I2C_Communication/I2C_Comm.obj" \ +"./Drivers/I2C_Communication/I2C_FIFO.obj" \ +"./Drivers/I2C_Communication/I2C_Task.obj" \ +"./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj" \ +"./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj" \ +"./Drivers/I2C_Communication/Thermo_K/MCP9600.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj" \ +"./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj" \ +"./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj" \ +"./Drivers/Motors/Motor.obj" \ +"./Drivers/Motors/MotorActions.obj" \ +"./Drivers/On_Chip_Flash/Flashstore.obj" \ +"./Drivers/SPI/SPI_Comm.obj" \ +"./Drivers/SSI_Comm/Dancer/Dancer.obj" \ +"./Drivers/SSI_Comm/SSI_Comm.obj" \ +"./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj" \ +"./Drivers/USB_Communication/USBCDCD.obj" \ +"./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj" \ +"./Drivers/Uart_Comm/Modbus/functions/mbutils.obj" \ +"./Drivers/Uart_Comm/Modbus/mb.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj" \ +"./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj" \ +"./Drivers/Uart_Comm/Uart.obj" \ +"./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj" \ +"./Drivers/Valves/Valve.obj" \ +"./Drivers/flash_ram/FlashProgram.obj" \ +"./Drivers/flash_ram/MCU_E2Prom.obj" \ +"./Modules/AlarmHandling/AlarmHandling.obj" \ +"./Modules/Control/DriverWithCallbackExample.obj" \ +"./Modules/Control/MillisecTask.obj" \ +"./Modules/Control/PIDAlgo.obj" \ +"./Modules/Control/control.obj" \ +"./Modules/Diagnostics/DiagnosticActions.obj" \ +"./Modules/Diagnostics/Diagnostics.obj" \ +"./Modules/Diagnostics/DiagnosticsHoming.obj" \ +"./Modules/Diagnostics/DiagnosticsJogging.obj" \ +"./Modules/General/GeneralHardware.obj" \ +"./Modules/General/MachineStatus.obj" \ +"./Modules/General/Safety.obj" \ +"./Modules/General/buttons.obj" \ +"./Modules/General/process.obj" \ +"./Modules/Heaters/Heaters_bit.obj" \ +"./Modules/Heaters/Heaters_init.obj" \ +"./Modules/Heaters/Heaters_maint.obj" \ +"./Modules/Heaters/Heaters_print.obj" \ +"./Modules/IDS/IDS_BIT.obj" \ +"./Modules/IDS/IDS_Cleaning.obj" \ +"./Modules/IDS/IDS_dispenser.obj" \ +"./Modules/IDS/IDS_init.obj" \ +"./Modules/IDS/IDS_maint.obj" \ +"./Modules/IDS/IDS_print.obj" \ +"./Modules/IFS/ifs.obj" \ +"./Modules/Stubs_Handler/Calculate.obj" \ +"./Modules/Stubs_Handler/Progress.obj" \ +"./Modules/Stubs_Handler/StubRealTimeUsage.obj" \ +"./Modules/Stubs_Handler/Stub_Cartridge.obj" \ +"./Modules/Stubs_Handler/Stub_Dancer.obj" \ +"./Modules/Stubs_Handler/Stub_Dispenser.obj" \ +"./Modules/Stubs_Handler/Stub_ExtFlash.obj" \ +"./Modules/Stubs_Handler/Stub_FPGARWReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj" \ +"./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj" \ +"./Modules/Stubs_Handler/Stub_GPIO.obj" \ +"./Modules/Stubs_Handler/Stub_HW_Version.obj" \ +"./Modules/Stubs_Handler/Stub_Heater.obj" \ +"./Modules/Stubs_Handler/Stub_I2C.obj" \ +"./Modules/Stubs_Handler/Stub_IntADC.obj" \ +"./Modules/Stubs_Handler/Stub_L6470.obj" \ +"./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Motor.obj" \ +"./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj" \ +"./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj" \ +"./Modules/Stubs_Handler/Stub_SpeedSensor.obj" \ +"./Modules/Stubs_Handler/Stub_Status.obj" \ +"./Modules/Stubs_Handler/Stub_SteperMotor.obj" \ +"./Modules/Stubs_Handler/Stub_TempSensor.obj" \ +"./Modules/Stubs_Handler/Stub_TivaReg.obj" \ +"./Modules/Stubs_Handler/Stub_Valve.obj" \ +"./Modules/Stubs_Handler/User_Leds.obj" \ +"./Modules/Stubs_Handler/temperature_sensor.obj" \ +"./Modules/Thread/ThreadLoad.obj" \ +"./Modules/Thread/Thread_BIT.obj" \ +"./Modules/Thread/Thread_Winder.obj" \ +"./Modules/Thread/Thread_init.obj" \ +"./Modules/Thread/Thread_maint.obj" \ +"./Modules/Thread/Thread_print.obj" \ +"./Modules/Waste/Waste_BIT.obj" \ +"./Modules/Waste/Waste_init.obj" \ +"./Modules/Waste/Waste_maint.obj" \ +"./Modules/Waste/Waste_print.obj" \ +"./Modules/Waste/newWHS_init.obj" \ +"./StateMachines/Initialization/InitSequence.obj" \ +"./StateMachines/Initialization/PowerIdle.obj" \ +"./StateMachines/Initialization/PowerOffSequence.obj" \ +"./StateMachines/Printing/JobSTM.obj" \ +"./StateMachines/Printing/PrintingSTM.obj" \ +"../tm4c129xnczad.cmd" \ +$(GEN_CMDS__FLAG) \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/grlib/ccs/Debug/grlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/driverlib/ccs/Debug/driverlib.lib" \ +-l"C:/ti/TivaWare_C_Series-2.1.2.111/usblib/ccs/Debug/usblib.lib" \ +-llibc.a \ + +-include ../makefile.init + +RM := DEL /F +RMDIR := RMDIR /S/Q + +# All of the sources participating in the build are defined here +-include sources.mk +-include subdir_vars.mk +-include Common/SWUpdate/subdir_vars.mk +-include Common/SW_Info/subdir_vars.mk +-include Common/Software_CRC/subdir_vars.mk +-include Common/Sys_PinOut_Config/subdir_vars.mk +-include Common/Utilities/subdir_vars.mk +-include Common/protobuf-c/subdir_vars.mk +-include Common/report/subdir_vars.mk +-include Communication/subdir_vars.mk +-include Communication/PMR/Common/subdir_vars.mk +-include Communication/PMR/Connection/subdir_vars.mk +-include Communication/PMR/Debugging/subdir_vars.mk +-include Communication/PMR/Diagnostics/subdir_vars.mk +-include Communication/PMR/EmbeddedParameters/subdir_vars.mk +-include Communication/PMR/FirmwareUpgrade/subdir_vars.mk +-include Communication/PMR/Hardware/subdir_vars.mk +-include Communication/PMR/IO/subdir_vars.mk +-include Communication/PMR/MachineStatus/subdir_vars.mk +-include Communication/PMR/Power/subdir_vars.mk +-include Communication/PMR/Printing/subdir_vars.mk +-include Communication/PMR/Stubs/subdir_vars.mk +-include Communication/PMR/ThreadLoading/subdir_vars.mk +-include Drivers/ADC_Sampling/subdir_vars.mk +-include Drivers/FPGA/subdir_vars.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_vars.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/subdir_vars.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_vars.mk +-include Drivers/FPGA/Motors_Driver/subdir_vars.mk +-include Drivers/Flash_Memory/FATFS/subdir_vars.mk +-include Drivers/Flash_Memory/subdir_vars.mk +-include Drivers/Heater/subdir_vars.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/DAC/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_vars.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_vars.mk +-include Drivers/I2C_Communication/subdir_vars.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_vars.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_vars.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_vars.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_vars.mk +-include Drivers/Motors/subdir_vars.mk +-include Drivers/On_Chip_Flash/subdir_vars.mk +-include Drivers/SPI/subdir_vars.mk +-include Drivers/SSI_Comm/Dancer/subdir_vars.mk +-include Drivers/SSI_Comm/subdir_vars.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_vars.mk +-include Drivers/USB_Communication/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/subdir_vars.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_vars.mk +-include Drivers/Uart_Comm/subdir_vars.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_vars.mk +-include Drivers/Valves/subdir_vars.mk +-include Drivers/flash_ram/subdir_vars.mk +-include Modules/AlarmHandling/subdir_vars.mk +-include Modules/Control/subdir_vars.mk +-include Modules/Diagnostics/subdir_vars.mk +-include Modules/General/subdir_vars.mk +-include Modules/Heaters/subdir_vars.mk +-include Modules/IDS/subdir_vars.mk +-include Modules/IFS/subdir_vars.mk +-include Modules/Stubs_Handler/subdir_vars.mk +-include Modules/Thread/subdir_vars.mk +-include Modules/Waste/subdir_vars.mk +-include StateMachines/Initialization/subdir_vars.mk +-include StateMachines/Printing/subdir_vars.mk +-include subdir_rules.mk +-include Common/SWUpdate/subdir_rules.mk +-include Common/SW_Info/subdir_rules.mk +-include Common/Software_CRC/subdir_rules.mk +-include Common/Sys_PinOut_Config/subdir_rules.mk +-include Common/Utilities/subdir_rules.mk +-include Common/protobuf-c/subdir_rules.mk +-include Common/report/subdir_rules.mk +-include Communication/subdir_rules.mk +-include Communication/PMR/Common/subdir_rules.mk +-include Communication/PMR/Connection/subdir_rules.mk +-include Communication/PMR/Debugging/subdir_rules.mk +-include Communication/PMR/Diagnostics/subdir_rules.mk +-include Communication/PMR/EmbeddedParameters/subdir_rules.mk +-include Communication/PMR/FirmwareUpgrade/subdir_rules.mk +-include Communication/PMR/Hardware/subdir_rules.mk +-include Communication/PMR/IO/subdir_rules.mk +-include Communication/PMR/MachineStatus/subdir_rules.mk +-include Communication/PMR/Power/subdir_rules.mk +-include Communication/PMR/Printing/subdir_rules.mk +-include Communication/PMR/Stubs/subdir_rules.mk +-include Communication/PMR/ThreadLoading/subdir_rules.mk +-include Drivers/ADC_Sampling/subdir_rules.mk +-include Drivers/FPGA/subdir_rules.mk +-include Drivers/FPGA/FPGA_GPIO/subdir_rules.mk +-include Drivers/FPGA/FPGA_INTERRUPTS/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/subdir_rules.mk +-include Drivers/FPGA/Full_Vme/ispvme/subdir_rules.mk +-include Drivers/FPGA/Motors_Driver/subdir_rules.mk +-include Drivers/Flash_Memory/FATFS/subdir_rules.mk +-include Drivers/Flash_Memory/subdir_rules.mk +-include Drivers/Heater/subdir_rules.mk +-include Drivers/I2C_Communication/ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/DAC/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Dispenser_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/ADC/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/Fan/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/subdir_rules.mk +-include Drivers/I2C_Communication/Head_Card/PT100/subdir_rules.mk +-include Drivers/I2C_Communication/subdir_rules.mk +-include Drivers/I2C_Communication/Main_Board_EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/subdir_rules.mk +-include Drivers/I2C_Communication/RFID_NFC/logi-tag/subdir_rules.mk +-include Drivers/I2C_Communication/Thermo_K/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/EEPROM/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/subdir_rules.mk +-include Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/subdir_rules.mk +-include Drivers/Motors/subdir_rules.mk +-include Drivers/On_Chip_Flash/subdir_rules.mk +-include Drivers/SPI/subdir_rules.mk +-include Drivers/SSI_Comm/Dancer/subdir_rules.mk +-include Drivers/SSI_Comm/subdir_rules.mk +-include Drivers/SSI_Comm/Speed_Sensor/subdir_rules.mk +-include Drivers/USB_Communication/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/ascii/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/functions/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/subdir_rules.mk +-include Drivers/Uart_Comm/Modbus/rtu/subdir_rules.mk +-include Drivers/Uart_Comm/subdir_rules.mk +-include Drivers/Uart_Comm/WHS_UART/subdir_rules.mk +-include Drivers/Valves/subdir_rules.mk +-include Drivers/flash_ram/subdir_rules.mk +-include Modules/AlarmHandling/subdir_rules.mk +-include Modules/Control/subdir_rules.mk +-include Modules/Diagnostics/subdir_rules.mk +-include Modules/General/subdir_rules.mk +-include Modules/Heaters/subdir_rules.mk +-include Modules/IDS/subdir_rules.mk +-include Modules/IFS/subdir_rules.mk +-include Modules/Stubs_Handler/subdir_rules.mk +-include Modules/Thread/subdir_rules.mk +-include Modules/Waste/subdir_rules.mk +-include StateMachines/Initialization/subdir_rules.mk +-include StateMachines/Printing/subdir_rules.mk +-include objects.mk + +ifneq ($(MAKECMDGOALS),clean) +ifneq ($(strip $(C55_DEPS)),) +-include $(C55_DEPS) +endif +ifneq ($(strip $(C_UPPER_DEPS)),) +-include $(C_UPPER_DEPS) +endif +ifneq ($(strip $(S67_DEPS)),) +-include $(S67_DEPS) +endif +ifneq ($(strip $(S62_DEPS)),) +-include $(S62_DEPS) +endif +ifneq ($(strip $(S_DEPS)),) +-include $(S_DEPS) +endif +ifneq ($(strip $(OPT_DEPS)),) +-include $(OPT_DEPS) +endif +ifneq ($(strip $(C??_DEPS)),) +-include $(C??_DEPS) +endif +ifneq ($(strip $(ASM_UPPER_DEPS)),) +-include $(ASM_UPPER_DEPS) +endif +ifneq ($(strip $(S??_DEPS)),) +-include $(S??_DEPS) +endif +ifneq ($(strip $(C64_DEPS)),) +-include $(C64_DEPS) +endif +ifneq ($(strip $(CXX_DEPS)),) +-include $(CXX_DEPS) +endif +ifneq ($(strip $(S64_DEPS)),) +-include $(S64_DEPS) +endif +ifneq ($(strip $(INO_DEPS)),) +-include $(INO_DEPS) +endif +ifneq ($(strip $(CLA_DEPS)),) +-include $(CLA_DEPS) +endif +ifneq ($(strip $(S55_DEPS)),) +-include $(S55_DEPS) +endif +ifneq ($(strip $(SV7A_DEPS)),) +-include $(SV7A_DEPS) +endif +ifneq ($(strip $(C62_DEPS)),) +-include $(C62_DEPS) +endif +ifneq ($(strip $(C67_DEPS)),) +-include $(C67_DEPS) +endif +ifneq ($(strip $(PDE_DEPS)),) +-include $(PDE_DEPS) +endif +ifneq ($(strip $(K_DEPS)),) +-include $(K_DEPS) +endif +ifneq ($(strip $(C_DEPS)),) +-include $(C_DEPS) +endif +ifneq ($(strip $(CC_DEPS)),) +-include $(CC_DEPS) +endif +ifneq ($(strip $(C++_DEPS)),) +-include $(C++_DEPS) +endif +ifneq ($(strip $(C43_DEPS)),) +-include $(C43_DEPS) +endif +ifneq ($(strip $(S43_DEPS)),) +-include $(S43_DEPS) +endif +ifneq ($(strip $(ASM_DEPS)),) +-include $(ASM_DEPS) +endif +ifneq ($(strip $(S_UPPER_DEPS)),) +-include $(S_UPPER_DEPS) +endif +ifneq ($(strip $(CPP_DEPS)),) +-include $(CPP_DEPS) +endif +ifneq ($(strip $(SA_DEPS)),) +-include $(SA_DEPS) +endif +endif + +-include ../makefile.defs + +# Add inputs and outputs from these tool invocations to the build variables +EXE_OUTPUTS += \ +Embedded.out \ + +EXE_OUTPUTS__QUOTED += \ +"Embedded.out" \ + +BIN_OUTPUTS += \ +Embedded.bin \ + +BIN_OUTPUTS__QUOTED += \ +"Embedded.bin" \ + + +# All Target +all: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @$(MAKE) --no-print-directory -Onone "Embedded.out" + +# Tool invocations +Embedded.out: $(OBJS) $(CMD_SRCS) $(GEN_CMDS) + @echo 'Building target: $@' + @echo 'Invoking: ARM Linker' + @echo 'Flags: -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model' + $(shell echo -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi -z -m"Embedded.map" --heap_size=0 --stack_size=16384 -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" -i"C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/lib" --priority --reread_libs --disable_auto_rts --diag_wrap=off --display_error_number --warn_sections --xml_link_info="Embedded_linkInfo.xml" --rom_model > "ccsLinker.opt") + $(shell type "ccsObjs.opt" >> "ccsLinker.opt") + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -@"ccsLinker.opt" -o "Embedded.out" + @echo 'Finished building target: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +Embedded.bin: $(EXE_OUTPUTS) + @echo 'Invoking: ARM Hex Utility' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" -o "Embedded.bin" $(EXE_OUTPUTS__QUOTED) + @echo 'Finished building: $@' + @echo ' ' + @$(MAKE) --no-print-directory post-build + +# Other Targets +clean: + -$(RM) $(GEN_CMDS__QUOTED)$(GEN_MISC_FILES__QUOTED)$(BIN_OUTPUTS__QUOTED)$(GEN_FILES__QUOTED)$(EXE_OUTPUTS__QUOTED)$(GEN_OPTS__QUOTED) + -$(RMDIR) $(GEN_MISC_DIRS__QUOTED) + -$(RM) "Main.obj" "delay.obj" "Common\SWUpdate\FileSystem.obj" "Common\SWUpdate\FirmwareUpgrade.obj" "Common\SW_Info\SW_Info.obj" "Common\Software_CRC\sw_crc.obj" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" "Common\Sys_PinOut_Config\Pin.obj" "Common\Sys_PinOut_Config\Pin_config.obj" "Common\Utilities\RFIDTagHandling.obj" "Common\Utilities\Update.obj" "Common\Utilities\Utils.obj" "Common\Utilities\idle_task.obj" "Common\Utilities\ustdlib.obj" "Common\protobuf-c\protobuf-c.obj" "Common\report\distributor.obj" "Common\report\filter.obj" "Common\report\reportInit.obj" "Communication\CommunicationTask.obj" "Communication\Connection.obj" "Communication\Container.obj" "Communication\PMR\Common\ErrorCode.pb-c.obj" "Communication\PMR\Common\ErrorResponse.pb-c.obj" "Communication\PMR\Common\MessageContainer.pb-c.obj" "Communication\PMR\Common\MessageType.pb-c.obj" "Communication\PMR\Connection\ConnectRequest.pb-c.obj" "Communication\PMR\Connection\ConnectResponse.pb-c.obj" "Communication\PMR\Connection\DeviceInformation.pb-c.obj" + -$(RM) "Communication\PMR\Connection\DisconnectRequest.pb-c.obj" "Communication\PMR\Connection\DisconnectResponse.pb-c.obj" "Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" "Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" "Communication\PMR\Debugging\DebugDistributor.pb-c.obj" "Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" "Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" "Communication\PMR\Diagnostics\Cartridge.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\Event.pb-c.obj" "Communication\PMR\Diagnostics\EventType.pb-c.obj" "Communication\PMR\Diagnostics\HeaterState.pb-c.obj" "Communication\PMR\Diagnostics\HeaterType.pb-c.obj" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" "Communication\PMR\Diagnostics\ValveState.pb-c.obj" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" "Communication\PMR\Diagnostics\ValveType.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" + -$(RM) "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" + -$(RM) "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" "Communication\PMR\Hardware\HardwareBlower.pb-c.obj" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" "Communication\PMR\Hardware\HardwareDancer.pb-c.obj" "Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" "Communication\PMR\Hardware\HardwareMotor.pb-c.obj" "Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" + -$(RM) "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" "Communication\PMR\Hardware\HardwareWinder.pb-c.obj" "Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" "Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" "Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" "Communication\PMR\IO\CreateRequest.pb-c.obj" "Communication\PMR\IO\CreateResponse.pb-c.obj" "Communication\PMR\IO\DeleteRequest.pb-c.obj" "Communication\PMR\IO\DeleteResponse.pb-c.obj" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" "Communication\PMR\IO\FileAttribute.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" + -$(RM) "Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" "Communication\PMR\IO\FileDownloadRequest.pb-c.obj" "Communication\PMR\IO\FileDownloadResponse.pb-c.obj" "Communication\PMR\IO\FileInfo.pb-c.obj" "Communication\PMR\IO\FileUploadRequest.pb-c.obj" "Communication\PMR\IO\FileUploadResponse.pb-c.obj" "Communication\PMR\IO\GetFilesRequest.pb-c.obj" "Communication\PMR\IO\GetFilesResponse.pb-c.obj" "Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" "Communication\PMR\IO\KillProcessRequest.pb-c.obj" "Communication\PMR\IO\KillProcessResponse.pb-c.obj" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" "Communication\PMR\MachineStatus\MachineState.pb-c.obj" "Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" + -$(RM) "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" "Communication\PMR\Power\PowerDownState.pb-c.obj" "Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" "Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" "Communication\PMR\Printing\AbortJobRequest.pb-c.obj" "Communication\PMR\Printing\AbortJobResponse.pb-c.obj" "Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" "Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" "Communication\PMR\Printing\JobBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" "Communication\PMR\Printing\JobDispenser.pb-c.obj" "Communication\PMR\Printing\JobRequest.pb-c.obj" "Communication\PMR\Printing\JobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Printing\JobSegment.pb-c.obj" "Communication\PMR\Printing\JobSpool.pb-c.obj" "Communication\PMR\Printing\JobSpoolType.pb-c.obj" "Communication\PMR\Printing\JobStatus.pb-c.obj" "Communication\PMR\Printing\JobTicket.pb-c.obj" "Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" "Communication\PMR\Printing\JobWindingMethod.pb-c.obj" "Communication\PMR\Printing\ProcessParameters.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" "Communication\PMR\Printing\ThreadParameters.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" "Communication\PMR\Stubs\CalculateRequest.pb-c.obj" "Communication\PMR\Stubs\CalculateResponse.pb-c.obj" "Communication\PMR\Stubs\ProgressRequest.pb-c.obj" "Communication\PMR\Stubs\ProgressResponse.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubJobRequest.pb-c.obj" "Communication\PMR\Stubs\StubJobResponse.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" + -$(RM) "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" "Communication\PMR\Stubs\StubValveRequest.pb-c.obj" "Communication\PMR\Stubs\StubValveResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" "Drivers\ADC_Sampling\ADC.obj" + -$(RM) "Drivers\ADC_Sampling\ADC_VAC.obj" "Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" "Drivers\FPGA\FPGA.obj" "Drivers\FPGA\FPGA_SPI_Comm.obj" "Drivers\FPGA\FPGA_SSI_Comm.obj" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" "Drivers\FPGA\Full_Vme\ispvme\hardware.obj" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" "Drivers\FPGA\Motors_Driver\L6470.obj" "Drivers\Flash_Memory\FATFS\Control_File_System.obj" "Drivers\Flash_Memory\FATFS\cc932.obj" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\ff.obj" "Drivers\Flash_Memory\FATFS\mx66l51235f.obj" "Drivers\Flash_Memory\FATFS\spi_flash.obj" "Drivers\Flash_Memory\Flash_Memory.obj" "Drivers\Heater\ADS1220.obj" "Drivers\Heater\Heater.obj" "Drivers\Heater\TemperatureSensor.obj" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" "Drivers\I2C_Communication\DAC\Blower.obj" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + -$(RM) "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" "Drivers\I2C_Communication\I2C.obj" "Drivers\I2C_Communication\I2C_Comm.obj" "Drivers\I2C_Communication\I2C_FIFO.obj" "Drivers\I2C_Communication\I2C_Task.obj" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" "Drivers\I2C_Communication\RFID_NFC\NFC.obj" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + -$(RM) "Drivers\I2C_Communication\Thermo_K\MCP9600.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" + -$(RM) "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" "Drivers\Motors\Motor.obj" "Drivers\Motors\MotorActions.obj" "Drivers\On_Chip_Flash\Flashstore.obj" "Drivers\SPI\SPI_Comm.obj" "Drivers\SSI_Comm\Dancer\Dancer.obj" "Drivers\SSI_Comm\SSI_Comm.obj" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" "Drivers\USB_Communication\USBCDCD.obj" "Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" "Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" "Drivers\Uart_Comm\Modbus\functions\mbutils.obj" "Drivers\Uart_Comm\Modbus\mb.obj" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + -$(RM) "Drivers\Uart_Comm\Uart.obj" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" "Drivers\Valves\Valve.obj" "Drivers\flash_ram\FlashProgram.obj" "Drivers\flash_ram\MCU_E2Prom.obj" "Modules\AlarmHandling\AlarmHandling.obj" "Modules\Control\DriverWithCallbackExample.obj" "Modules\Control\MillisecTask.obj" "Modules\Control\PIDAlgo.obj" "Modules\Control\control.obj" "Modules\Diagnostics\DiagnosticActions.obj" "Modules\Diagnostics\Diagnostics.obj" "Modules\Diagnostics\DiagnosticsHoming.obj" "Modules\Diagnostics\DiagnosticsJogging.obj" "Modules\General\GeneralHardware.obj" "Modules\General\MachineStatus.obj" "Modules\General\Safety.obj" "Modules\General\buttons.obj" "Modules\General\process.obj" "Modules\Heaters\Heaters_bit.obj" "Modules\Heaters\Heaters_init.obj" "Modules\Heaters\Heaters_maint.obj" "Modules\Heaters\Heaters_print.obj" "Modules\IDS\IDS_BIT.obj" "Modules\IDS\IDS_Cleaning.obj" "Modules\IDS\IDS_dispenser.obj" "Modules\IDS\IDS_init.obj" "Modules\IDS\IDS_maint.obj" "Modules\IDS\IDS_print.obj" + -$(RM) "Modules\IFS\ifs.obj" "Modules\Stubs_Handler\Calculate.obj" "Modules\Stubs_Handler\Progress.obj" "Modules\Stubs_Handler\StubRealTimeUsage.obj" "Modules\Stubs_Handler\Stub_Cartridge.obj" "Modules\Stubs_Handler\Stub_Dancer.obj" "Modules\Stubs_Handler\Stub_Dispenser.obj" "Modules\Stubs_Handler\Stub_ExtFlash.obj" "Modules\Stubs_Handler\Stub_FPGARWReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" "Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" "Modules\Stubs_Handler\Stub_GPIO.obj" "Modules\Stubs_Handler\Stub_HW_Version.obj" "Modules\Stubs_Handler\Stub_Heater.obj" "Modules\Stubs_Handler\Stub_I2C.obj" "Modules\Stubs_Handler\Stub_IntADC.obj" "Modules\Stubs_Handler\Stub_L6470.obj" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" "Modules\Stubs_Handler\Stub_Motor.obj" "Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" "Modules\Stubs_Handler\Stub_SpeedSensor.obj" "Modules\Stubs_Handler\Stub_Status.obj" "Modules\Stubs_Handler\Stub_SteperMotor.obj" + -$(RM) "Modules\Stubs_Handler\Stub_TempSensor.obj" "Modules\Stubs_Handler\Stub_TivaReg.obj" "Modules\Stubs_Handler\Stub_Valve.obj" "Modules\Stubs_Handler\User_Leds.obj" "Modules\Stubs_Handler\temperature_sensor.obj" "Modules\Thread\ThreadLoad.obj" "Modules\Thread\Thread_BIT.obj" "Modules\Thread\Thread_Winder.obj" "Modules\Thread\Thread_init.obj" "Modules\Thread\Thread_maint.obj" "Modules\Thread\Thread_print.obj" "Modules\Waste\Waste_BIT.obj" "Modules\Waste\Waste_init.obj" "Modules\Waste\Waste_maint.obj" "Modules\Waste\Waste_print.obj" "Modules\Waste\newWHS_init.obj" "StateMachines\Initialization\InitSequence.obj" "StateMachines\Initialization\PowerIdle.obj" "StateMachines\Initialization\PowerOffSequence.obj" "StateMachines\Printing\JobSTM.obj" "StateMachines\Printing\PrintingSTM.obj" + -$(RM) "Main.d" "delay.d" "Common\SWUpdate\FileSystem.d" "Common\SWUpdate\FirmwareUpgrade.d" "Common\SW_Info\SW_Info.d" "Common\Software_CRC\sw_crc.d" "Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" "Common\Sys_PinOut_Config\Pin.d" "Common\Sys_PinOut_Config\Pin_config.d" "Common\Utilities\RFIDTagHandling.d" "Common\Utilities\Update.d" "Common\Utilities\Utils.d" "Common\Utilities\idle_task.d" "Common\Utilities\ustdlib.d" "Common\protobuf-c\protobuf-c.d" "Common\report\distributor.d" "Common\report\filter.d" "Common\report\reportInit.d" "Communication\CommunicationTask.d" "Communication\Connection.d" "Communication\Container.d" "Communication\PMR\Common\ErrorCode.pb-c.d" "Communication\PMR\Common\ErrorResponse.pb-c.d" "Communication\PMR\Common\MessageContainer.pb-c.d" "Communication\PMR\Common\MessageType.pb-c.d" "Communication\PMR\Connection\ConnectRequest.pb-c.d" "Communication\PMR\Connection\ConnectResponse.pb-c.d" "Communication\PMR\Connection\DeviceInformation.pb-c.d" "Communication\PMR\Connection\DisconnectRequest.pb-c.d" + -$(RM) "Communication\PMR\Connection\DisconnectResponse.pb-c.d" "Communication\PMR\Connection\KeepAliveRequest.pb-c.d" "Communication\PMR\Connection\KeepAliveResponse.pb-c.d" "Communication\PMR\Debugging\DebugDistributor.pb-c.d" "Communication\PMR\Debugging\DebugDistributorType.pb-c.d" "Communication\PMR\Debugging\DebugLogCategory.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" "Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" "Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" "Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" "Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" "Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" "Communication\PMR\Diagnostics\Cartridge.pb-c.d" "Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" "Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" "Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" "Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" "Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" "Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" "Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\DoubleArray.pb-c.d" "Communication\PMR\Diagnostics\Event.pb-c.d" "Communication\PMR\Diagnostics\EventType.pb-c.d" "Communication\PMR\Diagnostics\HeaterState.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\HeaterType.pb-c.d" "Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorDirection.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" "Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" "Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" "Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" "Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" "Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" "Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" + -$(RM) "Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" "Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" "Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" "Communication\PMR\Diagnostics\ValueComponent.pb-c.d" "Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" "Communication\PMR\Diagnostics\ValveState.pb-c.d" "Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" "Communication\PMR\Diagnostics\ValveType.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" "Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" + -$(RM) "Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" "Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" "Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" "Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + -$(RM) "Communication\PMR\Hardware\HardwareBlower.pb-c.d" "Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" "Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" "Communication\PMR\Hardware\HardwareDancer.pb-c.d" "Communication\PMR\Hardware\HardwareDancerType.pb-c.d" "Communication\PMR\Hardware\HardwareDispenser.pb-c.d" "Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" "Communication\PMR\Hardware\HardwareMotor.pb-c.d" "Communication\PMR\Hardware\HardwareMotorType.pb-c.d" "Communication\PMR\Hardware\HardwarePidControl.pb-c.d" "Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" "Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" "Communication\PMR\Hardware\HardwareWinder.pb-c.d" "Communication\PMR\Hardware\HardwareWinderType.pb-c.d" "Communication\PMR\Hardware\SystemResetRequest.pb-c.d" "Communication\PMR\Hardware\SystemResetResponse.pb-c.d" + -$(RM) "Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" "Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" "Communication\PMR\IO\CreateRequest.pb-c.d" "Communication\PMR\IO\CreateResponse.pb-c.d" "Communication\PMR\IO\DeleteRequest.pb-c.d" "Communication\PMR\IO\DeleteResponse.pb-c.d" "Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" "Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" "Communication\PMR\IO\FileAttribute.pb-c.d" "Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" "Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" "Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" "Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" "Communication\PMR\IO\FileDownloadRequest.pb-c.d" "Communication\PMR\IO\FileDownloadResponse.pb-c.d" "Communication\PMR\IO\FileInfo.pb-c.d" "Communication\PMR\IO\FileUploadRequest.pb-c.d" "Communication\PMR\IO\FileUploadResponse.pb-c.d" "Communication\PMR\IO\GetFilesRequest.pb-c.d" "Communication\PMR\IO\GetFilesResponse.pb-c.d" + -$(RM) "Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" "Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" "Communication\PMR\IO\KillProcessRequest.pb-c.d" "Communication\PMR\IO\KillProcessResponse.pb-c.d" "Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" "Communication\PMR\MachineStatus\MachineState.pb-c.d" "Communication\PMR\MachineStatus\MachineStatus.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" "Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" "Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" "Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" "Communication\PMR\Power\PowerDownState.pb-c.d" "Communication\PMR\Power\StartPowerDownRequest.pb-c.d" "Communication\PMR\Power\StartPowerDownResponse.pb-c.d" "Communication\PMR\Printing\AbortJobRequest.pb-c.d" "Communication\PMR\Printing\AbortJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\CurrentJobRequest.pb-c.d" "Communication\PMR\Printing\CurrentJobResponse.pb-c.d" "Communication\PMR\Printing\DispenserLiquidType.pb-c.d" "Communication\PMR\Printing\DispenserStepDivision.pb-c.d" "Communication\PMR\Printing\JobBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" "Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" "Communication\PMR\Printing\JobDispenser.pb-c.d" "Communication\PMR\Printing\JobRequest.pb-c.d" "Communication\PMR\Printing\JobResponse.pb-c.d" "Communication\PMR\Printing\JobSegment.pb-c.d" "Communication\PMR\Printing\JobSpool.pb-c.d" "Communication\PMR\Printing\JobSpoolType.pb-c.d" "Communication\PMR\Printing\JobStatus.pb-c.d" "Communication\PMR\Printing\JobTicket.pb-c.d" "Communication\PMR\Printing\JobUploadStrategy.pb-c.d" "Communication\PMR\Printing\JobWindingMethod.pb-c.d" "Communication\PMR\Printing\ProcessParameters.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" "Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" + -$(RM) "Communication\PMR\Printing\ThreadParameters.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" "Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" "Communication\PMR\Stubs\CalculateRequest.pb-c.d" "Communication\PMR\Stubs\CalculateResponse.pb-c.d" "Communication\PMR\Stubs\ProgressRequest.pb-c.d" "Communication\PMR\Stubs\ProgressResponse.pb-c.d" "Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" "Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" "Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" "Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" "Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" "Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" "Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" "Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" "Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CResponse.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" "Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" "Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" "Communication\PMR\Stubs\StubJobRequest.pb-c.d" "Communication\PMR\Stubs\StubJobResponse.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" "Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" "Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" "Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" "Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" + -$(RM) "Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" "Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" "Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" "Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" "Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" "Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" "Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" "Communication\PMR\Stubs\StubValveRequest.pb-c.d" "Communication\PMR\Stubs\StubValveResponse.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" + -$(RM) "Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" "Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" "Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" "Drivers\ADC_Sampling\ADC.d" "Drivers\ADC_Sampling\ADC_VAC.d" "Drivers\ADC_Sampling\ADC_VOC_Sensor.d" "Drivers\FPGA\FPGA.d" "Drivers\FPGA\FPGA_SPI_Comm.d" "Drivers\FPGA\FPGA_SSI_Comm.d" "Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" "Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" "Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" "Drivers\FPGA\Full_Vme\ispvme\hardware.d" "Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" "Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" "Drivers\FPGA\Motors_Driver\L6470.d" "Drivers\Flash_Memory\FATFS\Control_File_System.d" "Drivers\Flash_Memory\FATFS\cc932.d" "Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" "Drivers\Flash_Memory\FATFS\ff.d" "Drivers\Flash_Memory\FATFS\mx66l51235f.d" + -$(RM) "Drivers\Flash_Memory\FATFS\spi_flash.d" "Drivers\Flash_Memory\Flash_Memory.d" "Drivers\Heater\ADS1220.d" "Drivers\Heater\Heater.d" "Drivers\Heater\TemperatureSensor.d" "Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" "Drivers\I2C_Communication\DAC\Blower.d" "Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" "Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" "Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" "Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" "Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" "Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" "Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" "Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" "Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" "Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" "Drivers\I2C_Communication\I2C.d" "Drivers\I2C_Communication\I2C_Comm.d" "Drivers\I2C_Communication\I2C_FIFO.d" + -$(RM) "Drivers\I2C_Communication\I2C_Task.d" "Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" "Drivers\I2C_Communication\RFID_NFC\NFC.d" "Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" "Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" "Drivers\I2C_Communication\Thermo_K\MCP9600.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" "Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" "Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + -$(RM) "Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" "Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" "Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" "Drivers\Motors\Motor.d" "Drivers\Motors\MotorActions.d" "Drivers\On_Chip_Flash\Flashstore.d" "Drivers\SPI\SPI_Comm.d" "Drivers\SSI_Comm\Dancer\Dancer.d" "Drivers\SSI_Comm\SSI_Comm.d" "Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" "Drivers\USB_Communication\USBCDCD.d" "Drivers\Uart_Comm\Modbus\ascii\mbascii.d" "Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" "Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" + -$(RM) "Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" "Drivers\Uart_Comm\Modbus\functions\mbutils.d" "Drivers\Uart_Comm\Modbus\mb.d" "Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" "Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" "Drivers\Uart_Comm\Uart.d" "Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" "Drivers\Valves\Valve.d" "Drivers\flash_ram\FlashProgram.d" "Drivers\flash_ram\MCU_E2Prom.d" "Modules\AlarmHandling\AlarmHandling.d" "Modules\Control\DriverWithCallbackExample.d" "Modules\Control\MillisecTask.d" "Modules\Control\PIDAlgo.d" "Modules\Control\control.d" "Modules\Diagnostics\DiagnosticActions.d" "Modules\Diagnostics\Diagnostics.d" "Modules\Diagnostics\DiagnosticsHoming.d" "Modules\Diagnostics\DiagnosticsJogging.d" "Modules\General\GeneralHardware.d" "Modules\General\MachineStatus.d" "Modules\General\Safety.d" "Modules\General\buttons.d" "Modules\General\process.d" "Modules\Heaters\Heaters_bit.d" "Modules\Heaters\Heaters_init.d" "Modules\Heaters\Heaters_maint.d" "Modules\Heaters\Heaters_print.d" "Modules\IDS\IDS_BIT.d" + -$(RM) "Modules\IDS\IDS_Cleaning.d" "Modules\IDS\IDS_dispenser.d" "Modules\IDS\IDS_init.d" "Modules\IDS\IDS_maint.d" "Modules\IDS\IDS_print.d" "Modules\IFS\ifs.d" "Modules\Stubs_Handler\Calculate.d" "Modules\Stubs_Handler\Progress.d" "Modules\Stubs_Handler\StubRealTimeUsage.d" "Modules\Stubs_Handler\Stub_Cartridge.d" "Modules\Stubs_Handler\Stub_Dancer.d" "Modules\Stubs_Handler\Stub_Dispenser.d" "Modules\Stubs_Handler\Stub_ExtFlash.d" "Modules\Stubs_Handler\Stub_FPGARWReg.d" "Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" "Modules\Stubs_Handler\Stub_FPGAReadVersion.d" "Modules\Stubs_Handler\Stub_GPIO.d" "Modules\Stubs_Handler\Stub_HW_Version.d" "Modules\Stubs_Handler\Stub_Heater.d" "Modules\Stubs_Handler\Stub_I2C.d" "Modules\Stubs_Handler\Stub_IntADC.d" "Modules\Stubs_Handler\Stub_L6470.d" "Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" "Modules\Stubs_Handler\Stub_Motor.d" "Modules\Stubs_Handler\Stub_OptLimitSwitch.d" "Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" "Modules\Stubs_Handler\Stub_SpeedSensor.d" + -$(RM) "Modules\Stubs_Handler\Stub_Status.d" "Modules\Stubs_Handler\Stub_SteperMotor.d" "Modules\Stubs_Handler\Stub_TempSensor.d" "Modules\Stubs_Handler\Stub_TivaReg.d" "Modules\Stubs_Handler\Stub_Valve.d" "Modules\Stubs_Handler\User_Leds.d" "Modules\Stubs_Handler\temperature_sensor.d" "Modules\Thread\ThreadLoad.d" "Modules\Thread\Thread_BIT.d" "Modules\Thread\Thread_Winder.d" "Modules\Thread\Thread_init.d" "Modules\Thread\Thread_maint.d" "Modules\Thread\Thread_print.d" "Modules\Waste\Waste_BIT.d" "Modules\Waste\Waste_init.d" "Modules\Waste\Waste_maint.d" "Modules\Waste\Waste_print.d" "Modules\Waste\newWHS_init.d" "StateMachines\Initialization\InitSequence.d" "StateMachines\Initialization\PowerIdle.d" "StateMachines\Initialization\PowerOffSequence.d" "StateMachines\Printing\JobSTM.d" "StateMachines\Printing\PrintingSTM.d" + -@echo 'Finished clean' + -@echo ' ' + +post-build: + -"C:/TI/ccsv7/utils/tiobj2bin/tiobj2bin" "Embedded.out" "Embedded.bin" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armofd" "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armhex" "C:/TI/ccsv7/utils/tiobj2bin/mkhex4bin" + -@echo ' ' + +.PHONY: all clean dependents +.SECONDARY: + +-include ../makefile.targets + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/40fbaf07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/40fbaf07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6ced92348 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/40fbaf07be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IDS/IDS_BIT.c \ +../Modules/IDS/IDS_Cleaning.c \ +../Modules/IDS/IDS_dispenser.c \ +../Modules/IDS/IDS_init.c \ +../Modules/IDS/IDS_maint.c \ +../Modules/IDS/IDS_print.c + +C_DEPS += \ +./Modules/IDS/IDS_BIT.d \ +./Modules/IDS/IDS_Cleaning.d \ +./Modules/IDS/IDS_dispenser.d \ +./Modules/IDS/IDS_init.d \ +./Modules/IDS/IDS_maint.d \ +./Modules/IDS/IDS_print.d + +OBJS += \ +./Modules/IDS/IDS_BIT.obj \ +./Modules/IDS/IDS_Cleaning.obj \ +./Modules/IDS/IDS_dispenser.obj \ +./Modules/IDS/IDS_init.obj \ +./Modules/IDS/IDS_maint.obj \ +./Modules/IDS/IDS_print.obj + +OBJS__QUOTED += \ +"Modules\IDS\IDS_BIT.obj" \ +"Modules\IDS\IDS_Cleaning.obj" \ +"Modules\IDS\IDS_dispenser.obj" \ +"Modules\IDS\IDS_init.obj" \ +"Modules\IDS\IDS_maint.obj" \ +"Modules\IDS\IDS_print.obj" + +C_DEPS__QUOTED += \ +"Modules\IDS\IDS_BIT.d" \ +"Modules\IDS\IDS_Cleaning.d" \ +"Modules\IDS\IDS_dispenser.d" \ +"Modules\IDS\IDS_init.d" \ +"Modules\IDS\IDS_maint.d" \ +"Modules\IDS\IDS_print.d" + +C_SRCS__QUOTED += \ +"../Modules/IDS/IDS_BIT.c" \ +"../Modules/IDS/IDS_Cleaning.c" \ +"../Modules/IDS/IDS_dispenser.c" \ +"../Modules/IDS/IDS_init.c" \ +"../Modules/IDS/IDS_maint.c" \ +"../Modules/IDS/IDS_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/508c5705be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/508c5705be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/508c5705be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/70e39405be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/70e39405be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..55839a6f0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/36/70e39405be71001a1f70833eb9ed7011 @@ -0,0 +1,85 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Debugging/DebugDistributor.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributor.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugDistributorType.pb-c.obj: ../Communication/PMR/Debugging/DebugDistributorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugDistributorType.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/DebugLogCategory.pb-c.obj: ../Communication/PMR/Debugging/DebugLogCategory.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/DebugLogCategory.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj: ../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj: ../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj: ../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Debugging" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a0adae78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a0adae78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/37/a0adae78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00336f05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00336f05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/38/00336f05be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70014f78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70014f78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70014f78be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70146c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70146c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/70146c07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0358a78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0358a78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/b0358a78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/d014db78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/d014db78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3a/d014db78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/1013a877be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/1013a877be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/1013a877be71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/50f32b06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/50f32b06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c16845ede --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/50f32b06be71001a1f70833eb9ed7011 @@ -0,0 +1,183 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Printing/AbortJobRequest.pb-c.obj: ../Communication/PMR/Printing/AbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/AbortJobResponse.pb-c.obj: ../Communication/PMR/Printing/AbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/AbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/CurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/CurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/CurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/CurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserLiquidType.pb-c.obj: ../Communication/PMR/Printing/DispenserLiquidType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserLiquidType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/DispenserStepDivision.pb-c.obj: ../Communication/PMR/Printing/DispenserStepDivision.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/DispenserStepDivision.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj: ../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobDispenser.pb-c.obj: ../Communication/PMR/Printing/JobDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobRequest.pb-c.obj: ../Communication/PMR/Printing/JobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobResponse.pb-c.obj: ../Communication/PMR/Printing/JobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSegment.pb-c.obj: ../Communication/PMR/Printing/JobSegment.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSegment.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpool.pb-c.obj: ../Communication/PMR/Printing/JobSpool.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpool.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobSpoolType.pb-c.obj: ../Communication/PMR/Printing/JobSpoolType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobSpoolType.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobStatus.pb-c.obj: ../Communication/PMR/Printing/JobStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobStatus.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobTicket.pb-c.obj: ../Communication/PMR/Printing/JobTicket.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobTicket.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobUploadStrategy.pb-c.obj: ../Communication/PMR/Printing/JobUploadStrategy.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobUploadStrategy.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/JobWindingMethod.pb-c.obj: ../Communication/PMR/Printing/JobWindingMethod.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/JobWindingMethod.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ProcessParameters.pb-c.obj: ../Communication/PMR/Printing/ProcessParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ProcessParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj: ../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/ThreadParameters.pb-c.obj: ../Communication/PMR/Printing/ThreadParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/ThreadParameters.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj: ../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60878805be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60878805be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/60878805be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/b0080b07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/b0080b07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3b/b0080b07be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/7027d706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/7027d706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/7027d706be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/f0150e07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/f0150e07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3d/f0150e07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d29d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d29d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..790d8e600 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3e/d0d29d07be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/General/GeneralHardware.c \ +../Modules/General/MachineStatus.c \ +../Modules/General/Safety.c \ +../Modules/General/buttons.c \ +../Modules/General/process.c + +C_DEPS += \ +./Modules/General/GeneralHardware.d \ +./Modules/General/MachineStatus.d \ +./Modules/General/Safety.d \ +./Modules/General/buttons.d \ +./Modules/General/process.d + +OBJS += \ +./Modules/General/GeneralHardware.obj \ +./Modules/General/MachineStatus.obj \ +./Modules/General/Safety.obj \ +./Modules/General/buttons.obj \ +./Modules/General/process.obj + +OBJS__QUOTED += \ +"Modules\General\GeneralHardware.obj" \ +"Modules\General\MachineStatus.obj" \ +"Modules\General\Safety.obj" \ +"Modules\General\buttons.obj" \ +"Modules\General\process.obj" + +C_DEPS__QUOTED += \ +"Modules\General\GeneralHardware.d" \ +"Modules\General\MachineStatus.d" \ +"Modules\General\Safety.d" \ +"Modules\General\buttons.d" \ +"Modules\General\process.d" + +C_SRCS__QUOTED += \ +"../Modules/General/GeneralHardware.c" \ +"../Modules/General/MachineStatus.c" \ +"../Modules/General/Safety.c" \ +"../Modules/General/buttons.c" \ +"../Modules/General/process.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0c3b678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0c3b678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/3f/f0c3b678be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109b6d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109b6d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/109b6d07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/20633378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/20633378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/20633378be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d00c4107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d00c4107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d00c4107be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0de1e07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0de1e07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a52b2440b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4/d0de1e07be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c \ +../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj \ +./Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\D_EMC2302_fan.d" \ +"Drivers\I2C_Communication\WHS_Card\D_EMC2302_Fan\WHS_Fan.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00113f07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00113f07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/00113f07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b01cd807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b01cd807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/b01cd807be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/d0e3b506be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/d0e3b506be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/40/d0e3b506be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/403f4079be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/403f4079be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a2fa3e9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/403f4079be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Heaters/Heaters_bit.obj: ../Modules/Heaters/Heaters_bit.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_bit.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_init.obj: ../Modules/Heaters/Heaters_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_init.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_maint.obj: ../Modules/Heaters/Heaters_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_maint.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Heaters/Heaters_print.obj: ../Modules/Heaters/Heaters_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Heaters/Heaters_print.d_raw" --obj_directory="Modules/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/f0326678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/f0326678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/41/f0326678be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/6088ea06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/6088ea06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/42/6088ea06be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/00fa2d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/00fa2d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/00fa2d07be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/70fa6478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/70fa6478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/43/70fa6478be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/00080207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/00080207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..431533061 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/44/00080207be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj: ../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Main_Board_EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80567178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80567178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/80567178be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/d0ae6879be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/d0ae6879be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cda29b385 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/45/d0ae6879be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Thread/ThreadLoad.obj: ../Modules/Thread/ThreadLoad.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/ThreadLoad.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_BIT.obj: ../Modules/Thread/Thread_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_BIT.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_Winder.obj: ../Modules/Thread/Thread_Winder.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_Winder.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_init.obj: ../Modules/Thread/Thread_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_init.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_maint.obj: ../Modules/Thread/Thread_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_maint.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Thread/Thread_print.obj: ../Modules/Thread/Thread_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Thread/Thread_print.d_raw" --obj_directory="Modules/Thread" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/10bcac06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/10bcac06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6d62c79f6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/10bcac06be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA.c \ +../Drivers/FPGA/FPGA_SPI_Comm.c \ +../Drivers/FPGA/FPGA_SSI_Comm.c + +C_DEPS += \ +./Drivers/FPGA/FPGA.d \ +./Drivers/FPGA/FPGA_SPI_Comm.d \ +./Drivers/FPGA/FPGA_SSI_Comm.d + +OBJS += \ +./Drivers/FPGA/FPGA.obj \ +./Drivers/FPGA/FPGA_SPI_Comm.obj \ +./Drivers/FPGA/FPGA_SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA.obj" \ +"Drivers\FPGA\FPGA_SPI_Comm.obj" \ +"Drivers\FPGA\FPGA_SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA.d" \ +"Drivers\FPGA\FPGA_SPI_Comm.d" \ +"Drivers\FPGA\FPGA_SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA.c" \ +"../Drivers/FPGA/FPGA_SPI_Comm.c" \ +"../Drivers/FPGA/FPGA_SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4084b406be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4084b406be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/4084b406be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/60976e78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/60976e78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4b547970d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/60976e78be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c \ +../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj \ +./Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.obj" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\Fan\Head_Fan.d" \ +"Drivers\I2C_Communication\Head_Card\Fan\fan_click.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c" \ +"../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/e0cf6f78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/e0cf6f78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d151c449 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/46/e0cf6f78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.obj: ../Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/Head_Card/Fan/fan_click.obj: ../Drivers/I2C_Communication/Head_Card/Fan/fan_click.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/Fan/fan_click.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/806be107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/806be107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/47/806be107be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60660879be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60660879be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/60660879be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70dd0c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70dd0c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/70dd0c07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c057f378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c057f378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/c057f378be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/e0211577be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/e0211577be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a15ee2b82 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/48/e0211577be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Connection/ConnectRequest.pb-c.obj: ../Communication/PMR/Connection/ConnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/ConnectResponse.pb-c.obj: ../Communication/PMR/Connection/ConnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/ConnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DeviceInformation.pb-c.obj: ../Communication/PMR/Connection/DeviceInformation.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DeviceInformation.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectRequest.pb-c.obj: ../Communication/PMR/Connection/DisconnectRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/DisconnectResponse.pb-c.obj: ../Communication/PMR/Connection/DisconnectResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/DisconnectResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveRequest.pb-c.obj: ../Communication/PMR/Connection/KeepAliveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Connection/KeepAliveResponse.pb-c.obj: ../Communication/PMR/Connection/KeepAliveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Connection/KeepAliveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Connection" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/0027ad78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/0027ad78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/0027ad78be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/303a2207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/303a2207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/303a2207be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b06b05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b06b05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/90b06b05be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b00b0e79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b00b0e79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b00b0e79be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b052d506be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b052d506be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/b052d506be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e08d8077be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e08d8077be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/49/e08d8077be71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/b0240177be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/b0240177be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..406e76651 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4a/b0240177be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/report/distributor.c \ +../Common/report/filter.c \ +../Common/report/reportInit.c + +C_DEPS += \ +./Common/report/distributor.d \ +./Common/report/filter.d \ +./Common/report/reportInit.d + +OBJS += \ +./Common/report/distributor.obj \ +./Common/report/filter.obj \ +./Common/report/reportInit.obj + +OBJS__QUOTED += \ +"Common\report\distributor.obj" \ +"Common\report\filter.obj" \ +"Common\report\reportInit.obj" + +C_DEPS__QUOTED += \ +"Common\report\distributor.d" \ +"Common\report\filter.d" \ +"Common\report\reportInit.d" + +C_SRCS__QUOTED += \ +"../Common/report/distributor.c" \ +"../Common/report/filter.c" \ +"../Common/report/reportInit.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/30a82e78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/30a82e78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/30a82e78be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/50c50906be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/50c50906be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/50c50906be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/d0dfce78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/d0dfce78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4d/d0dfce78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/0086e707be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/0086e707be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/0086e707be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/e0af6205be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/e0af6205be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/4f/e0af6205be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a90907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a90907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/50/20a90907be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/00216607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/00216607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/00216607be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0e9a478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0e9a478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a2873b0a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/a0e9a478be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Thermo_K/MCP9600.c + +C_DEPS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.d + +OBJS += \ +./Drivers/I2C_Communication/Thermo_K/MCP9600.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Thermo_K\MCP9600.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Thermo_K/MCP9600.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e073dd07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e073dd07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9389df8e2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/53/e073dd07be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Waste/Waste_BIT.c \ +../Modules/Waste/Waste_init.c \ +../Modules/Waste/Waste_maint.c \ +../Modules/Waste/Waste_print.c \ +../Modules/Waste/newWHS_init.c + +C_DEPS += \ +./Modules/Waste/Waste_BIT.d \ +./Modules/Waste/Waste_init.d \ +./Modules/Waste/Waste_maint.d \ +./Modules/Waste/Waste_print.d \ +./Modules/Waste/newWHS_init.d + +OBJS += \ +./Modules/Waste/Waste_BIT.obj \ +./Modules/Waste/Waste_init.obj \ +./Modules/Waste/Waste_maint.obj \ +./Modules/Waste/Waste_print.obj \ +./Modules/Waste/newWHS_init.obj + +OBJS__QUOTED += \ +"Modules\Waste\Waste_BIT.obj" \ +"Modules\Waste\Waste_init.obj" \ +"Modules\Waste\Waste_maint.obj" \ +"Modules\Waste\Waste_print.obj" \ +"Modules\Waste\newWHS_init.obj" + +C_DEPS__QUOTED += \ +"Modules\Waste\Waste_BIT.d" \ +"Modules\Waste\Waste_init.d" \ +"Modules\Waste\Waste_maint.d" \ +"Modules\Waste\Waste_print.d" \ +"Modules\Waste\newWHS_init.d" + +C_SRCS__QUOTED += \ +"../Modules/Waste/Waste_BIT.c" \ +"../Modules/Waste/Waste_init.c" \ +"../Modules/Waste/Waste_maint.c" \ +"../Modules/Waste/Waste_print.c" \ +"../Modules/Waste/newWHS_init.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/d0d73407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/d0d73407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/54/d0d73407be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/f00fd478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/f00fd478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f57d10d43 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/55/f00fd478be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/On_Chip_Flash/Flashstore.obj: ../Drivers/On_Chip_Flash/Flashstore.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/On_Chip_Flash/Flashstore.d_raw" --obj_directory="Drivers/On_Chip_Flash" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1052e276be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1052e276be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7658bc5b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1052e276be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c \ +../Common/Sys_PinOut_Config/Pin.c \ +../Common/Sys_PinOut_Config/Pin_config.c + +C_DEPS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.d \ +./Common/Sys_PinOut_Config/Pin.d \ +./Common/Sys_PinOut_Config/Pin_config.d + +OBJS += \ +./Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj \ +./Common/Sys_PinOut_Config/Pin.obj \ +./Common/Sys_PinOut_Config/Pin_config.obj + +OBJS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.obj" \ +"Common\Sys_PinOut_Config\Pin.obj" \ +"Common\Sys_PinOut_Config\Pin_config.obj" + +C_DEPS__QUOTED += \ +"Common\Sys_PinOut_Config\MCU_MAIN_pinout.d" \ +"Common\Sys_PinOut_Config\Pin.d" \ +"Common\Sys_PinOut_Config\Pin_config.d" + +C_SRCS__QUOTED += \ +"../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c" \ +"../Common/Sys_PinOut_Config/Pin.c" \ +"../Common/Sys_PinOut_Config/Pin_config.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1090dd06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1090dd06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/1090dd06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/e0a9da06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/e0a9da06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/56/e0a9da06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/60f25077be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/60f25077be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/57/60f25077be71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/20a31006be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/20a31006be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/20a31006be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/400ac376be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/400ac376be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/400ac376be71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/40d65905be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/40d65905be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/40d65905be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/5054c678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/5054c678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/5054c678be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/704e5d77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/704e5d77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/704e5d77be71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/e046fa76be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/e046fa76be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ec3f0b835 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/58/e046fa76be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/protobuf-c/protobuf-c.c + +C_DEPS += \ +./Common/protobuf-c/protobuf-c.d + +OBJS += \ +./Common/protobuf-c/protobuf-c.obj + +OBJS__QUOTED += \ +"Common\protobuf-c\protobuf-c.obj" + +C_DEPS__QUOTED += \ +"Common\protobuf-c\protobuf-c.d" + +C_SRCS__QUOTED += \ +"../Common/protobuf-c/protobuf-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/008f7278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/008f7278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/008f7278be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/60dd4407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/60dd4407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8f295c82e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/60dd4407be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Dancer/Dancer.c + +C_DEPS += \ +./Drivers/SSI_Comm/Dancer/Dancer.d + +OBJS += \ +./Drivers/SSI_Comm/Dancer/Dancer.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Dancer\Dancer.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Dancer/Dancer.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0076878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0076878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2c8a0951f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5b/b0076878be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\ADC\Head_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/c087f776be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/c087f776be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0d60cd57 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5c/c087f776be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Utilities/RFIDTagHandling.obj: ../Common/Utilities/RFIDTagHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/RFIDTagHandling.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Update.obj: ../Common/Utilities/Update.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Update.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/Utils.obj: ../Common/Utilities/Utils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/Utils.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/idle_task.obj: ../Common/Utilities/idle_task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/idle_task.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Utilities/ustdlib.obj: ../Common/Utilities/ustdlib.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Utilities/ustdlib.d_raw" --obj_directory="Common/Utilities" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80910577be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80910577be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..460474bb5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/80910577be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/CommunicationTask.c \ +../Communication/Connection.c \ +../Communication/Container.c + +C_DEPS += \ +./Communication/CommunicationTask.d \ +./Communication/Connection.d \ +./Communication/Container.d + +OBJS += \ +./Communication/CommunicationTask.obj \ +./Communication/Connection.obj \ +./Communication/Container.obj + +OBJS__QUOTED += \ +"Communication\CommunicationTask.obj" \ +"Communication\Connection.obj" \ +"Communication\Container.obj" + +C_DEPS__QUOTED += \ +"Communication\CommunicationTask.d" \ +"Communication\Connection.d" \ +"Communication\Container.d" + +C_SRCS__QUOTED += \ +"../Communication/CommunicationTask.c" \ +"../Communication/Connection.c" \ +"../Communication/Container.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d04f6f77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d04f6f77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/d04f6f77be71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/e0ed6a78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/e0ed6a78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5d/e0ed6a78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/30868d77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/30868d77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/30868d77be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50b94779be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50b94779be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/5e/50b94779be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/900ace07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/900ace07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6/900ace07be71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0f74a07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0f74a07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/61/e0f74a07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10fba578be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10fba578be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0a0915c73 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/10fba578be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Thermo_K/MCP9600.obj: ../Drivers/I2C_Communication/Thermo_K/MCP9600.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Thermo_K/MCP9600.d_raw" --obj_directory="Drivers/I2C_Communication/Thermo_K" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/608a3d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/608a3d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/608a3d07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/a0dbd078be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/a0dbd078be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f2fecf89b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/63/a0dbd078be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/On_Chip_Flash/Flashstore.c + +C_DEPS += \ +./Drivers/On_Chip_Flash/Flashstore.d + +OBJS += \ +./Drivers/On_Chip_Flash/Flashstore.obj + +OBJS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.obj" + +C_DEPS__QUOTED += \ +"Drivers\On_Chip_Flash\Flashstore.d" + +C_SRCS__QUOTED += \ +"../Drivers/On_Chip_Flash/Flashstore.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/604cf406be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/604cf406be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..74730e604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/64/604cf406be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Heaters\Head_Heaters.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/00d0b107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/00d0b107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63bbc10a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/00d0b107be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IDS/IDS_BIT.obj: ../Modules/IDS/IDS_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_BIT.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_Cleaning.obj: ../Modules/IDS/IDS_Cleaning.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_Cleaning.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_dispenser.obj: ../Modules/IDS/IDS_dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_dispenser.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_init.obj: ../Modules/IDS/IDS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_init.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_maint.obj: ../Modules/IDS/IDS_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_maint.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/IDS/IDS_print.obj: ../Modules/IDS/IDS_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IDS/IDS_print.d_raw" --obj_directory="Modules/IDS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90c64a79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90c64a79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90c64a79be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90f16907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90f16907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/90f16907be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d090ae06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d090ae06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/65/d090ae06be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/30406978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/30406978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c2aaaeb6f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/30406978be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.obj: ../Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/ADC/Head_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/304e3d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/304e3d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/304e3d78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/3070de78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/3070de78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/3070de78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60869706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60869706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/60869706be71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/70934207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/70934207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/66/70934207be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/40146278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/40146278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2d8d13e32 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/40146278be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\I2C_Dispenser_Card_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/6092d778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/6092d778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7bb4b0e24 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/6092d778be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SPI/SPI_Comm.c + +C_DEPS += \ +./Drivers/SPI/SPI_Comm.d + +OBJS += \ +./Drivers/SPI/SPI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SPI\SPI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SPI\SPI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SPI/SPI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/c0ad3e78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/c0ad3e78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/67/c0ad3e78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/006e3379be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/006e3379be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2b0260e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/006e3379be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Diagnostics/DiagnosticActions.obj: ../Modules/Diagnostics/DiagnosticActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticActions.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/Diagnostics.obj: ../Modules/Diagnostics/Diagnostics.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/Diagnostics.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsHoming.obj: ../Modules/Diagnostics/DiagnosticsHoming.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsHoming.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Diagnostics/DiagnosticsJogging.obj: ../Modules/Diagnostics/DiagnosticsJogging.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Diagnostics/DiagnosticsJogging.d_raw" --obj_directory="Modules/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/b0037407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/b0037407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d58afd1c9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/b0037407be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/flash_ram/FlashProgram.c \ +../Drivers/flash_ram/MCU_E2Prom.c + +C_DEPS += \ +./Drivers/flash_ram/FlashProgram.d \ +./Drivers/flash_ram/MCU_E2Prom.d + +OBJS += \ +./Drivers/flash_ram/FlashProgram.obj \ +./Drivers/flash_ram/MCU_E2Prom.obj + +OBJS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.obj" \ +"Drivers\flash_ram\MCU_E2Prom.obj" + +C_DEPS__QUOTED += \ +"Drivers\flash_ram\FlashProgram.d" \ +"Drivers\flash_ram\MCU_E2Prom.d" + +C_SRCS__QUOTED += \ +"../Drivers/flash_ram/FlashProgram.c" \ +"../Drivers/flash_ram/MCU_E2Prom.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/f08eaa78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/f08eaa78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e336f53b6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/69/f08eaa78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj: ../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/60193b07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/60193b07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..46d9242fd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6a/60193b07be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Motors/Motor.obj: ../Drivers/Motors/Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/Motor.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Motors/MotorActions.obj: ../Drivers/Motors/MotorActions.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Motors/MotorActions.d_raw" --obj_directory="Drivers/Motors" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/6036d405be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/6036d405be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6d/6036d405be71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/609a6407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/609a6407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6e/609a6407be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/20f77907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/20f77907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/20f77907be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c024c976be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c024c976be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/6f/c024c976be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/60942a79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/60942a79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a01b7c044 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/60942a79be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Control/DriverWithCallbackExample.c \ +../Modules/Control/MillisecTask.c \ +../Modules/Control/PIDAlgo.c \ +../Modules/Control/control.c + +C_DEPS += \ +./Modules/Control/DriverWithCallbackExample.d \ +./Modules/Control/MillisecTask.d \ +./Modules/Control/PIDAlgo.d \ +./Modules/Control/control.d + +OBJS += \ +./Modules/Control/DriverWithCallbackExample.obj \ +./Modules/Control/MillisecTask.obj \ +./Modules/Control/PIDAlgo.obj \ +./Modules/Control/control.obj + +OBJS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.obj" \ +"Modules\Control\MillisecTask.obj" \ +"Modules\Control\PIDAlgo.obj" \ +"Modules\Control\control.obj" + +C_DEPS__QUOTED += \ +"Modules\Control\DriverWithCallbackExample.d" \ +"Modules\Control\MillisecTask.d" \ +"Modules\Control\PIDAlgo.d" \ +"Modules\Control\control.d" + +C_SRCS__QUOTED += \ +"../Modules/Control/DriverWithCallbackExample.c" \ +"../Modules/Control/MillisecTask.c" \ +"../Modules/Control/PIDAlgo.c" \ +"../Modules/Control/control.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/907cc106be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/907cc106be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/907cc106be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e02a0407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e02a0407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7/e02a0407be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/4054fe78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/4054fe78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..14b4cd918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/70/4054fe78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.d + +OBJS += \ +./Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\WHS_UART\WHS_Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/70c00206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/70c00206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c7aad50c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/70c00206be71001a1f70833eb9ed7011 @@ -0,0 +1,162 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/IO/CreateRequest.pb-c.obj: ../Communication/PMR/IO/CreateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/CreateResponse.pb-c.obj: ../Communication/PMR/IO/CreateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/CreateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteRequest.pb-c.obj: ../Communication/PMR/IO/DeleteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/DeleteResponse.pb-c.obj: ../Communication/PMR/IO/DeleteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/DeleteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj: ../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/ExecuteProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileAttribute.pb-c.obj: ../Communication/PMR/IO/FileAttribute.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileAttribute.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileChunkUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadRequest.pb-c.obj: ../Communication/PMR/IO/FileDownloadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileDownloadResponse.pb-c.obj: ../Communication/PMR/IO/FileDownloadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileDownloadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileInfo.pb-c.obj: ../Communication/PMR/IO/FileInfo.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileInfo.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadRequest.pb-c.obj: ../Communication/PMR/IO/FileUploadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/FileUploadResponse.pb-c.obj: ../Communication/PMR/IO/FileUploadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/FileUploadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesRequest.pb-c.obj: ../Communication/PMR/IO/GetFilesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetFilesResponse.pb-c.obj: ../Communication/PMR/IO/GetFilesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetFilesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj: ../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/GetStorageInfoResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessRequest.pb-c.obj: ../Communication/PMR/IO/KillProcessRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessRequest.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/IO/KillProcessResponse.pb-c.obj: ../Communication/PMR/IO/KillProcessResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/IO/KillProcessResponse.pb-c.d_raw" --obj_directory="Communication/PMR/IO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c0992307be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c0992307be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1ff1fba33 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/72/c0992307be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj: ../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/601ccd76be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/601ccd76be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b5f8c66dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/73/601ccd76be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SWUpdate/FileSystem.c \ +../Common/SWUpdate/FirmwareUpgrade.c + +C_DEPS += \ +./Common/SWUpdate/FileSystem.d \ +./Common/SWUpdate/FirmwareUpgrade.d + +OBJS += \ +./Common/SWUpdate/FileSystem.obj \ +./Common/SWUpdate/FirmwareUpgrade.obj + +OBJS__QUOTED += \ +"Common\SWUpdate\FileSystem.obj" \ +"Common\SWUpdate\FirmwareUpgrade.obj" + +C_DEPS__QUOTED += \ +"Common\SWUpdate\FileSystem.d" \ +"Common\SWUpdate\FirmwareUpgrade.d" + +C_SRCS__QUOTED += \ +"../Common/SWUpdate/FileSystem.c" \ +"../Common/SWUpdate/FirmwareUpgrade.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70b0db05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70b0db05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b27c5e3b8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70b0db05be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c \ +../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c + +C_DEPS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d + +OBJS += \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj \ +./Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.obj" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ActivateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionRequest.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\ValidateVersionResponse.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDescriptor.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionFileDestination.pb-c.d" \ +"Communication\PMR\FirmwareUpgrade\VersionPackageDescriptor.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c" \ +"../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70c4a806be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70c4a806be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f07a9a1c6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/70c4a806be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/ADC_Sampling/ADC.obj: ../Drivers/ADC_Sampling/ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VAC.obj: ../Drivers/ADC_Sampling/ADC_VAC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VAC.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/ADC_Sampling/ADC_VOC_Sensor.obj: ../Drivers/ADC_Sampling/ADC_VOC_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/ADC_Sampling/ADC_VOC_Sensor.d_raw" --obj_directory="Drivers/ADC_Sampling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/801d7107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/801d7107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..42f679a53 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/801d7107be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Valves/Valve.obj: ../Drivers/Valves/Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Valves/Valve.d_raw" --obj_directory="Drivers/Valves" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0c75b77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0c75b77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fe052d491 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0c75b77be71001a1f70833eb9ed7011 @@ -0,0 +1,104 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c \ +../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c \ +../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d + +OBJS += \ +./Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj \ +./Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.obj" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\EmbeddedParameters\AlarmHandlingItem.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\AlarmSourceType.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\ConfigurationParameters.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\DispenserRunningData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MachineCalibrationDataResponse.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankData.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupRequest.pb-c.d" \ +"Communication\PMR\EmbeddedParameters\MidTankDataSetupResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c" \ +"../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0d8e478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0d8e478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aee99823b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/74/d0d8e478be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/USB_Communication/USBCDCD.c + +C_DEPS += \ +./Drivers/USB_Communication/USBCDCD.d + +OBJS += \ +./Drivers/USB_Communication/USBCDCD.obj + +OBJS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.obj" + +C_DEPS__QUOTED += \ +"Drivers\USB_Communication\USBCDCD.d" + +C_SRCS__QUOTED += \ +"../Drivers/USB_Communication/USBCDCD.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/30274605be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/30274605be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..72b711391 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/76/30274605be71001a1f70833eb9ed7011 @@ -0,0 +1,211 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +C55_SRCS := +A_SRCS := +CFG_UPPER_SRCS := +CFG_SRCS := +ASM_UPPER_SRCS := +EXE_SRCS := +LDS_UPPER_SRCS := +CPP_SRCS := +CMD_SRCS := +O_SRCS := +ELF_SRCS := +C??_SRCS := +C64_SRCS := +C67_SRCS := +SA_SRCS := +S64_SRCS := +OPT_SRCS := +CXX_SRCS := +S67_SRCS := +S??_SRCS := +PDE_SRCS := +SV7A_SRCS := +K_SRCS := +CLA_SRCS := +S55_SRCS := +LD_UPPER_SRCS := +OUT_SRCS := +INO_SRCS := +LIB_SRCS := +ASM_SRCS := +S_UPPER_SRCS := +S43_SRCS := +LD_SRCS := +CMD_UPPER_SRCS := +C_UPPER_SRCS := +C++_SRCS := +C43_SRCS := +OBJ_SRCS := +LDS_SRCS := +S_SRCS := +CC_SRCS := +S62_SRCS := +C62_SRCS := +C_SRCS := +C55_DEPS := +C_UPPER_DEPS := +S67_DEPS := +S62_DEPS := +S_DEPS := +OPT_DEPS := +C??_DEPS := +ASM_UPPER_DEPS := +S??_DEPS := +C64_DEPS := +CXX_DEPS := +S64_DEPS := +INO_DEPS := +GEN_CMDS := +GEN_FILES := +CLA_DEPS := +S55_DEPS := +SV7A_DEPS := +EXE_OUTPUTS := +C62_DEPS := +C67_DEPS := +PDE_DEPS := +GEN_MISC_DIRS := +K_DEPS := +C_DEPS := +CC_DEPS := +BIN_OUTPUTS := +GEN_OPTS := +C++_DEPS := +C43_DEPS := +S43_DEPS := +OBJS := +ASM_DEPS := +GEN_MISC_FILES := +S_UPPER_DEPS := +CPP_DEPS := +SA_DEPS := +C++_DEPS__QUOTED := +OPT_DEPS__QUOTED := +S_UPPER_DEPS__QUOTED := +SA_DEPS__QUOTED := +C??_DEPS__QUOTED := +S67_DEPS__QUOTED := +GEN_MISC_DIRS__QUOTED := +C55_DEPS__QUOTED := +CC_DEPS__QUOTED := +ASM_UPPER_DEPS__QUOTED := +SV7A_DEPS__QUOTED := +S??_DEPS__QUOTED := +OBJS__QUOTED := +C67_DEPS__QUOTED := +K_DEPS__QUOTED := +S55_DEPS__QUOTED := +GEN_CMDS__QUOTED := +GEN_MISC_FILES__QUOTED := +INO_DEPS__QUOTED := +C62_DEPS__QUOTED := +C_DEPS__QUOTED := +C_UPPER_DEPS__QUOTED := +C43_DEPS__QUOTED := +CPP_DEPS__QUOTED := +BIN_OUTPUTS__QUOTED := +GEN_FILES__QUOTED := +C64_DEPS__QUOTED := +CXX_DEPS__QUOTED := +CLA_DEPS__QUOTED := +S_DEPS__QUOTED := +ASM_DEPS__QUOTED := +S43_DEPS__QUOTED := +EXE_OUTPUTS__QUOTED := +S64_DEPS__QUOTED := +S62_DEPS__QUOTED := +PDE_DEPS__QUOTED := +GEN_OPTS__QUOTED := + +# Every subdirectory with source files must be described here +SUBDIRS := \ +. \ +Common/SWUpdate \ +Common/SW_Info \ +Common/Software_CRC \ +Common/Sys_PinOut_Config \ +Common/Utilities \ +Common/protobuf-c \ +Common/report \ +Communication \ +Communication/PMR/Common \ +Communication/PMR/Connection \ +Communication/PMR/Debugging \ +Communication/PMR/Diagnostics \ +Communication/PMR/EmbeddedParameters \ +Communication/PMR/FirmwareUpgrade \ +Communication/PMR/Hardware \ +Communication/PMR/IO \ +Communication/PMR/MachineStatus \ +Communication/PMR/Power \ +Communication/PMR/Printing \ +Communication/PMR/Stubs \ +Communication/PMR/ThreadLoading \ +Drivers/ADC_Sampling \ +Drivers/FPGA \ +Drivers/FPGA/FPGA_GPIO \ +Drivers/FPGA/FPGA_INTERRUPTS \ +Drivers/FPGA/Full_Vme \ +Drivers/FPGA/Full_Vme/ispvme \ +Drivers/FPGA/Motors_Driver \ +Drivers/Flash_Memory/FATFS \ +Drivers/Flash_Memory \ +Drivers/Heater \ +Drivers/I2C_Communication/ADC_MUX \ +Drivers/I2C_Communication/DAC \ +Drivers/I2C_Communication/Dispenser_Card/EEPROM \ +Drivers/I2C_Communication/Dispenser_Card \ +Drivers/I2C_Communication/Dispenser_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/ADC \ +Drivers/I2C_Communication/Head_Card/EEPROM \ +Drivers/I2C_Communication/Head_Card/Fan \ +Drivers/I2C_Communication/Head_Card \ +Drivers/I2C_Communication/Head_Card/IO_Ports \ +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters \ +Drivers/I2C_Communication/Head_Card/PT100 \ +Drivers/I2C_Communication \ +Drivers/I2C_Communication/Main_Board_EEPROM \ +Drivers/I2C_Communication/RFID_NFC \ +Drivers/I2C_Communication/RFID_NFC/logi-tag \ +Drivers/I2C_Communication/Thermo_K \ +Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat \ +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100 \ +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan \ +Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC \ +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower \ +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX \ +Drivers/I2C_Communication/WHS_Card/EEPROM \ +Drivers/I2C_Communication/WHS_Card \ +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555 \ +Drivers/Motors \ +Drivers/On_Chip_Flash \ +Drivers/SPI \ +Drivers/SSI_Comm/Dancer \ +Drivers/SSI_Comm \ +Drivers/SSI_Comm/Speed_Sensor \ +Drivers/USB_Communication \ +Drivers/Uart_Comm/Modbus/ascii \ +Drivers/Uart_Comm/Modbus/functions \ +Drivers/Uart_Comm/Modbus \ +Drivers/Uart_Comm/Modbus/rtu \ +Drivers/Uart_Comm \ +Drivers/Uart_Comm/WHS_UART \ +Drivers/Valves \ +Drivers/flash_ram \ +Modules/AlarmHandling \ +Modules/Control \ +Modules/Diagnostics \ +Modules/General \ +Modules/Heaters \ +Modules/IDS \ +Modules/IFS \ +Modules/Stubs_Handler \ +Modules/Thread \ +Modules/Waste \ +StateMachines/Initialization \ +StateMachines/Printing \ + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/202fca06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/202fca06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..45308d60d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/202fca06be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/FATFS/Control_File_System.obj: ../Drivers/Flash_Memory/FATFS/Control_File_System.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/Control_File_System.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/cc932.obj: ../Drivers/Flash_Memory/FATFS/cc932.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/cc932.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/ff.obj: ../Drivers/Flash_Memory/FATFS/ff.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/ff.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/mx66l51235f.obj: ../Drivers/Flash_Memory/FATFS/mx66l51235f.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/mx66l51235f.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Flash_Memory/FATFS/spi_flash.obj: ../Drivers/Flash_Memory/FATFS/spi_flash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/FATFS/spi_flash.d_raw" --obj_directory="Drivers/Flash_Memory/FATFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/e003cc06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/e003cc06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/77/e003cc06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/d05b6179be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/d05b6179be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/d05b6179be71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0292978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0292978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/78/f0292978be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/40a65507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/40a65507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/40a65507be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/e05d0b77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/e05d0b77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/e05d0b77be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f06e5c78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f06e5c78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9c82ff358 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f06e5c78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/DAC/Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/DAC/Blower.d + +OBJS += \ +./Drivers/I2C_Communication/DAC/Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\DAC\Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/DAC/Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f0870106be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f0870106be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/79/f0870106be71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/70d0e878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/70d0e878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/70d0e878be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c0315e07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c0315e07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d0b8b3cfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7a/c0315e07be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj: ../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbfuncother.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/functions/mbutils.obj: ../Drivers/Uart_Comm/Modbus/functions/mbutils.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/functions/mbutils.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/functions" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/80cdfb76be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/80cdfb76be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..937d2aa65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/80cdfb76be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/protobuf-c/protobuf-c.obj: ../Common/protobuf-c/protobuf-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages/ti/ndk/inc/bsd" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules/Stubs_Handler" --include_path="C:/TI/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/protobuf-c/protobuf-c.d_raw" --obj_directory="Common/protobuf-c" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f097e778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f097e778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f0aa98d13 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7b/f097e778be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/ascii/mbascii.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/ascii/mbascii.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\ascii\mbascii.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/ascii/mbascii.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/00a3ce76be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/00a3ce76be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..71dcae149 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/00a3ce76be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SWUpdate/FileSystem.obj: ../Common/SWUpdate/FileSystem.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FileSystem.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/SWUpdate/FirmwareUpgrade.obj: ../Common/SWUpdate/FirmwareUpgrade.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SWUpdate/FirmwareUpgrade.d_raw" --obj_directory="Common/SWUpdate" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/d001b106be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/d001b106be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8cce4b3ae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7c/d001b106be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d + +OBJS += \ +./Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_GPIO\FPGA_GPIO.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/3089d176be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/3089d176be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ed806ae47 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/3089d176be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/SW_Info/SW_Info.obj: ../Common/SW_Info/SW_Info.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/SW_Info/SW_Info.d_raw" --obj_directory="Common/SW_Info" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b00e9305be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b00e9305be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/b00e9305be71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f0bd6f07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f0bd6f07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7d/f0bd6f07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/80a8c806be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/80a8c806be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7e/80a8c806be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/102e5f78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/102e5f78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5c32f02ce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/102e5f78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\EEPROM\Dispenser_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0754678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0754678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/7f/f0754678be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/70debc78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/70debc78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ef02d3fd2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/70debc78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_TCA9546_ADC_MUX\TCA9546_Driver.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/808b7d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/808b7d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8/808b7d78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/c04b7279be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/c04b7279be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cb2c2ad65 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/81/c04b7279be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Initialization/InitSequence.c \ +../StateMachines/Initialization/PowerIdle.c \ +../StateMachines/Initialization/PowerOffSequence.c + +C_DEPS += \ +./StateMachines/Initialization/InitSequence.d \ +./StateMachines/Initialization/PowerIdle.d \ +./StateMachines/Initialization/PowerOffSequence.d + +OBJS += \ +./StateMachines/Initialization/InitSequence.obj \ +./StateMachines/Initialization/PowerIdle.obj \ +./StateMachines/Initialization/PowerOffSequence.obj + +OBJS__QUOTED += \ +"StateMachines\Initialization\InitSequence.obj" \ +"StateMachines\Initialization\PowerIdle.obj" \ +"StateMachines\Initialization\PowerOffSequence.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Initialization\InitSequence.d" \ +"StateMachines\Initialization\PowerIdle.d" \ +"StateMachines\Initialization\PowerOffSequence.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Initialization/InitSequence.c" \ +"../StateMachines/Initialization/PowerIdle.c" \ +"../StateMachines/Initialization/PowerOffSequence.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f00c1f77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f00c1f77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..50c4bbea0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/82/f00c1f77be71001a1f70833eb9ed7011 @@ -0,0 +1,86 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Debugging/DebugDistributor.pb-c.c \ +../Communication/PMR/Debugging/DebugDistributorType.pb-c.c \ +../Communication/PMR/Debugging/DebugLogCategory.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c \ +../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c \ +../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c \ +../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.d \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.d \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.d \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.d \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.d \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Debugging/DebugDistributor.pb-c.obj \ +./Communication/PMR/Debugging/DebugDistributorType.pb-c.obj \ +./Communication/PMR/Debugging/DebugLogCategory.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.obj \ +./Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StartDebugLogResponse.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogRequest.pb-c.obj \ +./Communication/PMR/Debugging/StopDebugLogResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.obj" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.obj" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.obj" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.obj" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Debugging\DebugDistributor.pb-c.d" \ +"Communication\PMR\Debugging\DebugDistributorType.pb-c.d" \ +"Communication\PMR\Debugging\DebugLogCategory.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetDebugLogCategoryResponse.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsRequest.pb-c.d" \ +"Communication\PMR\Debugging\SetupDebugDisributorsResponse.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StartDebugLogResponse.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogRequest.pb-c.d" \ +"Communication\PMR\Debugging\StopDebugLogResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Debugging/DebugDistributor.pb-c.c" \ +"../Communication/PMR/Debugging/DebugDistributorType.pb-c.c" \ +"../Communication/PMR/Debugging/DebugLogCategory.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetDebugLogCategoryResponse.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsRequest.pb-c.c" \ +"../Communication/PMR/Debugging/SetupDebugDisributorsResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StartDebugLogResponse.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogRequest.pb-c.c" \ +"../Communication/PMR/Debugging/StopDebugLogResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10af8878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10af8878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/83/10af8878be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/80f68677be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/80f68677be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/80f68677be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/c0e3ed06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/c0e3ed06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4448a628e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/84/c0e3ed06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\I2C_Head_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/c0ffe376be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/c0ffe376be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..811c046a3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/85/c0ffe376be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Sys_PinOut_Config/MCU_MAIN_pinout.obj: ../Common/Sys_PinOut_Config/MCU_MAIN_pinout.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/MCU_MAIN_pinout.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin.obj: ../Common/Sys_PinOut_Config/Pin.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Common/Sys_PinOut_Config/Pin_config.obj: ../Common/Sys_PinOut_Config/Pin_config.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Sys_PinOut_Config/Pin_config.d_raw" --obj_directory="Common/Sys_PinOut_Config" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/20b3f678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/20b3f678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d5066cc7f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/86/20b3f678be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c \ +../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.d \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj \ +./Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.obj" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\rtu\mbcrc.d" \ +"Drivers\Uart_Comm\Modbus\rtu\mbrtu.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c" \ +"../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60227807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60227807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7e6705062 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60227807be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/AlarmHandling/AlarmHandling.c + +C_DEPS += \ +./Modules/AlarmHandling/AlarmHandling.d + +OBJS += \ +./Modules/AlarmHandling/AlarmHandling.obj + +OBJS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.obj" + +C_DEPS__QUOTED += \ +"Modules\AlarmHandling\AlarmHandling.d" + +C_SRCS__QUOTED += \ +"../Modules/AlarmHandling/AlarmHandling.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60348105be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60348105be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..de1ba5fae --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/60348105be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Common/ErrorCode.pb-c.obj: ../Communication/PMR/Common/ErrorCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorCode.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/ErrorResponse.pb-c.obj: ../Communication/PMR/Common/ErrorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/ErrorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageContainer.pb-c.obj: ../Communication/PMR/Common/MessageContainer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageContainer.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Common/MessageType.pb-c.obj: ../Communication/PMR/Common/MessageType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Common/MessageType.pb-c.d_raw" --obj_directory="Communication/PMR/Common" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b009bb78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b009bb78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/87/b009bb78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/7009dc06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/7009dc06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/7009dc06be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/70117678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/70117678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/70117678be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c090e606be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c090e606be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e7680d0ef --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/88/c090e606be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\EEPROM\Head_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/00f1f006be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/00f1f006be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fa007a15a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/89/00f1f006be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\IO_Ports\Head_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/00afc078be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/00afc078be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/00afc078be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10422c79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10422c79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fef65b56e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/10422c79be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Control/DriverWithCallbackExample.obj: ../Modules/Control/DriverWithCallbackExample.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/DriverWithCallbackExample.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/MillisecTask.obj: ../Modules/Control/MillisecTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/MillisecTask.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/PIDAlgo.obj: ../Modules/Control/PIDAlgo.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/PIDAlgo.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Control/control.obj: ../Modules/Control/control.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Control/control.d_raw" --obj_directory="Modules/Control" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/304a4907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/304a4907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2ef8f47b3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/304a4907be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/SSI_Comm.c + +C_DEPS += \ +./Drivers/SSI_Comm/SSI_Comm.d + +OBJS += \ +./Drivers/SSI_Comm/SSI_Comm.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\SSI_Comm.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/SSI_Comm.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/d01a6377be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/d01a6377be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8c/d01a6377be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/9030a406be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/9030a406be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..708b11b8a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/8f/9030a406be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj: ../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj: ../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d_raw" --obj_directory="Communication/PMR/ThreadLoading" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/409b1377be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/409b1377be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e842fb84f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9/409b1377be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Connection/ConnectRequest.pb-c.c \ +../Communication/PMR/Connection/ConnectResponse.pb-c.c \ +../Communication/PMR/Connection/DeviceInformation.pb-c.c \ +../Communication/PMR/Connection/DisconnectRequest.pb-c.c \ +../Communication/PMR/Connection/DisconnectResponse.pb-c.c \ +../Communication/PMR/Connection/KeepAliveRequest.pb-c.c \ +../Communication/PMR/Connection/KeepAliveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.d \ +./Communication/PMR/Connection/ConnectResponse.pb-c.d \ +./Communication/PMR/Connection/DeviceInformation.pb-c.d \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.d \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.d \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.d \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Connection/ConnectRequest.pb-c.obj \ +./Communication/PMR/Connection/ConnectResponse.pb-c.obj \ +./Communication/PMR/Connection/DeviceInformation.pb-c.obj \ +./Communication/PMR/Connection/DisconnectRequest.pb-c.obj \ +./Communication/PMR/Connection/DisconnectResponse.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveRequest.pb-c.obj \ +./Communication/PMR/Connection/KeepAliveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.obj" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.obj" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Connection\ConnectRequest.pb-c.d" \ +"Communication\PMR\Connection\ConnectResponse.pb-c.d" \ +"Communication\PMR\Connection\DeviceInformation.pb-c.d" \ +"Communication\PMR\Connection\DisconnectRequest.pb-c.d" \ +"Communication\PMR\Connection\DisconnectResponse.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveRequest.pb-c.d" \ +"Communication\PMR\Connection\KeepAliveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Connection/ConnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/ConnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/DeviceInformation.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectRequest.pb-c.c" \ +"../Communication/PMR/Connection/DisconnectResponse.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveRequest.pb-c.c" \ +"../Communication/PMR/Connection/KeepAliveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/007b5707be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/007b5707be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fdb00b0a6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/007b5707be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/ascii/mbascii.obj: ../Drivers/Uart_Comm/Modbus/ascii/mbascii.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/ascii/mbascii.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/ascii" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/3077c878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/3077c878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3c6a8f895 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/91/3077c878be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\TCA9555_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\IO_Extender_Ports_TCA9555\WHS_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/304fe006be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/304fe006be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..248408ccc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/304fe006be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c + +C_DEPS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d + +OBJS += \ +./Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Dispenser_Card\IO_Ports\Dispenser_IO.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/e04b0279be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/e04b0279be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..49e799865 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/92/e04b0279be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Valves/Valve.c + +C_DEPS += \ +./Drivers/Valves/Valve.d + +OBJS += \ +./Drivers/Valves/Valve.obj + +OBJS__QUOTED += \ +"Drivers\Valves\Valve.obj" + +C_DEPS__QUOTED += \ +"Drivers\Valves\Valve.d" + +C_SRCS__QUOTED += \ +"../Drivers/Valves/Valve.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/802f7a05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/802f7a05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..148485096 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/93/802f7a05be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/CommunicationTask.obj: ../Communication/CommunicationTask.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/CommunicationTask.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Connection.obj: ../Communication/Connection.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Connection.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/Container.obj: ../Communication/Container.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/Container.d_raw" --obj_directory="Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/301c2707be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/301c2707be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3a03cd26b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/301c2707be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj: ../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/a0315d05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/a0315d05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1de9654a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/97/a0315d05be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Software_CRC/sw_crc.c + +C_DEPS += \ +./Common/Software_CRC/sw_crc.d + +OBJS += \ +./Common/Software_CRC/sw_crc.obj + +OBJS__QUOTED += \ +"Common\Software_CRC\sw_crc.obj" + +C_DEPS__QUOTED += \ +"Common\Software_CRC\sw_crc.d" + +C_SRCS__QUOTED += \ +"../Common/Software_CRC/sw_crc.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/90b8b706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/90b8b706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..43102a930 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/98/90b8b706be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\FPGA_Programming_Up.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/b06c2a06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/b06c2a06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/b06c2a06be71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0fd5978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0fd5978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9a/f0fd5978be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/6031fc78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/6031fc78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c49132708 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/6031fc78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Uart.obj: ../Drivers/Uart_Comm/Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Uart.d_raw" --obj_directory="Drivers/Uart_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0932179be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0932179be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b37735f09 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9b/b0932179be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/AlarmHandling/AlarmHandling.obj: ../Modules/AlarmHandling/AlarmHandling.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/AlarmHandling/AlarmHandling.d_raw" --obj_directory="Modules/AlarmHandling" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b050d076be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b050d076be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ba205852c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b050d076be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/SW_Info/SW_Info.c + +C_DEPS += \ +./Common/SW_Info/SW_Info.d + +OBJS += \ +./Common/SW_Info/SW_Info.obj + +OBJS__QUOTED += \ +"Common\SW_Info\SW_Info.obj" + +C_DEPS__QUOTED += \ +"Common\SW_Info\SW_Info.d" + +C_SRCS__QUOTED += \ +"../Common/SW_Info/SW_Info.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0a8df78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0a8df78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4501ed229 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0a8df78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/SSI_Comm.obj: ../Drivers/SSI_Comm/SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/SSI_Comm.d_raw" --obj_directory="Drivers/SSI_Comm" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0d7a407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0d7a407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9c/b0d7a407be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/4048be06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/4048be06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/9d/4048be06be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/909abc06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/909abc06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a/909abc06be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/b0df3e79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/b0df3e79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..062005c16 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/b0df3e79be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Heaters/Heaters_bit.c \ +../Modules/Heaters/Heaters_init.c \ +../Modules/Heaters/Heaters_maint.c \ +../Modules/Heaters/Heaters_print.c + +C_DEPS += \ +./Modules/Heaters/Heaters_bit.d \ +./Modules/Heaters/Heaters_init.d \ +./Modules/Heaters/Heaters_maint.d \ +./Modules/Heaters/Heaters_print.d + +OBJS += \ +./Modules/Heaters/Heaters_bit.obj \ +./Modules/Heaters/Heaters_init.obj \ +./Modules/Heaters/Heaters_maint.obj \ +./Modules/Heaters/Heaters_print.obj + +OBJS__QUOTED += \ +"Modules\Heaters\Heaters_bit.obj" \ +"Modules\Heaters\Heaters_init.obj" \ +"Modules\Heaters\Heaters_maint.obj" \ +"Modules\Heaters\Heaters_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Heaters\Heaters_bit.d" \ +"Modules\Heaters\Heaters_init.d" \ +"Modules\Heaters\Heaters_maint.d" \ +"Modules\Heaters\Heaters_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Heaters/Heaters_bit.c" \ +"../Modules/Heaters/Heaters_init.c" \ +"../Modules/Heaters/Heaters_maint.c" \ +"../Modules/Heaters/Heaters_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f0f5bf06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f0f5bf06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..522384cb6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a0/f0f5bf06be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Motors_Driver/L6470.c + +C_DEPS += \ +./Drivers/FPGA/Motors_Driver/L6470.d + +OBJS += \ +./Drivers/FPGA/Motors_Driver/L6470.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Motors_Driver\L6470.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Motors_Driver/L6470.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d017d107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d017d107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5712cfaab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a1/d017d107be71001a1f70833eb9ed7011 @@ -0,0 +1,204 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Stubs_Handler/Calculate.obj: ../Modules/Stubs_Handler/Calculate.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Calculate.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Progress.obj: ../Modules/Stubs_Handler/Progress.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Progress.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/StubRealTimeUsage.obj: ../Modules/Stubs_Handler/StubRealTimeUsage.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/StubRealTimeUsage.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Cartridge.obj: ../Modules/Stubs_Handler/Stub_Cartridge.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Cartridge.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dancer.obj: ../Modules/Stubs_Handler/Stub_Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dancer.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Dispenser.obj: ../Modules/Stubs_Handler/Stub_Dispenser.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Dispenser.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ExtFlash.obj: ../Modules/Stubs_Handler/Stub_ExtFlash.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ExtFlash.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGARWReg.obj: ../Modules/Stubs_Handler/Stub_FPGARWReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGARWReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj: ../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadBackReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_FPGAReadVersion.obj: ../Modules/Stubs_Handler/Stub_FPGAReadVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_FPGAReadVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_GPIO.obj: ../Modules/Stubs_Handler/Stub_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_GPIO.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_HW_Version.obj: ../Modules/Stubs_Handler/Stub_HW_Version.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_HW_Version.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Heater.obj: ../Modules/Stubs_Handler/Stub_Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Heater.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_I2C.obj: ../Modules/Stubs_Handler/Stub_I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_I2C.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_IntADC.obj: ../Modules/Stubs_Handler/Stub_IntADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_IntADC.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_L6470.obj: ../Modules/Stubs_Handler/Stub_L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_L6470.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj: ../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_MidTankPressureSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Motor.obj: ../Modules/Stubs_Handler/Stub_Motor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Motor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_OptLimitSwitch.obj: ../Modules/Stubs_Handler/Stub_OptLimitSwitch.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_OptLimitSwitch.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj: ../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SpeedSensor.obj: ../Modules/Stubs_Handler/Stub_SpeedSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SpeedSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Status.obj: ../Modules/Stubs_Handler/Stub_Status.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Status.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_SteperMotor.obj: ../Modules/Stubs_Handler/Stub_SteperMotor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_SteperMotor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TempSensor.obj: ../Modules/Stubs_Handler/Stub_TempSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TempSensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_TivaReg.obj: ../Modules/Stubs_Handler/Stub_TivaReg.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_TivaReg.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/Stub_Valve.obj: ../Modules/Stubs_Handler/Stub_Valve.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/Stub_Valve.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/User_Leds.obj: ../Modules/Stubs_Handler/User_Leds.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/User_Leds.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Stubs_Handler/temperature_sensor.obj: ../Modules/Stubs_Handler/temperature_sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Stubs_Handler/temperature_sensor.d_raw" --obj_directory="Modules/Stubs_Handler" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/604a6079be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/604a6079be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..93a09e27b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/604a6079be71001a1f70833eb9ed7011 @@ -0,0 +1,188 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Stubs_Handler/Calculate.c \ +../Modules/Stubs_Handler/Progress.c \ +../Modules/Stubs_Handler/StubRealTimeUsage.c \ +../Modules/Stubs_Handler/Stub_Cartridge.c \ +../Modules/Stubs_Handler/Stub_Dancer.c \ +../Modules/Stubs_Handler/Stub_Dispenser.c \ +../Modules/Stubs_Handler/Stub_ExtFlash.c \ +../Modules/Stubs_Handler/Stub_FPGARWReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c \ +../Modules/Stubs_Handler/Stub_FPGAReadVersion.c \ +../Modules/Stubs_Handler/Stub_GPIO.c \ +../Modules/Stubs_Handler/Stub_HW_Version.c \ +../Modules/Stubs_Handler/Stub_Heater.c \ +../Modules/Stubs_Handler/Stub_I2C.c \ +../Modules/Stubs_Handler/Stub_IntADC.c \ +../Modules/Stubs_Handler/Stub_L6470.c \ +../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c \ +../Modules/Stubs_Handler/Stub_Motor.c \ +../Modules/Stubs_Handler/Stub_OptLimitSwitch.c \ +../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c \ +../Modules/Stubs_Handler/Stub_SpeedSensor.c \ +../Modules/Stubs_Handler/Stub_Status.c \ +../Modules/Stubs_Handler/Stub_SteperMotor.c \ +../Modules/Stubs_Handler/Stub_TempSensor.c \ +../Modules/Stubs_Handler/Stub_TivaReg.c \ +../Modules/Stubs_Handler/Stub_Valve.c \ +../Modules/Stubs_Handler/User_Leds.c \ +../Modules/Stubs_Handler/temperature_sensor.c + +C_DEPS += \ +./Modules/Stubs_Handler/Calculate.d \ +./Modules/Stubs_Handler/Progress.d \ +./Modules/Stubs_Handler/StubRealTimeUsage.d \ +./Modules/Stubs_Handler/Stub_Cartridge.d \ +./Modules/Stubs_Handler/Stub_Dancer.d \ +./Modules/Stubs_Handler/Stub_Dispenser.d \ +./Modules/Stubs_Handler/Stub_ExtFlash.d \ +./Modules/Stubs_Handler/Stub_FPGARWReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.d \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.d \ +./Modules/Stubs_Handler/Stub_GPIO.d \ +./Modules/Stubs_Handler/Stub_HW_Version.d \ +./Modules/Stubs_Handler/Stub_Heater.d \ +./Modules/Stubs_Handler/Stub_I2C.d \ +./Modules/Stubs_Handler/Stub_IntADC.d \ +./Modules/Stubs_Handler/Stub_L6470.d \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.d \ +./Modules/Stubs_Handler/Stub_Motor.d \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.d \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.d \ +./Modules/Stubs_Handler/Stub_SpeedSensor.d \ +./Modules/Stubs_Handler/Stub_Status.d \ +./Modules/Stubs_Handler/Stub_SteperMotor.d \ +./Modules/Stubs_Handler/Stub_TempSensor.d \ +./Modules/Stubs_Handler/Stub_TivaReg.d \ +./Modules/Stubs_Handler/Stub_Valve.d \ +./Modules/Stubs_Handler/User_Leds.d \ +./Modules/Stubs_Handler/temperature_sensor.d + +OBJS += \ +./Modules/Stubs_Handler/Calculate.obj \ +./Modules/Stubs_Handler/Progress.obj \ +./Modules/Stubs_Handler/StubRealTimeUsage.obj \ +./Modules/Stubs_Handler/Stub_Cartridge.obj \ +./Modules/Stubs_Handler/Stub_Dancer.obj \ +./Modules/Stubs_Handler/Stub_Dispenser.obj \ +./Modules/Stubs_Handler/Stub_ExtFlash.obj \ +./Modules/Stubs_Handler/Stub_FPGARWReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadBackReg.obj \ +./Modules/Stubs_Handler/Stub_FPGAReadVersion.obj \ +./Modules/Stubs_Handler/Stub_GPIO.obj \ +./Modules/Stubs_Handler/Stub_HW_Version.obj \ +./Modules/Stubs_Handler/Stub_Heater.obj \ +./Modules/Stubs_Handler/Stub_I2C.obj \ +./Modules/Stubs_Handler/Stub_IntADC.obj \ +./Modules/Stubs_Handler/Stub_L6470.obj \ +./Modules/Stubs_Handler/Stub_MidTankPressureSensor.obj \ +./Modules/Stubs_Handler/Stub_Motor.obj \ +./Modules/Stubs_Handler/Stub_OptLimitSwitch.obj \ +./Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.obj \ +./Modules/Stubs_Handler/Stub_SpeedSensor.obj \ +./Modules/Stubs_Handler/Stub_Status.obj \ +./Modules/Stubs_Handler/Stub_SteperMotor.obj \ +./Modules/Stubs_Handler/Stub_TempSensor.obj \ +./Modules/Stubs_Handler/Stub_TivaReg.obj \ +./Modules/Stubs_Handler/Stub_Valve.obj \ +./Modules/Stubs_Handler/User_Leds.obj \ +./Modules/Stubs_Handler/temperature_sensor.obj + +OBJS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.obj" \ +"Modules\Stubs_Handler\Progress.obj" \ +"Modules\Stubs_Handler\StubRealTimeUsage.obj" \ +"Modules\Stubs_Handler\Stub_Cartridge.obj" \ +"Modules\Stubs_Handler\Stub_Dancer.obj" \ +"Modules\Stubs_Handler\Stub_Dispenser.obj" \ +"Modules\Stubs_Handler\Stub_ExtFlash.obj" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.obj" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.obj" \ +"Modules\Stubs_Handler\Stub_GPIO.obj" \ +"Modules\Stubs_Handler\Stub_HW_Version.obj" \ +"Modules\Stubs_Handler\Stub_Heater.obj" \ +"Modules\Stubs_Handler\Stub_I2C.obj" \ +"Modules\Stubs_Handler\Stub_IntADC.obj" \ +"Modules\Stubs_Handler\Stub_L6470.obj" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.obj" \ +"Modules\Stubs_Handler\Stub_Motor.obj" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.obj" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.obj" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.obj" \ +"Modules\Stubs_Handler\Stub_Status.obj" \ +"Modules\Stubs_Handler\Stub_SteperMotor.obj" \ +"Modules\Stubs_Handler\Stub_TempSensor.obj" \ +"Modules\Stubs_Handler\Stub_TivaReg.obj" \ +"Modules\Stubs_Handler\Stub_Valve.obj" \ +"Modules\Stubs_Handler\User_Leds.obj" \ +"Modules\Stubs_Handler\temperature_sensor.obj" + +C_DEPS__QUOTED += \ +"Modules\Stubs_Handler\Calculate.d" \ +"Modules\Stubs_Handler\Progress.d" \ +"Modules\Stubs_Handler\StubRealTimeUsage.d" \ +"Modules\Stubs_Handler\Stub_Cartridge.d" \ +"Modules\Stubs_Handler\Stub_Dancer.d" \ +"Modules\Stubs_Handler\Stub_Dispenser.d" \ +"Modules\Stubs_Handler\Stub_ExtFlash.d" \ +"Modules\Stubs_Handler\Stub_FPGARWReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadBackReg.d" \ +"Modules\Stubs_Handler\Stub_FPGAReadVersion.d" \ +"Modules\Stubs_Handler\Stub_GPIO.d" \ +"Modules\Stubs_Handler\Stub_HW_Version.d" \ +"Modules\Stubs_Handler\Stub_Heater.d" \ +"Modules\Stubs_Handler\Stub_I2C.d" \ +"Modules\Stubs_Handler\Stub_IntADC.d" \ +"Modules\Stubs_Handler\Stub_L6470.d" \ +"Modules\Stubs_Handler\Stub_MidTankPressureSensor.d" \ +"Modules\Stubs_Handler\Stub_Motor.d" \ +"Modules\Stubs_Handler\Stub_OptLimitSwitch.d" \ +"Modules\Stubs_Handler\Stub_ReadEmbeddedVersion.d" \ +"Modules\Stubs_Handler\Stub_SpeedSensor.d" \ +"Modules\Stubs_Handler\Stub_Status.d" \ +"Modules\Stubs_Handler\Stub_SteperMotor.d" \ +"Modules\Stubs_Handler\Stub_TempSensor.d" \ +"Modules\Stubs_Handler\Stub_TivaReg.d" \ +"Modules\Stubs_Handler\Stub_Valve.d" \ +"Modules\Stubs_Handler\User_Leds.d" \ +"Modules\Stubs_Handler\temperature_sensor.d" + +C_SRCS__QUOTED += \ +"../Modules/Stubs_Handler/Calculate.c" \ +"../Modules/Stubs_Handler/Progress.c" \ +"../Modules/Stubs_Handler/StubRealTimeUsage.c" \ +"../Modules/Stubs_Handler/Stub_Cartridge.c" \ +"../Modules/Stubs_Handler/Stub_Dancer.c" \ +"../Modules/Stubs_Handler/Stub_Dispenser.c" \ +"../Modules/Stubs_Handler/Stub_ExtFlash.c" \ +"../Modules/Stubs_Handler/Stub_FPGARWReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadBackReg.c" \ +"../Modules/Stubs_Handler/Stub_FPGAReadVersion.c" \ +"../Modules/Stubs_Handler/Stub_GPIO.c" \ +"../Modules/Stubs_Handler/Stub_HW_Version.c" \ +"../Modules/Stubs_Handler/Stub_Heater.c" \ +"../Modules/Stubs_Handler/Stub_I2C.c" \ +"../Modules/Stubs_Handler/Stub_IntADC.c" \ +"../Modules/Stubs_Handler/Stub_L6470.c" \ +"../Modules/Stubs_Handler/Stub_MidTankPressureSensor.c" \ +"../Modules/Stubs_Handler/Stub_Motor.c" \ +"../Modules/Stubs_Handler/Stub_OptLimitSwitch.c" \ +"../Modules/Stubs_Handler/Stub_ReadEmbeddedVersion.c" \ +"../Modules/Stubs_Handler/Stub_SpeedSensor.c" \ +"../Modules/Stubs_Handler/Stub_Status.c" \ +"../Modules/Stubs_Handler/Stub_SteperMotor.c" \ +"../Modules/Stubs_Handler/Stub_TempSensor.c" \ +"../Modules/Stubs_Handler/Stub_TivaReg.c" \ +"../Modules/Stubs_Handler/Stub_Valve.c" \ +"../Modules/Stubs_Handler/User_Leds.c" \ +"../Modules/Stubs_Handler/temperature_sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7088b206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7088b206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..86e61b207 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/7088b206be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.obj: ../Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_GPIO/FPGA_GPIO.d_raw" --obj_directory="Drivers/FPGA/FPGA_GPIO" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e064a706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e064a706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..071c9375d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a3/e064a706be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/ADC_Sampling/ADC.c \ +../Drivers/ADC_Sampling/ADC_VAC.c \ +../Drivers/ADC_Sampling/ADC_VOC_Sensor.c + +C_DEPS += \ +./Drivers/ADC_Sampling/ADC.d \ +./Drivers/ADC_Sampling/ADC_VAC.d \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.d + +OBJS += \ +./Drivers/ADC_Sampling/ADC.obj \ +./Drivers/ADC_Sampling/ADC_VAC.obj \ +./Drivers/ADC_Sampling/ADC_VOC_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.obj" \ +"Drivers\ADC_Sampling\ADC_VAC.obj" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\ADC_Sampling\ADC.d" \ +"Drivers\ADC_Sampling\ADC_VAC.d" \ +"Drivers\ADC_Sampling\ADC_VOC_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/ADC_Sampling/ADC.c" \ +"../Drivers/ADC_Sampling/ADC_VAC.c" \ +"../Drivers/ADC_Sampling/ADC_VOC_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/40c2fd06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/40c2fd06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a6/40c2fd06be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/303fb906be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/303fb906be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..eb43d31e6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/a7/303fb906be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/FPGA_Programming_Up.obj: ../Drivers/FPGA/Full_Vme/FPGA_Programming_Up.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/FPGA_Programming_Up.d_raw" --obj_directory="Drivers/FPGA/Full_Vme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/00795277be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/00795277be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/aa/00795277be71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/40a99906be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/40a99906be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2599fb3d4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/40a99906be71001a1f70833eb9ed7011 @@ -0,0 +1,722 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Stubs/CalculateRequest.pb-c.obj: ../Communication/PMR/Stubs/CalculateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/CalculateResponse.pb-c.obj: ../Communication/PMR/Stubs/CalculateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/CalculateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressRequest.pb-c.obj: ../Communication/PMR/Stubs/ProgressRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/ProgressResponse.pb-c.obj: ../Communication/PMR/Stubs/ProgressResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/ProgressResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj: ../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubDispenserResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj: ../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj: ../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeaterResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj: ../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj: ../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj: ../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobRequest.pb-c.obj: ../Communication/PMR/Stubs/StubJobRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubJobResponse.pb-c.obj: ../Communication/PMR/Stubs/StubJobResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubJobResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj: ../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj: ../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj: ../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj: ../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj: ../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj: ../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveRequest.pb-c.obj: ../Communication/PMR/Stubs/StubValveRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Stubs/StubValveResponse.pb-c.obj: ../Communication/PMR/Stubs/StubValveResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Stubs/StubValveResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Stubs" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/502b3b78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/502b3b78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..982770da7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/502b3b78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj: ../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d_raw" --obj_directory="Drivers/FPGA/FPGA_INTERRUPTS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/90267607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/90267607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ab/90267607be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/40b85e05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/40b85e05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ac/40b85e05be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/200bd605be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/200bd605be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ddddab698 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ad/200bd605be71001a1f70833eb9ed7011 @@ -0,0 +1,106 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmHandlingItem.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.obj: ../Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/AlarmSourceType.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.obj: ../Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/ConfigurationParameters.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/DispenserRunningData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MachineCalibrationDataResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankData.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankData.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankData.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupRequest.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.obj: ../Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/EmbeddedParameters/MidTankDataSetupResponse.pb-c.d_raw" --obj_directory="Communication/PMR/EmbeddedParameters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0ebf778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0ebf778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bda73a14 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/af/a0ebf778be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/rtu/mbcrc.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbcrc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbcrc.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Uart_Comm/Modbus/rtu/mbrtu.obj: ../Drivers/Uart_Comm/Modbus/rtu/mbrtu.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/rtu/mbrtu.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus/rtu" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/10ccd306be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/10ccd306be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f9003f42f --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/10ccd306be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c + +C_DEPS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d + +OBJS += \ +./Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\ADC_MUX\ADC_MUX.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/2065c705be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/2065c705be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c909f2ae6 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/2065c705be71001a1f70833eb9ed7011 @@ -0,0 +1,410 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Diagnostics/Cartridge.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c \ +../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c \ +../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/DoubleArray.pb-c.c \ +../Communication/PMR/Diagnostics/Event.pb-c.c \ +../Communication/PMR/Diagnostics/EventType.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterState.pb-c.c \ +../Communication/PMR/Diagnostics/HeaterType.pb-c.c \ +../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorDirection.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c \ +../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c \ +../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponent.pb-c.c \ +../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveState.pb-c.c \ +../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c \ +../Communication/PMR/Diagnostics/ValveType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.d \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.d \ +./Communication/PMR/Diagnostics/Event.pb-c.d \ +./Communication/PMR/Diagnostics/EventType.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.d \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.d \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.d \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveState.pb-c.d \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.d \ +./Communication/PMR/Diagnostics/ValveType.pb-c.d + +OBJS += \ +./Communication/PMR/Diagnostics/Cartridge.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj \ +./Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj \ +./Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/DoubleArray.pb-c.obj \ +./Communication/PMR/Diagnostics/Event.pb-c.obj \ +./Communication/PMR/Diagnostics/EventType.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterState.pb-c.obj \ +./Communication/PMR/Diagnostics/HeaterType.pb-c.obj \ +./Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorDirection.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj \ +./Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponent.pb-c.obj \ +./Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveState.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj \ +./Communication/PMR/Diagnostics/ValveType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.obj" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.obj" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.obj" \ +"Communication\PMR\Diagnostics\Event.pb-c.obj" \ +"Communication\PMR\Diagnostics\EventType.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.obj" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.obj" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.obj" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.obj" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Diagnostics\Cartridge.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeAction.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeSlot.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeTagContent.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\CartridgeValidationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DataFileFrame.pb-c.d" \ +"Communication\PMR\Diagnostics\DiagnosticsMonitors.pb-c.d" \ +"Communication\PMR\Diagnostics\DigitalInterfaceState.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\DispenserJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\DoubleArray.pb-c.d" \ +"Communication\PMR\Diagnostics\Event.pb-c.d" \ +"Communication\PMR\Diagnostics\EventType.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterState.pb-c.d" \ +"Communication\PMR\Diagnostics\HeaterType.pb-c.d" \ +"Communication\PMR\Diagnostics\InterfaceIOs.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorDirection.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorHomingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\MotorJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ResolveEventResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetBlowerStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetComponentValueResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetDigitalOutResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetHeaterStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\SetValveStateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StartEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopCartridgesUpdateResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopDiagnosticsResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\StopEventsNotificationResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadAbortJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingRequest.pb-c.d" \ +"Communication\PMR\Diagnostics\ThreadJoggingResponse.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponent.pb-c.d" \ +"Communication\PMR\Diagnostics\ValueComponentState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveState.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveStateCode.pb-c.d" \ +"Communication\PMR\Diagnostics\ValveType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Diagnostics/Cartridge.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c" \ +"../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c" \ +"../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/DoubleArray.pb-c.c" \ +"../Communication/PMR/Diagnostics/Event.pb-c.c" \ +"../Communication/PMR/Diagnostics/EventType.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterState.pb-c.c" \ +"../Communication/PMR/Diagnostics/HeaterType.pb-c.c" \ +"../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorDirection.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c" \ +"../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponent.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveState.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c" \ +"../Communication/PMR/Diagnostics/ValveType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60acde07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60acde07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0b34bf49e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/60acde07be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/Waste/Waste_BIT.obj: ../Modules/Waste/Waste_BIT.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_BIT.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_init.obj: ../Modules/Waste/Waste_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_maint.obj: ../Modules/Waste/Waste_maint.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_maint.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/Waste_print.obj: ../Modules/Waste/Waste_print.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/Waste_print.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/Waste/newWHS_init.obj: ../Modules/Waste/newWHS_init.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/Waste/newWHS_init.d_raw" --obj_directory="Modules/Waste" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/c0f4c478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/c0f4c478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b/c0f4c478be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/20658678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/20658678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/20658678be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/e0184979be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/e0184979be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b0/e0184979be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/e0941c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/e0941c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ce5d85f2d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b1/e0941c07be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj: ../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/3067a178be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/3067a178be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f802ef559 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/3067a178be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\logi-tag\LT_RFID.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/90ef1607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/90ef1607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a3c45670a --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/90ef1607be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\AD5272_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_AD5272_Rheostat\WHS_Rheostat.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/AD5272_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_AD5272_Rheostat/WHS_Rheostat.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/d0663207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/d0663207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4897c67e4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b2/d0663207be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj: ../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/40471b78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/40471b78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..233b95060 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b3/40471b78be71001a1f70833eb9ed7011 @@ -0,0 +1,632 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Stubs/CalculateRequest.pb-c.c \ +../Communication/PMR/Stubs/CalculateResponse.pb-c.c \ +../Communication/PMR/Stubs/ProgressRequest.pb-c.c \ +../Communication/PMR/Stubs/ProgressResponse.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c \ +../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c \ +../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c \ +../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c \ +../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CResponse.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c \ +../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c \ +../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c \ +../Communication/PMR/Stubs/StubJobRequest.pb-c.c \ +../Communication/PMR/Stubs/StubJobResponse.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c \ +../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c \ +../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c \ +../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c \ +../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c \ +../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c \ +../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c \ +../Communication/PMR/Stubs/StubValveRequest.pb-c.c \ +../Communication/PMR/Stubs/StubValveResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.d \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.d \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.d \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.d \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.d \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.d \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.d \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.d \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.d \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.d \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.d \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.d \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.d \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.d \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.d \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.d \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.d \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.d \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.d \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Stubs/CalculateRequest.pb-c.obj \ +./Communication/PMR/Stubs/CalculateResponse.pb-c.obj \ +./Communication/PMR/Stubs/ProgressRequest.pb-c.obj \ +./Communication/PMR/Stubs/ProgressResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubAbortJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubDispenserResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHWVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeaterResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubJobRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubJobResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorInitResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorMovResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubMotorStopResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTempSensorResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.obj \ +./Communication/PMR/Stubs/StubValveRequest.pb-c.obj \ +./Communication/PMR/Stubs/StubValveResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.obj" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.obj" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.obj" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Stubs\CalculateRequest.pb-c.d" \ +"Communication\PMR\Stubs\CalculateResponse.pb-c.d" \ +"Communication\PMR\Stubs\ProgressRequest.pb-c.d" \ +"Communication\PMR\Stubs\ProgressResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubAbortJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubCartridgeWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDancerPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubDispenserResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashReadWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubExtFlashWriteWordsResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubF3Gpo01WriteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadBackRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFPGAReadVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubFpgaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOInputSetupResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOReadByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteBitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubGPIOWriteByteResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHWVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeaterResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestPollResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubHeatingTestResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CReadBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubI2CWriteBytesResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubIntADCReadResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubJobRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubJobResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubL6470DriverResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMidTankPressureSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorHomeMarkResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorInitResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorMovResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorPositionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorRunStepTickResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorSpeedResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStatusResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubMotorStopResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubOptLimitSwitchResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubReadEmbeddedVersionResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubRealTimeUsageResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSpeedSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubSteperMotorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTempSensorResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaReadRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubTivaWriteRegResponse.pb-c.d" \ +"Communication\PMR\Stubs\StubValveRequest.pb-c.d" \ +"Communication\PMR\Stubs\StubValveResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Stubs/CalculateRequest.pb-c.c" \ +"../Communication/PMR/Stubs/CalculateResponse.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressRequest.pb-c.c" \ +"../Communication/PMR/Stubs/ProgressResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubAbortJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubCartridgeWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDancerPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubDispenserResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashReadWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubExtFlashWriteWordsResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubF3Gpo01WriteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadBackRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFPGAReadVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubFpgaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOInputSetupResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOReadByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteBitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubGPIOWriteByteResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHWVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeaterResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestPollResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubHeatingTestResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CReadBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubI2CWriteBytesResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubIntADCReadResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubJobResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubL6470DriverResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMidTankPressureSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorHomeMarkResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorInitResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorMovResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorPositionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorRunStepTickResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorSpeedResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStatusResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubMotorStopResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubOptLimitSwitchResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubReadEmbeddedVersionResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubRealTimeUsageResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSpeedSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubSteperMotorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTempSensorResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaReadRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubTivaWriteRegResponse.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveRequest.pb-c.c" \ +"../Communication/PMR/Stubs/StubValveResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90666078be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90666078be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..886b38a4e --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b4/90666078be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.obj: ../Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/70b78478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/70b78478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..88bcc36e7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b5/70b78478be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/I2C.c \ +../Drivers/I2C_Communication/I2C_Comm.c \ +../Drivers/I2C_Communication/I2C_FIFO.c \ +../Drivers/I2C_Communication/I2C_Task.c + +C_DEPS += \ +./Drivers/I2C_Communication/I2C.d \ +./Drivers/I2C_Communication/I2C_Comm.d \ +./Drivers/I2C_Communication/I2C_FIFO.d \ +./Drivers/I2C_Communication/I2C_Task.d + +OBJS += \ +./Drivers/I2C_Communication/I2C.obj \ +./Drivers/I2C_Communication/I2C_Comm.obj \ +./Drivers/I2C_Communication/I2C_FIFO.obj \ +./Drivers/I2C_Communication/I2C_Task.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\I2C.obj" \ +"Drivers\I2C_Communication\I2C_Comm.obj" \ +"Drivers\I2C_Communication\I2C_FIFO.obj" \ +"Drivers\I2C_Communication\I2C_Task.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\I2C.d" \ +"Drivers\I2C_Communication\I2C_Comm.d" \ +"Drivers\I2C_Communication\I2C_FIFO.d" \ +"Drivers\I2C_Communication\I2C_Task.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/I2C.c" \ +"../Drivers/I2C_Communication/I2C_Comm.c" \ +"../Drivers/I2C_Communication/I2C_FIFO.c" \ +"../Drivers/I2C_Communication/I2C_Task.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/c0923907be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/c0923907be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..66a427fa3 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b6/c0923907be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Motors/Motor.c \ +../Drivers/Motors/MotorActions.c + +C_DEPS += \ +./Drivers/Motors/Motor.d \ +./Drivers/Motors/MotorActions.d + +OBJS += \ +./Drivers/Motors/Motor.obj \ +./Drivers/Motors/MotorActions.obj + +OBJS__QUOTED += \ +"Drivers\Motors\Motor.obj" \ +"Drivers\Motors\MotorActions.obj" + +C_DEPS__QUOTED += \ +"Drivers\Motors\Motor.d" \ +"Drivers\Motors\MotorActions.d" + +C_SRCS__QUOTED += \ +"../Drivers/Motors/Motor.c" \ +"../Drivers/Motors/MotorActions.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/60ca2778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/60ca2778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b7/60ca2778be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/d0414d07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/d0414d07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..805d9d685 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b8/d0414d07be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c + +C_DEPS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d + +OBJS += \ +./Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj + +OBJS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\SSI_Comm\Speed_Sensor\Speed_Sensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/40ac9c78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/40ac9c78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..fb81967b2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/b9/40ac9c78be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/RFID_NFC/NFC.c \ +../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c + +C_DEPS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.d \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d + +OBJS += \ +./Drivers/I2C_Communication/RFID_NFC/NFC.obj \ +./Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.obj" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\RFID_NFC\NFC.d" \ +"Drivers\I2C_Communication\RFID_NFC\NFC_MainBaord.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/RFID_NFC/NFC.c" \ +"../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40607f78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40607f78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ba/40607f78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/1040d978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/1040d978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9a06f1546 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/1040d978be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SPI/SPI_Comm.obj: ../Drivers/SPI/SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SPI/SPI_Comm.d_raw" --obj_directory="Drivers/SPI" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b03e0806be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b03e0806be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..89e01b6a8 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bb/b03e0806be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c \ +../Communication/PMR/MachineStatus/MachineState.pb-c.c \ +../Communication/PMR/MachineStatus/MachineStatus.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c \ +../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d \ +./Communication/PMR/MachineStatus/MachineState.pb-c.d \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d + +OBJS += \ +./Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineState.pb-c.obj \ +./Communication/PMR/MachineStatus/MachineStatus.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj \ +./Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.obj" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.obj" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\MachineStatus\IDSPackLevel.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineState.pb-c.d" \ +"Communication\PMR\MachineStatus\MachineStatus.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StartMachineStatusUpdateResponse.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateRequest.pb-c.d" \ +"Communication\PMR\MachineStatus\StopMachineStatusUpdateResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineState.pb-c.c" \ +"../Communication/PMR/MachineStatus/MachineStatus.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c" \ +"../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/50f0e706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/50f0e706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/50f0e706be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/c0e58e77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/c0e58e77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..4c77c8969 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/bc/c0e58e77be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/AbortPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/PowerDownState.pb-c.obj: ../Communication/PMR/Power/PowerDownState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/PowerDownState.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownRequest.pb-c.obj: ../Communication/PMR/Power/StartPowerDownRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Power/StartPowerDownResponse.pb-c.obj: ../Communication/PMR/Power/StartPowerDownResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Power/StartPowerDownResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Power" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d0eda278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d0eda278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1997a7dcc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c/d0eda278be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.obj: ../Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/logi-tag/LT_RFID.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC/logi-tag" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f0a9a206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f0a9a206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f770e24a4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c0/f0a9a206be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c \ +../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c \ +../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c + +C_DEPS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.d \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.d \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.d + +OBJS += \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.obj \ +./Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.obj \ +./Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.obj" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.obj" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\ContinueThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StartThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingRequest.pb-c.d" \ +"Communication\PMR\ThreadLoading\StopThreadLoadingResponse.pb-c.d" \ +"Communication\PMR\ThreadLoading\ThreadLoadingState.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ContinueThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StartThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingRequest.pb-c.c" \ +"../Communication/PMR/ThreadLoading/StopThreadLoadingResponse.pb-c.c" \ +"../Communication/PMR/ThreadLoading/ThreadLoadingState.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80cf0007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80cf0007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfcf6fe0b --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80cf0007be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Main_Board_EEPROM\Main_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Main_Board_EEPROM/Main_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80d9ed78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80d9ed78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c2/80d9ed78be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/0041b407be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/0041b407be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b2f93b2cc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/0041b407be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/IFS/ifs.c + +C_DEPS += \ +./Modules/IFS/ifs.d + +OBJS += \ +./Modules/IFS/ifs.obj + +OBJS__QUOTED += \ +"Modules\IFS\ifs.obj" + +C_DEPS__QUOTED += \ +"Modules\IFS\ifs.d" + +C_SRCS__QUOTED += \ +"../Modules/IFS/ifs.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/50ab7379be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/50ab7379be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/50ab7379be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/6011ef05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/6011ef05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c5/6011ef05be71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/30c48807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/30c48807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a2a449f77 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/30c48807be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Diagnostics/DiagnosticActions.c \ +../Modules/Diagnostics/Diagnostics.c \ +../Modules/Diagnostics/DiagnosticsHoming.c \ +../Modules/Diagnostics/DiagnosticsJogging.c + +C_DEPS += \ +./Modules/Diagnostics/DiagnosticActions.d \ +./Modules/Diagnostics/Diagnostics.d \ +./Modules/Diagnostics/DiagnosticsHoming.d \ +./Modules/Diagnostics/DiagnosticsJogging.d + +OBJS += \ +./Modules/Diagnostics/DiagnosticActions.obj \ +./Modules/Diagnostics/Diagnostics.obj \ +./Modules/Diagnostics/DiagnosticsHoming.obj \ +./Modules/Diagnostics/DiagnosticsJogging.obj + +OBJS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.obj" \ +"Modules\Diagnostics\Diagnostics.obj" \ +"Modules\Diagnostics\DiagnosticsHoming.obj" \ +"Modules\Diagnostics\DiagnosticsJogging.obj" + +C_DEPS__QUOTED += \ +"Modules\Diagnostics\DiagnosticActions.d" \ +"Modules\Diagnostics\Diagnostics.d" \ +"Modules\Diagnostics\DiagnosticsHoming.d" \ +"Modules\Diagnostics\DiagnosticsJogging.d" + +C_SRCS__QUOTED += \ +"../Modules/Diagnostics/DiagnosticActions.c" \ +"../Modules/Diagnostics/Diagnostics.c" \ +"../Modules/Diagnostics/DiagnosticsHoming.c" \ +"../Modules/Diagnostics/DiagnosticsJogging.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/600f5b78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/600f5b78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6f80887dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/600f5b78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/ADC_MUX/ADC_MUX.obj: ../Drivers/I2C_Communication/ADC_MUX/ADC_MUX.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/ADC_MUX/ADC_MUX.d_raw" --obj_directory="Drivers/I2C_Communication/ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0005007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0005007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..ae44b8e39 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c6/f0005007be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.obj: ../Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Speed_Sensor/Speed_Sensor.d_raw" --obj_directory="Drivers/SSI_Comm/Speed_Sensor" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/40db6107be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/40db6107be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..85dc144dd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c7/40db6107be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/Modbus/mb.obj: ../Drivers/Uart_Comm/Modbus/mb.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/Modbus/mb.d_raw" --obj_directory="Drivers/Uart_Comm/Modbus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/003ebe78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/003ebe78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c8/003ebe78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/d0cef706be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/d0cef706be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c0c254965 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/c9/d0cef706be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\Head_Card\PT100\Head_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30e03007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30e03007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1c8fe48c2 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/30e03007be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c \ +../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.d \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.obj \ +./Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.obj" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Fan_Mux.d" \ +"Drivers\I2C_Communication\WHS_Card\I2C_WHS_Mux.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Fan_Mux.c" \ +"../Drivers/I2C_Communication/WHS_Card/I2C_WHS_Mux.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f0599e78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f0599e78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..35c800d63 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cb/f0599e78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/RFID_NFC/NFC.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.obj: ../Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/RFID_NFC/NFC_MainBaord.d_raw" --obj_directory="Drivers/I2C_Communication/RFID_NFC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5043ef06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5043ef06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94a17d396 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/cd/5043ef06be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.obj: ../Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/I2C_Head_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/60266c78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/60266c78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..716d5a2e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d0/60266c78be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.obj: ../Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/EEPROM/Head_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0355278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0355278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..47bbb9bfd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d1/c0355278be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Flash_Memory/Flash_Memory.obj: ../Drivers/Flash_Memory/Flash_Memory.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Flash_Memory/Flash_Memory.d_raw" --obj_directory="Drivers/Flash_Memory" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0234878be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0234878be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..69342426c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/a0234878be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Motors_Driver/L6470.obj: ../Drivers/FPGA/Motors_Driver/L6470.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Motors_Driver/L6470.d_raw" --obj_directory="Drivers/FPGA/Motors_Driver" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0103578be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0103578be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cd2f2e099 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d2/d0103578be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/FPGA.obj: ../Drivers/FPGA/FPGA.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SPI_Comm.obj: ../Drivers/FPGA/FPGA_SPI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SPI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/FPGA_SSI_Comm.obj: ../Drivers/FPGA/FPGA_SSI_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/FPGA_SSI_Comm.d_raw" --obj_directory="Drivers/FPGA" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/70d67077be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/70d67077be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0d046f6d7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/70d67077be71001a1f70833eb9ed7011 @@ -0,0 +1,155 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Hardware/HardwareBlower.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlower.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlower.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBlowerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj: ../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareConfiguration.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancer.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancer.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancer.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDancerType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDancerType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDancerType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenser.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenser.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenser.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj: ../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareDispenserType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotor.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareMotorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareMotorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareMotorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControl.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControl.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControl.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj: ../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwarePidControlType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj: ../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinder.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinder.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinder.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/HardwareWinderType.pb-c.obj: ../Communication/PMR/Hardware/HardwareWinderType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/HardwareWinderType.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetRequest.pb-c.obj: ../Communication/PMR/Hardware/SystemResetRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/SystemResetResponse.pb-c.obj: ../Communication/PMR/Hardware/SystemResetResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/SystemResetResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj: ../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Hardware" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a79f07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a79f07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..80187ae88 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d4/90a79f07be71001a1f70833eb9ed7011 @@ -0,0 +1,43 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/General/GeneralHardware.obj: ../Modules/General/GeneralHardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/GeneralHardware.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/MachineStatus.obj: ../Modules/General/MachineStatus.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/MachineStatus.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/Safety.obj: ../Modules/General/Safety.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/Safety.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/buttons.obj: ../Modules/General/buttons.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/buttons.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Modules/General/process.obj: ../Modules/General/process.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/General/process.d_raw" --obj_directory="Modules/General" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/50351b07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/50351b07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..41d1db205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d7/50351b07be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\ADS122X04_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_ADS122_PT100\WHS_PT100_ADC.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/ADS122X04_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_ADS122_PT100/WHS_PT100_ADC.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/30c5c776be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/30c5c776be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7aa0e8205 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/30c5c776be71001a1f70833eb9ed7011 @@ -0,0 +1,58 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +CFG_SRCS += \ +../Embedded.cfg + +CMD_SRCS += \ +../tm4c129xnczad.cmd + +C_SRCS += \ +../Main.c \ +../delay.c + +GEN_CMDS += \ +./configPkg/linker.cmd + +GEN_FILES += \ +./configPkg/linker.cmd \ +./configPkg/compiler.opt + +GEN_MISC_DIRS += \ +./configPkg/ + +C_DEPS += \ +./Main.d \ +./delay.d + +GEN_OPTS += \ +./configPkg/compiler.opt + +OBJS += \ +./Main.obj \ +./delay.obj + +GEN_MISC_DIRS__QUOTED += \ +"configPkg\" + +OBJS__QUOTED += \ +"Main.obj" \ +"delay.obj" + +C_DEPS__QUOTED += \ +"Main.d" \ +"delay.d" + +GEN_FILES__QUOTED += \ +"configPkg\linker.cmd" \ +"configPkg\compiler.opt" + +C_SRCS__QUOTED += \ +"../Main.c" \ +"../delay.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/709a2c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/709a2c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2a1ae80e0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/709a2c07be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c \ +../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj \ +./Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.obj" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\D_EEPROM.d" \ +"Drivers\I2C_Communication\WHS_Card\EEPROM\WHS_EEPROM.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c" \ +"../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/80b2b578be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/80b2b578be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..e9d88a3ed --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d8/80b2b578be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\MAX11614_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_MAX11614_ADC\WHS_MAX11614_A2D.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/MAX11614_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_MAX11614_ADC/WHS_MAX11614_A2D.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e0436807be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e0436807be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/d9/e0436807be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/20f2e207be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/20f2e207be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a1c19fe3c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/db/20f2e207be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Initialization/InitSequence.obj: ../StateMachines/Initialization/InitSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/InitSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerIdle.obj: ../StateMachines/Initialization/PowerIdle.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerIdle.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Initialization/PowerOffSequence.obj: ../StateMachines/Initialization/PowerOffSequence.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Initialization/PowerOffSequence.d_raw" --obj_directory="StateMachines/Initialization" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/603e2007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/603e2007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/603e2007be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/80502a07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/80502a07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..cfddce1c5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/80502a07be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX/TCA9546_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_TCA9546_ADC_MUX" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/90a0b507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/90a0b507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7cbd9a7eb --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/90a0b507be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Modules/IFS/ifs.obj: ../Modules/IFS/ifs.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Modules/IFS/ifs.d_raw" --obj_directory="Modules/IFS" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/e0026a05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/e0026a05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..3bfcbecc4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dc/e0026a05be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Common/Utilities/RFIDTagHandling.c \ +../Common/Utilities/Update.c \ +../Common/Utilities/Utils.c \ +../Common/Utilities/idle_task.c \ +../Common/Utilities/ustdlib.c + +C_DEPS += \ +./Common/Utilities/RFIDTagHandling.d \ +./Common/Utilities/Update.d \ +./Common/Utilities/Utils.d \ +./Common/Utilities/idle_task.d \ +./Common/Utilities/ustdlib.d + +OBJS += \ +./Common/Utilities/RFIDTagHandling.obj \ +./Common/Utilities/Update.obj \ +./Common/Utilities/Utils.obj \ +./Common/Utilities/idle_task.obj \ +./Common/Utilities/ustdlib.obj + +OBJS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.obj" \ +"Common\Utilities\Update.obj" \ +"Common\Utilities\Utils.obj" \ +"Common\Utilities\idle_task.obj" \ +"Common\Utilities\ustdlib.obj" + +C_DEPS__QUOTED += \ +"Common\Utilities\RFIDTagHandling.d" \ +"Common\Utilities\Update.d" \ +"Common\Utilities\Utils.d" \ +"Common\Utilities\idle_task.d" \ +"Common\Utilities\ustdlib.d" + +C_SRCS__QUOTED += \ +"../Common/Utilities/RFIDTagHandling.c" \ +"../Common/Utilities/Update.c" \ +"../Common/Utilities/Utils.c" \ +"../Common/Utilities/idle_task.c" \ +"../Common/Utilities/ustdlib.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e0a14d78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e0a14d78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f8910cec4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/dd/e0a14d78be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/FATFS/Control_File_System.c \ +../Drivers/Flash_Memory/FATFS/cc932.c \ +../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/ff.c \ +../Drivers/Flash_Memory/FATFS/mx66l51235f.c \ +../Drivers/Flash_Memory/FATFS/spi_flash.c + +C_DEPS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.d \ +./Drivers/Flash_Memory/FATFS/cc932.d \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/ff.d \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.d \ +./Drivers/Flash_Memory/FATFS/spi_flash.d + +OBJS += \ +./Drivers/Flash_Memory/FATFS/Control_File_System.obj \ +./Drivers/Flash_Memory/FATFS/cc932.obj \ +./Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/ff.obj \ +./Drivers/Flash_Memory/FATFS/mx66l51235f.obj \ +./Drivers/Flash_Memory/FATFS/spi_flash.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.obj" \ +"Drivers\Flash_Memory\FATFS\cc932.obj" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\ff.obj" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.obj" \ +"Drivers\Flash_Memory\FATFS\spi_flash.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\FATFS\Control_File_System.d" \ +"Drivers\Flash_Memory\FATFS\cc932.d" \ +"Drivers\Flash_Memory\FATFS\fatfs_port_mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\ff.d" \ +"Drivers\Flash_Memory\FATFS\mx66l51235f.d" \ +"Drivers\Flash_Memory\FATFS\spi_flash.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/FATFS/Control_File_System.c" \ +"../Drivers/Flash_Memory/FATFS/cc932.c" \ +"../Drivers/Flash_Memory/FATFS/fatfs_port_mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/ff.c" \ +"../Drivers/Flash_Memory/FATFS/mx66l51235f.c" \ +"../Drivers/Flash_Memory/FATFS/spi_flash.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/40fd5078be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/40fd5078be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..83cbddb67 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/40fd5078be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Flash_Memory/Flash_Memory.c + +C_DEPS += \ +./Drivers/Flash_Memory/Flash_Memory.d + +OBJS += \ +./Drivers/Flash_Memory/Flash_Memory.obj + +OBJS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.obj" + +C_DEPS__QUOTED += \ +"Drivers\Flash_Memory\Flash_Memory.d" + +C_SRCS__QUOTED += \ +"../Drivers/Flash_Memory/Flash_Memory.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/b063ed05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/b063ed05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..94e56c077 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/df/b063ed05be71001a1f70833eb9ed7011 @@ -0,0 +1,146 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Hardware/HardwareBlower.pb-c.c \ +../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancer.pb-c.c \ +../Communication/PMR/Hardware/HardwareDancerType.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenser.pb-c.c \ +../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotor.pb-c.c \ +../Communication/PMR/Hardware/HardwareMotorType.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControl.pb-c.c \ +../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c \ +../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinder.pb-c.c \ +../Communication/PMR/Hardware/HardwareWinderType.pb-c.c \ +../Communication/PMR/Hardware/SystemResetRequest.pb-c.c \ +../Communication/PMR/Hardware/SystemResetResponse.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c \ +../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.d \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.d \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.d \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.d \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.d \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.d \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.d \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.d \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.d \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.d \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Hardware/HardwareBlower.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBlowerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareConfiguration.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancer.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDancerType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenser.pb-c.obj \ +./Communication/PMR/Hardware/HardwareDispenserType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareMotorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControl.pb-c.obj \ +./Communication/PMR/Hardware/HardwarePidControlType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.obj \ +./Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinder.pb-c.obj \ +./Communication/PMR/Hardware/HardwareWinderType.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetRequest.pb-c.obj \ +./Communication/PMR/Hardware/SystemResetResponse.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.obj \ +./Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.obj" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.obj" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.obj" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.obj" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Hardware\HardwareBlower.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBlowerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareBreakSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareConfiguration.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancer.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDancerType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenser.pb-c.d" \ +"Communication\PMR\Hardware\HardwareDispenserType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareMotorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControl.pb-c.d" \ +"Communication\PMR\Hardware\HardwarePidControlType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensor.pb-c.d" \ +"Communication\PMR\Hardware\HardwareSpeedSensorType.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinder.pb-c.d" \ +"Communication\PMR\Hardware\HardwareWinderType.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetRequest.pb-c.d" \ +"Communication\PMR\Hardware\SystemResetResponse.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationRequest.pb-c.d" \ +"Communication\PMR\Hardware\UploadHardwareConfigurationResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Hardware/HardwareBlower.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBlowerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareBreakSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareConfiguration.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancer.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDancerType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenser.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareDispenserType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareMotorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControl.pb-c.c" \ +"../Communication/PMR/Hardware/HardwarePidControlType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensor.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareSpeedSensorType.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinder.pb-c.c" \ +"../Communication/PMR/Hardware/HardwareWinderType.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetRequest.pb-c.c" \ +"../Communication/PMR/Hardware/SystemResetResponse.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationRequest.pb-c.c" \ +"../Communication/PMR/Hardware/UploadHardwareConfigurationResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/601ed206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/601ed206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/601ed206be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90a3f906be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90a3f906be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d8f8fc711 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e/90a3f906be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.obj: ../Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/PT100" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/20aab978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/20aab978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e0/20aab978be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/f0010079be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/f0010079be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..300cf31f4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e2/f0010079be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Uart_Comm/WHS_UART/WHS_Uart.obj: ../Drivers/Uart_Comm/WHS_UART/WHS_Uart.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Uart_Comm/WHS_UART/WHS_Uart.d_raw" --obj_directory="Drivers/Uart_Comm/WHS_UART" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/8041b378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/8041b378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..6735c78b9 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e4/8041b378be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/D_EMC2302_fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.obj: ../Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan/WHS_Fan.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/D_EMC2302_Fan" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/00d3f506be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/00d3f506be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..9ec5d0604 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/00d3f506be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters/Head_Heaters.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports/Heaters" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/b05cc278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/b05cc278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..d1cc8c142 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e5/b05cc278be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/D_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.obj: ../Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/EEPROM/WHS_EEPROM.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/EEPROM" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/c036a2ffbd71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/c036a2ffbd71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0eb5a1158 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e6/c036a2ffbd71001a1f70833eb9ed7011 @@ -0,0 +1,813 @@ + +#include +#include +#include +#include +#include "include.h" +#include "driverlib/gpio.h" + +#include "Communication/Connection.h" + +#include "Drivers/USB_Communication/USBCDCD.h" +#include "StateMachines/Initialization/PowerOffSequence.h" +#include "StateMachines/Initialization/PowerIdle.h" + +#include "drivers/Flash_Memory/FATFS/ff.h" +#include "drivers/Flash_Memory/FATFS/Control_File_System.h" +#include "drivers/Flash_ram/FlashProgram.h" +#include "drivers/adc_sampling/adc.h" +#include "drivers/Heater/TemperatureSensor.h" +#include "drivers/ADC_Sampling/adc.h" +#include "drivers/Flash_ram/MCU_E2Prom.h" +#include "Drivers/SSI_Comm/Dancer/Dancer.h" + +#include "Drivers/I2C_Communication/Head_Card/PT100/Head_PT100_ADC.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/fan_click.h" +#include "Drivers/I2C_Communication/Head_Card/Fan/Head_Fan.h" +#include "drivers/Motors/Motor.h" +#include "drivers/FPGA/FPGA_SPI_Comm.h" +#include "Modules/IFS/ifs.h" +#include "Modules/IDS/ids_ex.h" +#include "Modules/Control/MillisecTask.h" +#include "modules/thread/thread_ex.h" +#include "modules/heaters/heaters_ex.h" +#include +#include +#include "Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.h" +#include "drivers/adc_sampling/adc.h" +#include +#include +#include +#include +#include +#include +#include + + +#include "Drivers/I2C_Communication/Dispenser_Card/EEPROM/Dispenser_EEPROM.h" + + + +extern float NumberOfRotationPerPassage; // how many rotations per spool passage + +//#include "graphics_adapter.h" +extern uint8_t Input_Voltage; +extern uint8_t Test_Read_Buf[4]; + +extern uint8_t Head_Fan_PWM_Command[2]; +extern uint16_t Head_Fan_Tach[2]; + +void Stub_ProgressRequest(MessageContainer* requestContainer) +{ + MessageContainer responseContainer; + + ProgressRequest* request = progress_request__unpack(NULL, requestContainer->data.len, requestContainer->data.data); + + //writeLine("Progress Request..."); + + ProgressResponse response = PROGRESS_RESPONSE__INIT; + +// uint8_t high_byte = 0; +// uint8_t low_byte = 0; + + uint8_t addr = 0; + uint8_t port = 0; + uint8_t pin = 0; + uint8_t value= 0; + + if(request->amount == 0x3E9) // set TCA9555 u3 or u4 + { + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay & 0x8000) // bit15 select the chip address + { + addr = I2CExp2_ADDRESS; + } + else + { + addr = I2CExp1_ADDRESS; + } + + if (request->delay & 0x4000) // bit 14 select port 0 or 1 + { + port = D_TCA9555_PORT_1; + } + else + { + port = D_TCA9555_PORT_0; + } + + pin = ((request->delay & 0x0F00) >> 8); // 8..11 + + if (request->delay & 0x0001) + { + value = 1; + } + else + { + value = 0; + } + response.progress = Write_WHS_9555_io_value( addr, port, pin, value); + response.has_progress = true; + } + } + else + if(request->amount == 0x3E8) //&& (request->delay <= 0x0fff))// set WHS Blower speed 0x00-0xfff + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_enable_control_loop( request->delay & 0x1000);//disable control loop: 0=disable 1= enable + Trigger_SetWHSBlowerVoltage (request->delay & 0x0FFF); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E7) // set WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + WHS_Set_SetPoint_Q_value((double) request->delay); + response.progress = 0; + response.has_progress = false; + } + } + else + if (request->amount == 0x3E6) // get WHS Blower speed by Q value + { + if (WHS_Type == WHS_TYPE_NEW) + { + response.progress = WHS_Get_Volt_Blower_Control(); + //response.progress = 0; + response.has_progress = true; + } + } + // WHS_Get_Volt_Blower_Control + else + if(request->amount == 0x3EA) + { + uint16_t tempu16 = 0; + double temp_double = 0.0; + uint8_t display_byte = 0; + uint16_t A2D_data = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + display_byte = ((request->delay & 0x3000)>>12); + switch (display_byte) + { + case 0: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x0000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(DrierAVERAGE); + break; + case 1: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x1000); // + SetLeftDisplayView (HeadAVERAGE); + SetWriteDisplayView(HeadCURRENT); + break; + case 2: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x2000); // + SetLeftDisplayView (DrierAVERAGE); + SetWriteDisplayView(DrierCURRENT); + break; + case 3: + //stubManager.Run("ProgressRequest" ,0x3EA, /*DisplayView =*/0x3000); // + SetLeftDisplayView (HeadCURRENT); + SetWriteDisplayView(DrierCURRENT); + break; + } + + A2D_data = (request->delay & 0x0FFF); + switch(A2D_data )// get A2D + { + case 0: + get_orf_1(&tempu16); + break; + case 1: + get_orf_2(&tempu16); + break; + case 2: + get_orf_3(&tempu16); + break; + case 3: + get_vlev1(&tempu16); + break; + case 4: + get_vlev2(&tempu16); + break; + case 5: + get_gas_out(&tempu16); + break; + case 6: + get_cur_fan(&tempu16); + break; + case 7: + get_cur_vlv1(&tempu16); + break; + case 8: + tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + case 10: + temp_double = get_Q(HEAD_FLOW_METER); + break; + case 12: + temp_double = get_Q(DRIER_FLOW_METER); + break; + case 20: + temp_double = get_average_Q(HEAD_FLOW_METER); //HEAD + break; + case 22: + temp_double = get_average_Q(DRIER_FLOW_METER); //Drier + break; + + case 11: + //get_orf_2(&tempu16); + break; + case 13: + //get_vlev1(&tempu16); + break; + case 14: + //get_vlev2(&tempu16); + break; + case 15: + //get_gas_out(&tempu16); + break; + case 16: + //get_cur_fan(&tempu16); + break; + case 17: + //get_cur_vlv1(&tempu16); + break; + case 18: + //tempu16 = 0; //get_cur_vlv2(&tempu16); + break; + default : + tempu16 = 0x500; //get_cur_vlv2(&tempu16); + break; + } + } + if ((request->delay)<10) + { + response.progress = (double)tempu16; + } + else + { + response.progress = temp_double; + } + response.has_progress = true; + } + else // + if(request->amount == 0x3EB) + { + uint16_t tempu16 = 0; + if (WHS_Type == WHS_TYPE_NEW) + { + if (request->delay <= 0x03FF) + { + Trigger_WHS_Set_RDAC(request->delay); // 0 -> 0x03FF + } + else + { + //Trigger_WHS_set_Rheostat_to_CLEAN_AIR(); + } + get_gas_out(&tempu16); + } + response.progress = (double)tempu16; + response.has_progress = true; + } + else + if((request->amount == 0xDE) && (request->delay < 8) && (request->delay >= 0)) // read dispenser type + LS status + { + response.progress = ((Dispenser_struct[request->delay].Type) << 8) + Dispenser_struct[request->delay].Status; + response.has_progress = true; + } + else + if(request->amount == 0xAD) //undef AUTO_HOME_DISPENSERS + { + if ((request->delay >=AutoHoming_off )&&(request->delay<=AutoHoming_JobEnd_PowerOn_off )) + IDS_Dispenser_SetAutoHoming_Config(request->delay); + response.progress = 01; + response.has_progress = true; + } + else + if(request->amount == 0xAD1) //Set_Check_Pressure_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Check_Pressure_Bypass"); + response.progress = Set_Check_Pressure_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD2) //Set_Thread_Rockers_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Thread_Rockers_Bypass"); + response.progress = Set_Thread_Rockers_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD3) //Set_Auto_Shutdown_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Shutdown_Bypass"); + response.progress = Set_Auto_Shutdown_Bypass(request->delay); + response.has_progress = true; + } + else + if(request->amount == 0xAD4) //Set_Auto_Idle_Bypass + { + LOG_ERROR((request->delay)?1:0,"Set_Auto_Idle_Bypass"); + response.progress = Set_Auto_Idle_Bypass(request->delay); + response.has_progress = true; + } + else + if((request->amount == 0x01) && ((request->delay &0x010000) == 0x010000)) //change mode powerset01 + { + response.progress = Power_Step_01_Mode(((request->delay &0x00FF00)>>8), request->delay &0x0000FF); + response.has_progress = true; + } + else + if((request->amount == 0xAB) && (request->delay == 0xAB)) //Get pressure with flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(true); + response.has_progress = true; + + } + else + if((request->amount == 0xAB) && (request->delay == 0x0)) //measured sensor voltage without flow (orifice flow meter) + { + response.progress = Calculate_Pitot_Pressure(false); + response.has_progress = true; + + } + else + if((request->amount == 0xAC) && (request->delay == 0xAC)) //VAC + { + response.progress = ReadVAC(); + response.has_progress = true; + + } + else + if(request->amount == 0x0EAD) //Head Card I/O + { + uint8_t Read_Buf[1] = {0}; + uint8_t Write_Buf[2] = {0,0}; + uint8_t Script_Slave_Add = request -> delay >> 16;//Slave address 0x40 / 0x42 / 0x44 / 0x46 + Write_Buf[0] = (request -> delay & 0x00FF00) >> 8;//read/write low/high + /* + ------------------ + | Byte | WR | RD | + ------------------ + | Low | 02 | 00 | + | High | 03 | 01 | + ------------------ + */ + Write_Buf[1] = request -> delay & 0x0000FF;//data to write + + response.has_progress = false; + + Select_Main_Head_Mux_Channel(); + + if(Write_Buf[0] == 0)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, LOW); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46) + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[0]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + + if(Write_Buf[0] == 1)//Read + { + //Head_Read_IO_Reg(Script_Slave_Add, HIGH); + + delayms(1); + if(Script_Slave_Add == 0x40) + { + Read_Buf[0] = Head_I2C_EXP1_0x40.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x42) + { + Read_Buf[0] = Head_I2C_EXP2_0x42.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x44) + { + Read_Buf[0] = Head_I2C_EXP3_0x44.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + else + if(Script_Slave_Add == 0x46)//LS + { + Read_Buf[0] = Head_I2C_EXP4_0x46.uchar[1]; + response.progress = Read_Buf[0]; + response.has_progress = true; + } + } + else + /* + if(Write_Buf[0] == 2)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + Head_I2C_EXP2_0x42.uchar[0] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + } + + //Head_Write_IO_Reg(Script_Slave_Add, LOW); + } + if(Write_Buf[0] == 3)//write + { + if(Script_Slave_Add == 0x40) + { + Head_I2C_EXP1_0x40.uchar[1] = Write_Buf[1]; + } + else + if(Script_Slave_Add == 0x42) + { + //Head_I2C_EXP2_0x42.uchar[1] = Write_Buf[1]; + Head_I2C_EXP2_0x42.bits.OUTPUT_MAG_DIR = (Write_Buf[1] & 0x01);//control only the magnet + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP3_0x44.uchar[1] = (Write_Buf[1] & 0x0C); + } + //Head_Write_IO_Reg(Script_Slave_Add, HIGH); + } + */ + if(Write_Buf[0] >=0xF0) // write + { + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + Write_Buf[0] &=0x0f; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); + + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); + } + } + } + else + if(request->amount == 0xFEAD) //functions Head Card I/O + { + Select_Main_Head_Mux_Channel(); + + if((request -> delay & 0xFFF000) == 0xCAF000)//Actuator + { + //HeadCard_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), /*(bool)((request -> delay & 0x10)>>4), */(bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + Trigger_Head_Actuators_Control((ACTUATORS)(((request -> delay) & 0x100)>>8), (bool)((request -> delay & 0x10)>>4), (bool)((request -> delay & 0x01)));//Actuators: ID, power, Direction + //response.progress = HeadCard_Actuators_Status((ACTUATORS)((request -> delay) & 0x100)>>8); + response.has_progress = true; + } + else + if((request -> delay & 0xFF0000) == 0xCA0000)//control all heaters + { + if(request -> delay & 0x01) + { + Disconnect_Mixer_and_12_Heaters_Latch(); + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, TRUE); + Connect_Mixer_and_12_Heaters_Latch(); + } + else + HeadCard_Control_Heaters((request -> delay & 0xFF00)>>8, FALSE); + } + else + if(request -> delay == 0x0)//return head type + { + response.progress = Head_Type; + response.has_progress = true; + } + + } + else + if((request->amount == 0xFAC0) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + //Head_Fan_PWM_Command[0] = (request->delay & 0xFF) ; + //Test_Head_fan_Click(); + + Trigger_Head_Fan_Control(HEAD_FAN_RIGHT, request->delay & 0xFF); + Task_sleep(2000); + + //response.progress = Fan_Click_Info.Product_ID; + response.progress = Head_Fan_Tach[0]; + response.has_progress = true; + + } + else + if((request->amount == 0xFAC1) /*&& (request->delay == 0xFAC)*/) //Head Fan control + { + Trigger_Head_Fan_Control(HEAD_FAN_LEFT, request->delay & 0xFF); + Task_sleep(2000); + response.progress = Head_Fan_Tach[1]; + response.has_progress = true; + } + else + if ((request->amount & 0x0000FFF0) == 0xFAC0) //WHS Fan control + { + uint16_t fan_tacho = 0; + + if (WHS_Type == WHS_TYPE_NEW) + { + Trigger_SetWHSFanSpeed(((request->amount & 0x0000000F)-1) , request->delay & 0x000000FF); + Task_sleep(2000); + fan_tacho = WHS_Get_fan_tach( (request->amount & 0x0000000F)-1); + } + response.progress = fan_tacho; + response.has_progress = true; + } + else + if((request->amount == 0x0A) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Initial_Offset_A[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0xB) && ((request->delay >= 0) && (request->delay < 8))) //read the midtank calibration + { + response.progress = Slope_B[request->delay]; + response.has_progress = true; + } + else + if((request->amount == 0x5C4E) && (request->delay == 0x5C4E)) //Screw Home Pos dir + { + test_Home_Pos(); + } + else + if((request->amount == 0x100) && (request->delay == 0x100)) //head card PT100 + { + Test_HeadCard_PT100(TEMP_SENSE_ANALOG_DYEINGH_TEMP1); + //response.progress = (double)Test_Read_Buf[0]; + response.progress = (double)Data_ADC_Head; + response.has_progress = true; + } + else + if((request->amount == 0x0D) && (request->delay == 0xEE)) //Dispenser EEprom + { + test_disp_eeprom(0x01,0xA0); + response.progress = OK; + response.has_progress = true; + } + else + if((request->amount == 0xCF) && (request->delay == 0xCF)) //Create File System on the Drive + { +#ifdef WATCHDOG + ROM_WatchdogResetDisable(WATCHDOG0_BASE); + uint32_t timeout = 0xFFFFFFFFU; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + FRESULT iFResult = Init_Flash_File_System(true); + if(iFResult != FR_OK) + { + LOG_ERROR (iFResult, "Error during init Flash File System"); + assert(iFResult); + } +#ifdef WATCHDOG + ROM_WatchdogResetEnable(WATCHDOG0_BASE); + timeout = 120000000*3; + ROM_WatchdogReloadSet(WATCHDOG0_BASE, timeout); +#endif + } + else + if((request->amount == 0x0C) && (request->delay == 0x0C)) //Get Gas Sensor + { + response.progress = (double)Calculate_Gas_Power_Consumption(); + response.has_progress = true; + + } + else + if((request->amount == 0xDD) && (request->delay == 0xDD)) //Read Input Voltage + { + LOG_ERROR(request->delay,"CheckAcInputVoltage"); + CheckAcInputVoltage(); + + response.progress = (double)Input_Voltage; + response.has_progress = true; + } + else + if((request->amount == 0x0CE) && (request->delay == 0x0CE)) //Get Gas Sensor + { + LOG_ERROR(request->delay,"FlashInit"); + FlashInit(); + response.progress = (double)OK; + response.has_progress = true; + + } + else + if(request->amount == 0x0CC) //Cartridge Validation Response Demo + { + LOG_ERROR(request->delay,"ResponseDemo"); + ResponseDemo(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE0) //fast refresh for pressure + { + LOG_ERROR(request->delay,"setRapidPressureRead"); + setRapidPressureRead(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Starting Dispenser PID"); + IDS_Start_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xE2) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Stoping Dispenser PID"); + IDS_Stop_Pid_Testing(request->delay); + response.progress = (double)OK; + response.has_progress = true; + } + else + if(request->amount == 0xB1) //fast refresh for pressure + { + LOG_ERROR(request->delay,"Set loading arm center"); + Read_Dryer_ENC_Position(); + Task_sleep(500); + Read_Dryer_ENC_Position(); + Task_sleep(500); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CENTER,Read_Dryer_ENC_Position(0,0)); + response.has_progress = true; + } + else + if(request->amount == 0xB2) //Set loading arm cycles + { + LOG_ERROR(request->delay,"Set loading arm cycles"); + + response.progress = (double)MCU_E2PromProgram(EEPROM_STORAGE_DRYER_CYCLES,request->delay); + response.has_progress = true; + } + + else + if(request->amount == 0xB3) //fast refresh for pressure + { + LOG_ERROR(request->amount,"keep alive test"); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB4) //IDS_Dispenser_Content_Init + { + LOG_ERROR(request->amount,"IDS_Dispenser_Content_Init"); + IDS_Dispenser_Content_Init(); + response.progress = keepalivetest; + response.has_progress = true; + + } + else + if(request->amount == 0xB5) //fast refresh for pressure + { + if (request->delay<=100) + { + LOG_ERROR(request->delay,"set stub_heating_limit"); + stub_heating_limit = request->delay; + } + response.progress = request->delay; + response.has_progress = true; + + } +#ifdef VAC_TEST + else + if(request->amount == 0xB6) //fast refresh for pressure + { + LOG_ERROR(request->delay,"set vac read test"); + VAC_Test = (double)request->delay; + response.progress = request->delay; + response.has_progress = true; + + } +#endif + + else + if(request->amount == 0xC3) //suspend I2C task + { + if (request->delay == 0) + { + LOG_ERROR(request->delay,"Suspend I2C"); + PowerOffHeatersOff(); + Task_sleep(1000); + Task_setPri (I2C_Task_Handle,-1); + } + else + { + LOG_ERROR(request->delay,"Resume"); + Task_setPri (I2C_Task_Handle,8); + } + response.progress = request->delay; + response.has_progress = true; + + } + else + if((request->amount == 0xDF) && (request->delay == 0xDF)) //Power off + { + PowerOffInit(); + } + else + if(request->amount == 0xF1) + { + LOG_ERROR(request->delay,"NumberOfRotationPerPassage"); + NumberOfRotationPerPassage = (float)(request->delay)/1000; + } + else + { + response.has_progress = true; + int i = 0; + for (i = 0; i < request->amount; i++) + { + response.progress = i; + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, false, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + + int co = 0; + for (co = 0; co < request->delay; co++) + { + __delay_cycles(1000000); + } + } + } + responseContainer = createContainer(MESSAGE_TYPE__ProgressResponse, requestContainer->token, true, &response, &progress_response__pack, &progress_response__get_packed_size); + uint8_t* container_buffer = malloc(message_container__get_packed_size(&responseContainer)); + size_t container_size = message_container__pack(&responseContainer, container_buffer); + free(responseContainer.data.data); + //writeLine("Progress Completed!"); + SendChars((char*)container_buffer, container_size); + //free(container_buffer); + + return; + +} diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/40125005be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/40125005be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5bbe9efe0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/40125005be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +build-306001487: + @$(MAKE) -Onone -f subdir_rules.mk build-306001487-inproc + +build-306001487-inproc: ../Embedded.cfg + @echo 'Building file: $<' + @echo 'Invoking: XDCtools' + "C:/TI/xdctools_3_32_00_06_core/xs" --xdcpath="C:/ti/tirtos_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08/packages;C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ndk_2_25_00_09/packages;C:/ti/tirtos_tivac_2_16_00_08/products/uia_2_00_05_50/packages;C:/ti/tirtos_tivac_2_16_00_08/products/ns_1_11_00_10/packages;C:/ti/TivaWare_C_Series-2.1.2.111;C:/TI/ccsv7/ccs_base;" xdc.tools.configuro -o configPkg -t ti.targets.arm.elf.M4F -p ti.platforms.tiva:TM4C129XNCZAD -r release -c "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS" --compileOptions "--code_state=16 --float_support=FPv4SPD16 -me" "$<" + @echo 'Finished building: $<' + @echo ' ' + +configPkg/linker.cmd: build-306001487 ../Embedded.cfg +configPkg/compiler.opt: build-306001487 +configPkg/: build-306001487 + +Main.obj: ../Main.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Main.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +delay.obj: ../delay.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="delay.d_raw" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d021ff06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d021ff06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..125bfabce --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d021ff06be71001a1f70833eb9ed7011 @@ -0,0 +1,36 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/I2C.obj: ../Drivers/I2C_Communication/I2C.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Comm.obj: ../Drivers/I2C_Communication/I2C_Comm.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Comm.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_FIFO.obj: ../Drivers/I2C_Communication/I2C_FIFO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_FIFO.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/I2C_Task.obj: ../Drivers/I2C_Communication/I2C_Task.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/I2C_Task.d_raw" --obj_directory="Drivers/I2C_Communication" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d0736378be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d0736378be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d5798422 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/d0736378be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.obj: ../Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/I2C_Dispenser_Card_Mux.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f0137a79be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f0137a79be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2e9e44918 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e8/f0137a79be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +StateMachines/Printing/JobSTM.obj: ../StateMachines/Printing/JobSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/JobSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +StateMachines/Printing/PrintingSTM.obj: ../StateMachines/Printing/PrintingSTM.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="StateMachines/Printing/PrintingSTM.d_raw" --obj_directory="StateMachines/Printing" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/404f6779be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/404f6779be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..98cd1f3ec --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/404f6779be71001a1f70833eb9ed7011 @@ -0,0 +1,56 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Modules/Thread/ThreadLoad.c \ +../Modules/Thread/Thread_BIT.c \ +../Modules/Thread/Thread_Winder.c \ +../Modules/Thread/Thread_init.c \ +../Modules/Thread/Thread_maint.c \ +../Modules/Thread/Thread_print.c + +C_DEPS += \ +./Modules/Thread/ThreadLoad.d \ +./Modules/Thread/Thread_BIT.d \ +./Modules/Thread/Thread_Winder.d \ +./Modules/Thread/Thread_init.d \ +./Modules/Thread/Thread_maint.d \ +./Modules/Thread/Thread_print.d + +OBJS += \ +./Modules/Thread/ThreadLoad.obj \ +./Modules/Thread/Thread_BIT.obj \ +./Modules/Thread/Thread_Winder.obj \ +./Modules/Thread/Thread_init.obj \ +./Modules/Thread/Thread_maint.obj \ +./Modules/Thread/Thread_print.obj + +OBJS__QUOTED += \ +"Modules\Thread\ThreadLoad.obj" \ +"Modules\Thread\Thread_BIT.obj" \ +"Modules\Thread\Thread_Winder.obj" \ +"Modules\Thread\Thread_init.obj" \ +"Modules\Thread\Thread_maint.obj" \ +"Modules\Thread\Thread_print.obj" + +C_DEPS__QUOTED += \ +"Modules\Thread\ThreadLoad.d" \ +"Modules\Thread\Thread_BIT.d" \ +"Modules\Thread\Thread_Winder.d" \ +"Modules\Thread\Thread_init.d" \ +"Modules\Thread\Thread_maint.d" \ +"Modules\Thread\Thread_print.d" + +C_SRCS__QUOTED += \ +"../Modules/Thread/ThreadLoad.c" \ +"../Modules/Thread/Thread_BIT.c" \ +"../Modules/Thread/Thread_Winder.c" \ +"../Modules/Thread/Thread_init.c" \ +"../Modules/Thread/Thread_maint.c" \ +"../Modules/Thread/Thread_print.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f04bca78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f04bca78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..1e323df70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/e9/f04bca78be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/TCA9555_Driver.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.obj: ../Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555/WHS_IO.d_raw" --obj_directory="Drivers/I2C_Communication/WHS_Card/IO_Extender_Ports_TCA9555" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/604e4707be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/604e4707be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..73e3151bc --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/eb/604e4707be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/SSI_Comm/Dancer/Dancer.obj: ../Drivers/SSI_Comm/Dancer/Dancer.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/SSI_Comm/Dancer/Dancer.d_raw" --obj_directory="Drivers/SSI_Comm/Dancer" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/d0f23978be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/d0f23978be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..63fadabb4 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ec/d0f23978be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c + +C_DEPS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.d + +OBJS += \ +./Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\FPGA_INTERRUPTS\FPGA_Interrupts.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/FPGA_INTERRUPTS/FPGA_Interrupts.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/6065a677be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/6065a677be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f340107b5 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ed/6065a677be71001a1f70833eb9ed7011 @@ -0,0 +1,170 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Printing/AbortJobRequest.pb-c.c \ +../Communication/PMR/Printing/AbortJobResponse.pb-c.c \ +../Communication/PMR/Printing/CurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/CurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/DispenserLiquidType.pb-c.c \ +../Communication/PMR/Printing/DispenserStepDivision.pb-c.c \ +../Communication/PMR/Printing/JobBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c \ +../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c \ +../Communication/PMR/Printing/JobDispenser.pb-c.c \ +../Communication/PMR/Printing/JobRequest.pb-c.c \ +../Communication/PMR/Printing/JobResponse.pb-c.c \ +../Communication/PMR/Printing/JobSegment.pb-c.c \ +../Communication/PMR/Printing/JobSpool.pb-c.c \ +../Communication/PMR/Printing/JobSpoolType.pb-c.c \ +../Communication/PMR/Printing/JobStatus.pb-c.c \ +../Communication/PMR/Printing/JobTicket.pb-c.c \ +../Communication/PMR/Printing/JobUploadStrategy.pb-c.c \ +../Communication/PMR/Printing/JobWindingMethod.pb-c.c \ +../Communication/PMR/Printing/ProcessParameters.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c \ +../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c \ +../Communication/PMR/Printing/ThreadParameters.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c \ +../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.d \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.d \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.d \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.d \ +./Communication/PMR/Printing/JobBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.d \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.d \ +./Communication/PMR/Printing/JobDispenser.pb-c.d \ +./Communication/PMR/Printing/JobRequest.pb-c.d \ +./Communication/PMR/Printing/JobResponse.pb-c.d \ +./Communication/PMR/Printing/JobSegment.pb-c.d \ +./Communication/PMR/Printing/JobSpool.pb-c.d \ +./Communication/PMR/Printing/JobSpoolType.pb-c.d \ +./Communication/PMR/Printing/JobStatus.pb-c.d \ +./Communication/PMR/Printing/JobTicket.pb-c.d \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.d \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.d \ +./Communication/PMR/Printing/ProcessParameters.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.d \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.d \ +./Communication/PMR/Printing/ThreadParameters.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.d \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Printing/AbortJobRequest.pb-c.obj \ +./Communication/PMR/Printing/AbortJobResponse.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/CurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/DispenserLiquidType.pb-c.obj \ +./Communication/PMR/Printing/DispenserStepDivision.pb-c.obj \ +./Communication/PMR/Printing/JobBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.obj \ +./Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.obj \ +./Communication/PMR/Printing/JobDispenser.pb-c.obj \ +./Communication/PMR/Printing/JobRequest.pb-c.obj \ +./Communication/PMR/Printing/JobResponse.pb-c.obj \ +./Communication/PMR/Printing/JobSegment.pb-c.obj \ +./Communication/PMR/Printing/JobSpool.pb-c.obj \ +./Communication/PMR/Printing/JobSpoolType.pb-c.obj \ +./Communication/PMR/Printing/JobStatus.pb-c.obj \ +./Communication/PMR/Printing/JobTicket.pb-c.obj \ +./Communication/PMR/Printing/JobUploadStrategy.pb-c.obj \ +./Communication/PMR/Printing/JobWindingMethod.pb-c.obj \ +./Communication/PMR/Printing/ProcessParameters.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.obj \ +./Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.obj \ +./Communication/PMR/Printing/ThreadParameters.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.obj \ +./Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.obj" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.obj" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.obj" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobDispenser.pb-c.obj" \ +"Communication\PMR\Printing\JobRequest.pb-c.obj" \ +"Communication\PMR\Printing\JobResponse.pb-c.obj" \ +"Communication\PMR\Printing\JobSegment.pb-c.obj" \ +"Communication\PMR\Printing\JobSpool.pb-c.obj" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.obj" \ +"Communication\PMR\Printing\JobStatus.pb-c.obj" \ +"Communication\PMR\Printing\JobTicket.pb-c.obj" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.obj" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.obj" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.obj" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.obj" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.obj" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Printing\AbortJobRequest.pb-c.d" \ +"Communication\PMR\Printing\AbortJobResponse.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\CurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\DispenserLiquidType.pb-c.d" \ +"Communication\PMR\Printing\DispenserStepDivision.pb-c.d" \ +"Communication\PMR\Printing\JobBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileBrushStop.pb-c.d" \ +"Communication\PMR\Printing\JobDescriptionFileSegment.pb-c.d" \ +"Communication\PMR\Printing\JobDispenser.pb-c.d" \ +"Communication\PMR\Printing\JobRequest.pb-c.d" \ +"Communication\PMR\Printing\JobResponse.pb-c.d" \ +"Communication\PMR\Printing\JobSegment.pb-c.d" \ +"Communication\PMR\Printing\JobSpool.pb-c.d" \ +"Communication\PMR\Printing\JobSpoolType.pb-c.d" \ +"Communication\PMR\Printing\JobStatus.pb-c.d" \ +"Communication\PMR\Printing\JobTicket.pb-c.d" \ +"Communication\PMR\Printing\JobUploadStrategy.pb-c.d" \ +"Communication\PMR\Printing\JobWindingMethod.pb-c.d" \ +"Communication\PMR\Printing\ProcessParameters.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobRequest.pb-c.d" \ +"Communication\PMR\Printing\ResumeCurrentJobResponse.pb-c.d" \ +"Communication\PMR\Printing\ThreadParameters.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersRequest.pb-c.d" \ +"Communication\PMR\Printing\UploadProcessParametersResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Printing/AbortJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/AbortJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/CurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/DispenserLiquidType.pb-c.c" \ +"../Communication/PMR/Printing/DispenserStepDivision.pb-c.c" \ +"../Communication/PMR/Printing/JobBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileBrushStop.pb-c.c" \ +"../Communication/PMR/Printing/JobDescriptionFileSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobDispenser.pb-c.c" \ +"../Communication/PMR/Printing/JobRequest.pb-c.c" \ +"../Communication/PMR/Printing/JobResponse.pb-c.c" \ +"../Communication/PMR/Printing/JobSegment.pb-c.c" \ +"../Communication/PMR/Printing/JobSpool.pb-c.c" \ +"../Communication/PMR/Printing/JobSpoolType.pb-c.c" \ +"../Communication/PMR/Printing/JobStatus.pb-c.c" \ +"../Communication/PMR/Printing/JobTicket.pb-c.c" \ +"../Communication/PMR/Printing/JobUploadStrategy.pb-c.c" \ +"../Communication/PMR/Printing/JobWindingMethod.pb-c.c" \ +"../Communication/PMR/Printing/ProcessParameters.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobRequest.pb-c.c" \ +"../Communication/PMR/Printing/ResumeCurrentJobResponse.pb-c.c" \ +"../Communication/PMR/Printing/ThreadParameters.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersRequest.pb-c.c" \ +"../Communication/PMR/Printing/UploadProcessParametersResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30971679be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30971679be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..a4a43d940 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ee/30971679be71001a1f70833eb9ed7011 @@ -0,0 +1,22 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/flash_ram/FlashProgram.obj: ../Drivers/flash_ram/FlashProgram.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/FlashProgram.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/flash_ram/MCU_E2Prom.obj: ../Drivers/flash_ram/MCU_E2Prom.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/flash_ram/MCU_E2Prom.d_raw" --obj_directory="Drivers/flash_ram" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/90430f06be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/90430f06be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2fb0a39e1 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/90430f06be71001a1f70833eb9ed7011 @@ -0,0 +1,50 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c \ +../Communication/PMR/Power/PowerDownState.pb-c.c \ +../Communication/PMR/Power/StartPowerDownRequest.pb-c.c \ +../Communication/PMR/Power/StartPowerDownResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.d \ +./Communication/PMR/Power/PowerDownState.pb-c.d \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.d \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.d + +OBJS += \ +./Communication/PMR/Power/AbortPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/AbortPowerDownResponse.pb-c.obj \ +./Communication/PMR/Power/PowerDownState.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownRequest.pb-c.obj \ +./Communication/PMR/Power/StartPowerDownResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.obj" \ +"Communication\PMR\Power\PowerDownState.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.obj" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Power\AbortPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\AbortPowerDownResponse.pb-c.d" \ +"Communication\PMR\Power\PowerDownState.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownRequest.pb-c.d" \ +"Communication\PMR\Power\StartPowerDownResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Power/AbortPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/AbortPowerDownResponse.pb-c.c" \ +"../Communication/PMR/Power/PowerDownState.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownRequest.pb-c.c" \ +"../Communication/PMR/Power/StartPowerDownResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/e0fce106be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/e0fce106be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..08394bc52 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ef/e0fce106be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.obj: ../Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Dispenser_Card/IO_Ports/Dispenser_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Dispenser_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/807b5678be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/807b5678be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..368691401 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f/807b5678be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Heater/ADS1220.c \ +../Drivers/Heater/Heater.c \ +../Drivers/Heater/TemperatureSensor.c + +C_DEPS += \ +./Drivers/Heater/ADS1220.d \ +./Drivers/Heater/Heater.d \ +./Drivers/Heater/TemperatureSensor.d + +OBJS += \ +./Drivers/Heater/ADS1220.obj \ +./Drivers/Heater/Heater.obj \ +./Drivers/Heater/TemperatureSensor.obj + +OBJS__QUOTED += \ +"Drivers\Heater\ADS1220.obj" \ +"Drivers\Heater\Heater.obj" \ +"Drivers\Heater\TemperatureSensor.obj" + +C_DEPS__QUOTED += \ +"Drivers\Heater\ADS1220.d" \ +"Drivers\Heater\Heater.d" \ +"Drivers\Heater\TemperatureSensor.d" + +C_SRCS__QUOTED += \ +"../Drivers/Heater/ADS1220.c" \ +"../Drivers/Heater/Heater.c" \ +"../Drivers/Heater/TemperatureSensor.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/002c4478be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/002c4478be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..10e0deef0 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f0/002c4478be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/FPGA/Full_Vme/ispvme/hardware.obj: ../Drivers/FPGA/Full_Vme/ispvme/hardware.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/hardware.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj: ../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj: ../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/FPGA/Full_Vme/ispvme/ivm_core.d_raw" --obj_directory="Drivers/FPGA/Full_Vme/ispvme" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f0e8dc05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f0e8dc05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..7024e2b68 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f3/f0e8dc05be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ActivateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionRequest.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/ValidateVersionResponse.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionFileDestination.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.obj: ../Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/FirmwareUpgrade/VersionPackageDescriptor.pb-c.d_raw" --obj_directory="Communication/PMR/FirmwareUpgrade" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/7026e607be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/7026e607be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..606e96c56 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f7/7026e607be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../StateMachines/Printing/JobSTM.c \ +../StateMachines/Printing/PrintingSTM.c + +C_DEPS += \ +./StateMachines/Printing/JobSTM.d \ +./StateMachines/Printing/PrintingSTM.d + +OBJS += \ +./StateMachines/Printing/JobSTM.obj \ +./StateMachines/Printing/PrintingSTM.obj + +OBJS__QUOTED += \ +"StateMachines\Printing\JobSTM.obj" \ +"StateMachines\Printing\PrintingSTM.obj" + +C_DEPS__QUOTED += \ +"StateMachines\Printing\JobSTM.d" \ +"StateMachines\Printing\PrintingSTM.d" + +C_SRCS__QUOTED += \ +"../StateMachines/Printing/JobSTM.c" \ +"../StateMachines/Printing/PrintingSTM.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/10927e77be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/10927e77be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..0c7afdd70 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/10927e77be71001a1f70833eb9ed7011 @@ -0,0 +1,152 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/IO/CreateRequest.pb-c.c \ +../Communication/PMR/IO/CreateResponse.pb-c.c \ +../Communication/PMR/IO/DeleteRequest.pb-c.c \ +../Communication/PMR/IO/DeleteResponse.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c \ +../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c \ +../Communication/PMR/IO/FileAttribute.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c \ +../Communication/PMR/IO/FileDownloadRequest.pb-c.c \ +../Communication/PMR/IO/FileDownloadResponse.pb-c.c \ +../Communication/PMR/IO/FileInfo.pb-c.c \ +../Communication/PMR/IO/FileUploadRequest.pb-c.c \ +../Communication/PMR/IO/FileUploadResponse.pb-c.c \ +../Communication/PMR/IO/GetFilesRequest.pb-c.c \ +../Communication/PMR/IO/GetFilesResponse.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c \ +../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c \ +../Communication/PMR/IO/KillProcessRequest.pb-c.c \ +../Communication/PMR/IO/KillProcessResponse.pb-c.c + +C_DEPS += \ +./Communication/PMR/IO/CreateRequest.pb-c.d \ +./Communication/PMR/IO/CreateResponse.pb-c.d \ +./Communication/PMR/IO/DeleteRequest.pb-c.d \ +./Communication/PMR/IO/DeleteResponse.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.d \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.d \ +./Communication/PMR/IO/FileAttribute.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.d \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.d \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.d \ +./Communication/PMR/IO/FileInfo.pb-c.d \ +./Communication/PMR/IO/FileUploadRequest.pb-c.d \ +./Communication/PMR/IO/FileUploadResponse.pb-c.d \ +./Communication/PMR/IO/GetFilesRequest.pb-c.d \ +./Communication/PMR/IO/GetFilesResponse.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.d \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.d \ +./Communication/PMR/IO/KillProcessRequest.pb-c.d \ +./Communication/PMR/IO/KillProcessResponse.pb-c.d + +OBJS += \ +./Communication/PMR/IO/CreateRequest.pb-c.obj \ +./Communication/PMR/IO/CreateResponse.pb-c.obj \ +./Communication/PMR/IO/DeleteRequest.pb-c.obj \ +./Communication/PMR/IO/DeleteResponse.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessRequest.pb-c.obj \ +./Communication/PMR/IO/ExecuteProcessResponse.pb-c.obj \ +./Communication/PMR/IO/FileAttribute.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileChunkUploadResponse.pb-c.obj \ +./Communication/PMR/IO/FileDownloadRequest.pb-c.obj \ +./Communication/PMR/IO/FileDownloadResponse.pb-c.obj \ +./Communication/PMR/IO/FileInfo.pb-c.obj \ +./Communication/PMR/IO/FileUploadRequest.pb-c.obj \ +./Communication/PMR/IO/FileUploadResponse.pb-c.obj \ +./Communication/PMR/IO/GetFilesRequest.pb-c.obj \ +./Communication/PMR/IO/GetFilesResponse.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoRequest.pb-c.obj \ +./Communication/PMR/IO/GetStorageInfoResponse.pb-c.obj \ +./Communication/PMR/IO/KillProcessRequest.pb-c.obj \ +./Communication/PMR/IO/KillProcessResponse.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.obj" \ +"Communication\PMR\IO\CreateResponse.pb-c.obj" \ +"Communication\PMR\IO\DeleteRequest.pb-c.obj" \ +"Communication\PMR\IO\DeleteResponse.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.obj" \ +"Communication\PMR\IO\FileAttribute.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.obj" \ +"Communication\PMR\IO\FileInfo.pb-c.obj" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.obj" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.obj" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.obj" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.obj" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.obj" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.obj" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\IO\CreateRequest.pb-c.d" \ +"Communication\PMR\IO\CreateResponse.pb-c.d" \ +"Communication\PMR\IO\DeleteRequest.pb-c.d" \ +"Communication\PMR\IO\DeleteResponse.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessRequest.pb-c.d" \ +"Communication\PMR\IO\ExecuteProcessResponse.pb-c.d" \ +"Communication\PMR\IO\FileAttribute.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileChunkUploadResponse.pb-c.d" \ +"Communication\PMR\IO\FileDownloadRequest.pb-c.d" \ +"Communication\PMR\IO\FileDownloadResponse.pb-c.d" \ +"Communication\PMR\IO\FileInfo.pb-c.d" \ +"Communication\PMR\IO\FileUploadRequest.pb-c.d" \ +"Communication\PMR\IO\FileUploadResponse.pb-c.d" \ +"Communication\PMR\IO\GetFilesRequest.pb-c.d" \ +"Communication\PMR\IO\GetFilesResponse.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoRequest.pb-c.d" \ +"Communication\PMR\IO\GetStorageInfoResponse.pb-c.d" \ +"Communication\PMR\IO\KillProcessRequest.pb-c.d" \ +"Communication\PMR\IO\KillProcessResponse.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/IO/CreateRequest.pb-c.c" \ +"../Communication/PMR/IO/CreateResponse.pb-c.c" \ +"../Communication/PMR/IO/DeleteRequest.pb-c.c" \ +"../Communication/PMR/IO/DeleteResponse.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/ExecuteProcessResponse.pb-c.c" \ +"../Communication/PMR/IO/FileAttribute.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileChunkUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileDownloadResponse.pb-c.c" \ +"../Communication/PMR/IO/FileInfo.pb-c.c" \ +"../Communication/PMR/IO/FileUploadRequest.pb-c.c" \ +"../Communication/PMR/IO/FileUploadResponse.pb-c.c" \ +"../Communication/PMR/IO/GetFilesRequest.pb-c.c" \ +"../Communication/PMR/IO/GetFilesResponse.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoRequest.pb-c.c" \ +"../Communication/PMR/IO/GetStorageInfoResponse.pb-c.c" \ +"../Communication/PMR/IO/KillProcessRequest.pb-c.c" \ +"../Communication/PMR/IO/KillProcessResponse.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/80f34278be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/80f34278be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..87c0ad368 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/80f34278be71001a1f70833eb9ed7011 @@ -0,0 +1,38 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/FPGA/Full_Vme/ispvme/hardware.c \ +../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c \ +../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c + +C_DEPS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.d \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.d \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.d + +OBJS += \ +./Drivers/FPGA/Full_Vme/ispvme/hardware.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.obj \ +./Drivers/FPGA/Full_Vme/ispvme/ivm_core.obj + +OBJS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.obj" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.obj" + +C_DEPS__QUOTED += \ +"Drivers\FPGA\Full_Vme\ispvme\hardware.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ispvm_ui.d" \ +"Drivers\FPGA\Full_Vme\ispvme\ivm_core.d" + +C_SRCS__QUOTED += \ +"../Drivers/FPGA/Full_Vme/ispvme/hardware.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ispvm_ui.c" \ +"../Drivers/FPGA/Full_Vme/ispvme/ivm_core.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/f060c905be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/f060c905be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..2b479abab --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/f9/f060c905be71001a1f70833eb9ed7011 @@ -0,0 +1,463 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/Diagnostics/Cartridge.pb-c.obj: ../Communication/PMR/Diagnostics/Cartridge.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Cartridge.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeAction.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeAction.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeAction.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeSlot.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeSlot.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeSlot.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeTagContent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/CartridgeValidationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DataFileFrame.pb-c.obj: ../Communication/PMR/Diagnostics/DataFileFrame.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DataFileFrame.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.obj: ../Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DiagnosticsMonitors.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.obj: ../Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DigitalInterfaceState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DispenserJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/DoubleArray.pb-c.obj: ../Communication/PMR/Diagnostics/DoubleArray.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/DoubleArray.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/Event.pb-c.obj: ../Communication/PMR/Diagnostics/Event.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/Event.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/EventType.pb-c.obj: ../Communication/PMR/Diagnostics/EventType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/EventType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterState.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/HeaterType.pb-c.obj: ../Communication/PMR/Diagnostics/HeaterType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/HeaterType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/InterfaceIOs.pb-c.obj: ../Communication/PMR/Diagnostics/InterfaceIOs.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/InterfaceIOs.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorDirection.pb-c.obj: ../Communication/PMR/Diagnostics/MotorDirection.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorDirection.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorHomingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/MotorJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ResolveEventResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetBlowerStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetComponentValueResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetDigitalOutResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetHeaterStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/SetValveStateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StartEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopCartridgesUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopDiagnosticsResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.obj: ../Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/StopEventsNotificationResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadAbortJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingRequest.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.obj: ../Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ThreadJoggingResponse.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponent.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponent.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponent.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValueComponentState.pb-c.obj: ../Communication/PMR/Diagnostics/ValueComponentState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValueComponentState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveState.pb-c.obj: ../Communication/PMR/Diagnostics/ValveState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveState.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveStateCode.pb-c.obj: ../Communication/PMR/Diagnostics/ValveStateCode.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveStateCode.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/Diagnostics/ValveType.pb-c.obj: ../Communication/PMR/Diagnostics/ValveType.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/Diagnostics/ValveType.pb-c.d_raw" --obj_directory="Communication/PMR/Diagnostics" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/10db5778be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/10db5778be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..54dde83fa --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/10db5778be71001a1f70833eb9ed7011 @@ -0,0 +1,29 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/Heater/ADS1220.obj: ../Drivers/Heater/ADS1220.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/ADS1220.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/Heater.obj: ../Drivers/Heater/Heater.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/Heater.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Drivers/Heater/TemperatureSensor.obj: ../Drivers/Heater/TemperatureSensor.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/Heater/TemperatureSensor.d_raw" --obj_directory="Drivers/Heater" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20ab5c07be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20ab5c07be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5d8665a75 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/20ab5c07be71001a1f70833eb9ed7011 @@ -0,0 +1,62 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c \ +../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c \ +../Drivers/Uart_Comm/Modbus/functions/mbutils.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.d \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.d \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/functions/mbfunccoils.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncholding.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncinput.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbfuncother.obj \ +./Drivers/Uart_Comm/Modbus/functions/mbutils.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.obj" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\functions\mbfunccoils.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdiag.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncdisc.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncholding.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncinput.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbfuncother.d" \ +"Drivers\Uart_Comm\Modbus\functions\mbutils.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/functions/mbfunccoils.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdiag.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncdisc.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncholding.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncinput.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbfuncother.c" \ +"../Drivers/Uart_Comm/Modbus/functions/mbutils.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/a05f7f05be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/a05f7f05be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..31bc6b321 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fb/a05f7f05be71001a1f70833eb9ed7011 @@ -0,0 +1,44 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Communication/PMR/Common/ErrorCode.pb-c.c \ +../Communication/PMR/Common/ErrorResponse.pb-c.c \ +../Communication/PMR/Common/MessageContainer.pb-c.c \ +../Communication/PMR/Common/MessageType.pb-c.c + +C_DEPS += \ +./Communication/PMR/Common/ErrorCode.pb-c.d \ +./Communication/PMR/Common/ErrorResponse.pb-c.d \ +./Communication/PMR/Common/MessageContainer.pb-c.d \ +./Communication/PMR/Common/MessageType.pb-c.d + +OBJS += \ +./Communication/PMR/Common/ErrorCode.pb-c.obj \ +./Communication/PMR/Common/ErrorResponse.pb-c.obj \ +./Communication/PMR/Common/MessageContainer.pb-c.obj \ +./Communication/PMR/Common/MessageType.pb-c.obj + +OBJS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.obj" \ +"Communication\PMR\Common\ErrorResponse.pb-c.obj" \ +"Communication\PMR\Common\MessageContainer.pb-c.obj" \ +"Communication\PMR\Common\MessageType.pb-c.obj" + +C_DEPS__QUOTED += \ +"Communication\PMR\Common\ErrorCode.pb-c.d" \ +"Communication\PMR\Common\ErrorResponse.pb-c.d" \ +"Communication\PMR\Common\MessageContainer.pb-c.d" \ +"Communication\PMR\Common\MessageType.pb-c.d" + +C_SRCS__QUOTED += \ +"../Communication/PMR/Common/ErrorCode.pb-c.c" \ +"../Communication/PMR/Common/ErrorResponse.pb-c.c" \ +"../Communication/PMR/Common/MessageContainer.pb-c.c" \ +"../Communication/PMR/Common/MessageType.pb-c.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70408977be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70408977be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..5880cb66d --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/70408977be71001a1f70833eb9ed7011 @@ -0,0 +1,57 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Communication/PMR/MachineStatus/IDSPackLevel.pb-c.obj: ../Communication/PMR/MachineStatus/IDSPackLevel.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/IDSPackLevel.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineState.pb-c.obj: ../Communication/PMR/MachineStatus/MachineState.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineState.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/MachineStatus.pb-c.obj: ../Communication/PMR/MachineStatus/MachineStatus.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/MachineStatus.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StartMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateRequest.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + +Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.obj: ../Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Communication/PMR/MachineStatus/StopMachineStatusUpdateResponse.pb-c.d_raw" --obj_directory="Communication/PMR/MachineStatus" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/b032d576be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/b032d576be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..8c01da5af --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fc/b032d576be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Common/Software_CRC/sw_crc.obj: ../Common/Software_CRC/sw_crc.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Common/Software_CRC/sw_crc.d_raw" --obj_directory="Common/Software_CRC" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/9035fa78be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/9035fa78be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..aadf08a8c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fd/9035fa78be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Uart.c + +C_DEPS += \ +./Drivers/Uart_Comm/Uart.d + +OBJS += \ +./Drivers/Uart_Comm/Uart.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Uart.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Uart.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Uart.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/9050f206be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/9050f206be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..b6e6616cd --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/9050f206be71001a1f70833eb9ed7011 @@ -0,0 +1,15 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Each subdirectory must supply rules for building sources it contributes +Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.obj: ../Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.c $(GEN_OPTS) | $(GEN_HDRS) + @echo 'Building file: $<' + @echo 'Invoking: ARM Compiler' + "C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/bin/armcl" -mv7M4 --code_state=16 --float_support=FPv4SPD16 -me -Ooff --opt_for_speed=0 --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common/protobuf-c" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Diagnostics" --include_path="C:/Tango/Software/Embedded_SW/Embedded" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Hardware" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Printing" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR/Debugging" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication/PMR" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Communication" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Common" --include_path="C:/Tango/Software/Embedded_SW/Embedded/Modules" --include_path="C:/TI/ccsv7/tools/compiler/ti-cgt-arm_16.9.4.LTS/include" --include_path="C:/ti/TivaWare_C_Series-2.1.2.111" --include_path="C:/ti/xdctools_3_32_00_06_core/include" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/TivaWare_C_Series-2.1.1.71b" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/bios_6_45_01_29/packages/ti/sysbios/posix" --include_path="C:/ti/tirtos_tivac_2_16_00_08/products/tidrivers_tivac_2_16_00_08" --define=ENABLE_LFN --define=TARGET_IS_TM4C129_RA0 --define=ccs="ccs" --define=ccs --define=TIVAWARE --define=PART_TM4C129XNCZAD -g --gcc --diag_suppress=190 --diag_warning=225 --diag_warning=255 --diag_wrap=off --display_error_number --embedded_constants=off --abi=eabi --preproc_with_compile --preproc_dependency="Drivers/I2C_Communication/Head_Card/IO_Ports/Head_IO.d_raw" --obj_directory="Drivers/I2C_Communication/Head_Card/IO_Ports" $(GEN_OPTS__FLAG) "$<" + @echo 'Finished building: $<' + @echo ' ' + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/a0546007be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/a0546007be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..c1d2d13c7 --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/fe/a0546007be71001a1f70833eb9ed7011 @@ -0,0 +1,26 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/Uart_Comm/Modbus/mb.c + +C_DEPS += \ +./Drivers/Uart_Comm/Modbus/mb.d + +OBJS += \ +./Drivers/Uart_Comm/Modbus/mb.obj + +OBJS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.obj" + +C_DEPS__QUOTED += \ +"Drivers\Uart_Comm\Modbus\mb.d" + +C_SRCS__QUOTED += \ +"../Drivers/Uart_Comm/Modbus/mb.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/b0e32507be71001a1f70833eb9ed7011 b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/b0e32507be71001a1f70833eb9ed7011 new file mode 100644 index 000000000..f38ee981c --- /dev/null +++ b/Software/.metadata/.plugins/org.eclipse.core.resources/.history/ff/b0e32507be71001a1f70833eb9ed7011 @@ -0,0 +1,32 @@ +################################################################################ +# Automatically-generated file. Do not edit! +################################################################################ + +SHELL = cmd.exe + +# Add inputs and outputs from these tool invocations to the build variables +C_SRCS += \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c \ +../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c + +C_DEPS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.d \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.d + +OBJS += \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.obj \ +./Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.obj + +OBJS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.obj" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.obj" + +C_DEPS__QUOTED += \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\Max_5805_Driver.d" \ +"Drivers\I2C_Communication\WHS_Card\D_Max5805_ADC_Blower\WHS_Blower.d" + +C_SRCS__QUOTED += \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/Max_5805_Driver.c" \ +"../Drivers/I2C_Communication/WHS_Card/D_Max5805_ADC_Blower/WHS_Blower.c" + + diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index index dfb2fcbe2..f67793ec3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/26/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index index 8093e6421..0b48ca9a5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/34/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index index 55089d454..b23157d64 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index index 0c2cf4641..054719260 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index index fabcea493..68e29cc71 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index index f732aa4f8..ad1e9fac6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index index 62c1063ee..697287e6d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index index 75fcb67e7..75c8f5851 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/b2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index index 07a964c37..e5e39a075 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index index 8cb730e92..b5760e525 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/ce/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index index a9bb85c2d..c30264ded 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index index b4cf491ad..6bbf83ba3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/f9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index index 9444d5abb..ca6ad350a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/f5/fe/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index index bf2392d51..9c1901d47 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index index 0b99739c7..e2280865f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/36/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index index 1525bee99..57985eda2 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index index 063be0028..1eb15bdfe 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index index b6e422f46..b0bb79af6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/98/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index index 1eae7d38d..abe7a3ffe 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index index faee56b70..29766e7e6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index index 72f1223fc..4ad23418c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/c8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index index 02be526ab..4a9c66f87 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/d6/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index index 139901f3f..8002b643c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/99/fa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index index bd11504ac..983feed4a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/c0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index index 9bcebc70d..03ebc2ff5 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/9d/cb/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index index 15ed99ce0..e75d70933 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/16/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index index 4b55de012..18fc3b303 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/37/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index index 2d2b6feb5..1bf73a6b6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index index 1eab45a17..7debcb7aa 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/4d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index index 8603dd595..7d3bb4c0b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/5f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index index 2bbc45970..75451da72 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/c4/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index index 0f803b0f1..52a8221f1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/b/cc/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index index 04bdb284e..a1d3d84a8 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/1a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index index 2e637044f..10b3ab95a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index index 3d474dd63..1df34a9e0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/65/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index index d9ccd4dae..8efd3546c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/73/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index index 3816e5025..2799080d0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/a2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index index 1573d7c38..8d526b9b0 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/b5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index index 0d3c94eff..520fdb109 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/23/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index index 3c3208a27..a07c5e110 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/6b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index index 2993cff7f..2650a2730 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/a/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index index 3f6bd6e8b..6104212b7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/b8/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index index f28f92f7b..793eaf6ad 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/de/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index index 24447699a..fd6746e6e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/e9/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index index 43f43ac6f..1299371c3 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/24/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index index dd17bcffa..3a2c297a9 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/42/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index index 091c6f447..6c514c068 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/43/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index index 9ada74d06..929bcaef7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/86/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index index b8ef151dc..0913cf810 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/70/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index index 2a0ac3ea4..4cb2492f1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/83/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index index 2ae394598..16019e666 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/8c/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index index a19d5539e..f05d01ecf 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index index 56e4f7a68..f146700d1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/29/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index index 7d59cdf24..0b0175839 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/51/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index index b7d0c8008..e6e6603d4 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/7e/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index index a8ef4e8e1..fee43529e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/87/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index index 7c1807fca..272e7b57e 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/94/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index index 89641a00d..04b6ec5b9 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/96/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index index 1caeb46fe..9a85d43e1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/bd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index index 41b2e94e1..a9f242e2c 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/53/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index index c733e9517..e135ab5ca 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index index 74c48d6e2..cbf106d37 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index index baf186c8b..e2610244a 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/66/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index index 1ce7cfea7..2ab62d803 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/8f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index index 8d81d023a..23cda58ea 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/72/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index index efd198246..b0a2951ab 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/9b/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index index f523e47b3..e1f81a6e6 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/af/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index index 6c41d392d..616fe6521 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/c1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index index ebe90f08e..718e1f2ef 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/0/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index index 954d84aa6..aafb106cb 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/aa/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index index 834677549..070b6e661 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/67/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index index 3f6b78078..7cb91c8e1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/6d/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index index 3b74a5814..e9d982b39 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/80/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index index 8fd95dccc..21752709b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/f3/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index index c04c2d9d0..c4ff9899b 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index index 40dbf0a29..44d964558 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/91/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index index 09c1368e3..5e252578f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/b1/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index index 380dbcfb6..ef9eb306f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/3f/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index index cfecac8d5..f2857056f 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/f2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index index 5dcb7bd2f..d45941102 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/c2/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index index f6fc6c1f5..087d39ac7 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/e5/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index index f82b3753b..10df6ab55 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/d5/fd/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index index 007c8eb3c..3c408e71d 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/33/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index index 2ef6a7a34..76c8911c1 100644 Binary files a/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index and b/Software/.metadata/.plugins/org.eclipse.core.resources/.projects/Embedded/.indexes/99/50/history.index differ diff --git a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi index 866a4d44c..a17cef988 100644 --- a/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi +++ b/Software/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi @@ -1,10 +1,10 @@ - - + + activeSchemeId:org.eclipse.ui.defaultAcceleratorConfiguration ModelMigrationProcessor.001 activeSchemeId:com.ti.ccstudio.ui.keyBindingScheme - + @@ -13,9 +13,9 @@ topLevel shellMaximized - - - + + + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -65,72 +65,72 @@ persp.newWizSC:org.eclipse.rtsc.builddefinitions.dspbios.ui.DSPBIOSCreateNew persp.newWizSC:org.eclipse.rtsc.xdctools.ui.cdt.wizards.configfile.RTSCConfigFileWizard persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - - + + + + - - + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - + + + + + - - + + - - - + + + - + General C/C++ Team - - - - - - - - - + + + + + + + + + - + persp.actionSet:org.eclipse.ui.cheatsheets.actionSet persp.actionSet:org.eclipse.rse.core.search.searchActionSet @@ -177,48 +177,48 @@ persp.actionSet:com.ti.dvt.rovsupport persp.actionSet:com.ti.dvt.via.plugin.ActionSet persp.showIn:org.eclipse.tm.terminal.view.ui.TerminalsView - - - + + + - - - - + + + + - - - - - + + + + + - - - - - - - - + + + + + + + + - - - - - - - - + + + + + + + + - - - + + + - + Analysis Views - + @@ -227,7980 +227,7996 @@ - - - - + + + + - + View categoryTag:Help - + View categoryTag:General - + ViewMenu menuContribution:menu - + - + View categoryTag:Help - - - + + + active - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide active - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.ui.cmdFileEditor removeOnHide - + menuContribution:popup popup:#ASMEditorContext popup:com.ti.ccstudio.ui.cmdFileEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#ASMEditorRulerContext popup:com.ti.ccstudio.ui.cmdFileEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + + menuContribution:popup + popup:#OverviewRulerContext + + + menuContribution:popup + popup:#CEditorContext + popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext + popup:#AbstractTextEditorContext + + + menuContribution:popup + popup:#CEditorRulerContext + popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext + popup:#AbstractTextEditorRulerContext + + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor com.ti.ccstudio.debug.ui.SourceNotFoundEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - - + + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.ui.DefaultTextEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide activeOnClose - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + Editor org.eclipse.cdt.ui.editor.CEditor removeOnHide - + menuContribution:popup popup:#CEditorContext popup:org.eclipse.cdt.ui.editor.CEditor.EditorContext popup:#AbstractTextEditorContext - + menuContribution:popup popup:#CEditorRulerContext popup:org.eclipse.cdt.ui.editor.CEditor.RulerContext popup:#AbstractTextEditorRulerContext - + menuContribution:popup popup:#OverviewRulerContext - + org.eclipse.e4.primaryDataStack EditorStack - - - + + + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + menuContribution:popup popup:org.eclipse.ui.navigator.ProjectExplorer#PopupMenu - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + menuContribution:popup popup:org.eclipse.debug.ui.DebugView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + menuContribution:popup popup:org.eclipse.debug.ui.VariableView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + menuContribution:popup popup:org.eclipse.debug.ui.ExpressionView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + menuContribution:popup popup:org.eclipse.debug.ui.RegisterView - + - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + menuContribution:popup popup:org.eclipse.debug.ui.BreakpointView - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.ui.MessageConsole.#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:#ContextMenu - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTGlobalBuildConsole - + menuContribution:popup popup:org.eclipse.cdt.ui.CDTBuildConsole - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:org.eclipse.ui.views.ProblemView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + menuContribution:popup popup:com.ti.ccstudio.project.ui.views.AdviceView popup:org.eclipse.ui.ide.MarkersView - + - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + ViewMenu menuContribution:menu - + - + View categoryTag:Code Composer Studio - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + menuContribution:popup popup:#TranslationUnitOutlinerContext - + - + View categoryTag:Debug - + View categoryTag:Debug - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:Grace - + View categoryTag:RTSC - + ViewMenu menuContribution:menu - + - + View categoryTag:Debug - + View categoryTag:General highlighted - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + menuContribution:popup popup:org.eclipse.search.ui.views.SearchView - + - + View categoryTag:Other - + ViewMenu menuContribution:menu - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.callHierarchy - + - + View categoryTag:General - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + menuContribution:popup popup:org.eclipse.ui.views.ProgressView - + - + View categoryTag:C/C++ - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy - + menuContribution:popup popup:org.eclipse.cdt.ui.typeHierarchy.members - + - + View categoryTag:Analysis Views - + ViewMenu menuContribution:menu - + - + View categoryTag:Team - + ViewMenu menuContribution:menu - + menuContribution:popup popup:org.eclipse.team.ui.GenericHistoryView - + - - + + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Draggable - + Draggable - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + Opaque - + Draggable - + Opaque - + Opaque - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + Opaque - + Opaque - + Opaque - - + + Opaque - + Opaque - + Opaque - + Draggable - + Draggable - + toolbarSeparator - + - + toolbarSeparator - + - + Draggable - + Opaque - + Opaque - + stretch SHOW_RESTORE_MENU - + Draggable HIDEABLE SHOW_RESTORE_MENU - - + + stretch - + Draggable - + Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - + TrimStack Draggable - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration platform:win32 - - + + schemeId:org.eclipse.ui.defaultAcceleratorConfiguration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Editor - + View categoryTag:C/C++ - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Make - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:C/C++ - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:Git - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:Connections - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:Remote Systems - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Team - + View categoryTag:Team - + View categoryTag:Terminal - + View categoryTag:Other - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Help - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Debug - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:Code Composer Studio - + View categoryTag:General - + View categoryTag:Debug - + View categoryTag:General - + View categoryTag:DVT - + View categoryTag:Analysis Views - + View categoryTag:DVT - + View categoryTag:EnergyTrace - + View categoryTag:Analysis Views - + View categoryTag:Profiling - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:Analysis Views - + View categoryTag:UIA - + View categoryTag:Grace - + View categoryTag:Other - + View categoryTag:RTSC - + View categoryTag:RTSC - + View categoryTag:RTSC - - - - - + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - - - - - - - - - + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + - - - - - - - + + + + + + + - - - - - - - + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + - - - - - + + + + + - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - - - + + + - - - + + + - - - - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c index 0eb5a1158..7a9b66a0b 100644 --- a/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c +++ b/Software/Embedded_SW/Embedded/Modules/Stubs_Handler/Progress.c @@ -475,39 +475,37 @@ void Stub_ProgressRequest(MessageContainer* requestContainer) //Head_Write_IO_Reg(Script_Slave_Add, HIGH); } */ - if(Write_Buf[0] >=0xF0) // write - { - // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 - Write_Buf[1] = Write_Buf[1] & 0x01; - - Write_Buf[0] &=0x0f; - - if(Script_Slave_Add == 0x40) - { - if(Write_Buf[1] == 0x01) - Head_I2C_EXP1_0x40.uchar[0] |= (0x01 << Write_Buf[0]); - else if(Write_Buf[1] == 0x00) - Head_I2C_EXP1_0x40.uchar[0] &= ~(0x01 << Write_Buf[0]); - } - else - if(Script_Slave_Add == 0x42) + if(Write_Buf[0] >=0xF0) // write { - if(Write_Buf[1] == 0x01) - Head_I2C_EXP2_0x42.uchar[0] |= (0x01 << Write_Buf[0]); - else if(Write_Buf[1] == 0x00) - Head_I2C_EXP2_0x42.uchar[0] &= ~(0x01 << Write_Buf[0]); + // write , Write_Buf[0] bit number 0..15 , Write_Buf[1] 0 or 1 + Write_Buf[1] = Write_Buf[1] & 0x01; + + Write_Buf[0] &=0x0f; + + if(Script_Slave_Add == 0x40) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP1_0x40.ushort |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP1_0x40.ushort &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x42) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP2_0x42.ushort |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP2_0x42.ushort &= ~(0x01 << Write_Buf[0]); + } + else + if(Script_Slave_Add == 0x46) + { + if(Write_Buf[1] == 0x01) + Head_I2C_EXP4_0x46.ushort |= (0x01 << Write_Buf[0]); + else if(Write_Buf[1] == 0x00) + Head_I2C_EXP4_0x46.ushort &= ~(0x01 << Write_Buf[0]); + } } - else - if(Script_Slave_Add == 0x46) - { - Head_I2C_EXP4_0x46.uchar[0] = (Write_Buf[1] & 0x80); - - if(Write_Buf[1] == 0x01) - Head_I2C_EXP4_0x46.uchar[0] |= (0x01 << Write_Buf[0]); - else if(Write_Buf[1] == 0x00) - Head_I2C_EXP4_0x46.uchar[0] &= ~(0x01 << Write_Buf[0]); - } - } } else if(request->amount == 0xFEAD) //functions Head Card I/O -- cgit v1.3.1